diff --git a/eng/mgmt/mgmtmetadata/azsadmin_resource-manager_storage.txt b/eng/mgmt/mgmtmetadata/azsadmin_resource-manager_storage.txt new file mode 100644 index 000000000000..01981b86d539 --- /dev/null +++ b/eng/mgmt/mgmtmetadata/azsadmin_resource-manager_storage.txt @@ -0,0 +1,14 @@ +Installing AutoRest version: latest +AutoRest installed successfully. +Commencing code generation +Generating CSharp code +Executing AutoRest command +cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/azsadmin/resource-manager/storage/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=D:\ +2019-09-17 02:51:26 UTC +Azure-rest-api-specs repository information +GitHub fork: Azure +Branch: master +Commit: 69674f9e1ee44ad38e162381782e4773ae06ab1a +AutoRest information +Requested version: latest +Bootstrapper version: autorest@2.0.4283 diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/AzSdk.RP.props b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/AzSdk.RP.props index e7635d9c665d..d24037a3a298 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/AzSdk.RP.props +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/AzSdk.RP.props @@ -1,7 +1,7 @@ - Storage.Admin_2015-12-01-preview; + Storage.Admin_2019-08-08-preview; $(PackageTags);$(CommonTags);$(AzureApiTag); \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/AcquisitionsOperations.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/AcquisitionsOperations.cs index a4da1dc7e951..5bc30ce5db66 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/AcquisitionsOperations.cs +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/AcquisitionsOperations.cs @@ -51,16 +51,10 @@ internal AcquisitionsOperations(StorageAdminClient client) public StorageAdminClient Client { get; private set; } /// - /// Returns a list of BLOB acquistions. + /// Returns a list of BLOB acquisitions. /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Filter string + /// + /// Resource location. /// /// /// Headers that will be added to request. @@ -68,7 +62,7 @@ internal AcquisitionsOperations(StorageAdminClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -83,19 +77,15 @@ internal AcquisitionsOperations(StorageAdminClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string farmId, string filter = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (farmId == null) + if (location == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "farmId"); + throw new ValidationException(ValidationRules.CannotBeNull, "location"); } if (Client.ApiVersion == null) { @@ -108,27 +98,20 @@ internal AcquisitionsOperations(StorageAdminClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("farmId", farmId); - tracingParameters.Add("filter", filter); + tracingParameters.Add("location", location); 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("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Storage.Admin/farms/{farmId}/acquisitions").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Storage.Admin/locations/{location}/acquisitions").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{farmId}", System.Uri.EscapeDataString(farmId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); List _queryParameters = new List(); if (Client.ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } - if (filter != null) - { - _queryParameters.Add(string.Format("$filter={0}", System.Uri.EscapeDataString(filter))); - } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -187,16 +170,15 @@ internal AcquisitionsOperations(StorageAdminClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 404) + if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(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); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -206,10 +188,6 @@ internal AcquisitionsOperations(StorageAdminClient client) } 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); @@ -222,7 +200,7 @@ internal AcquisitionsOperations(StorageAdminClient 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")) @@ -235,7 +213,7 @@ internal AcquisitionsOperations(StorageAdminClient 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) { diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/AcquisitionsOperationsExtensions.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/AcquisitionsOperationsExtensions.cs index e1af07de4da4..c307cbc89171 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/AcquisitionsOperationsExtensions.cs +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/AcquisitionsOperationsExtensions.cs @@ -13,8 +13,6 @@ namespace Microsoft.AzureStack.Management.Storage.Admin using Microsoft.Rest; using Microsoft.Rest.Azure; using Models; - using System.Collections; - using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; @@ -24,46 +22,34 @@ namespace Microsoft.AzureStack.Management.Storage.Admin public static partial class AcquisitionsOperationsExtensions { /// - /// Returns a list of BLOB acquistions. + /// Returns a list of BLOB acquisitions. /// /// /// The operations group for this extension method. /// - /// - /// Resource group name. + /// + /// Resource location. /// - /// - /// Farm Id. - /// - /// - /// Filter string - /// - public static IList List(this IAcquisitionsOperations operations, string resourceGroupName, string farmId, string filter = default(string)) + public static AcquisitionList List(this IAcquisitionsOperations operations, string location) { - return operations.ListAsync(resourceGroupName, farmId, filter).GetAwaiter().GetResult(); + return operations.ListAsync(location).GetAwaiter().GetResult(); } /// - /// Returns a list of BLOB acquistions. + /// Returns a list of BLOB acquisitions. /// /// /// The operations group for this extension method. /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Filter string + /// + /// Resource location. /// /// /// The cancellation token. /// - public static async Task> ListAsync(this IAcquisitionsOperations operations, string resourceGroupName, string farmId, string filter = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListAsync(this IAcquisitionsOperations operations, string location, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, farmId, filter, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListWithHttpMessagesAsync(location, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/BlobServicesOperations.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/BlobServicesOperations.cs deleted file mode 100644 index cf8f2ce5384e..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/BlobServicesOperations.cs +++ /dev/null @@ -1,997 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin -{ - 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; - - /// - /// BlobServicesOperations operations. - /// - internal partial class BlobServicesOperations : IServiceOperations, IBlobServicesOperations - { - /// - /// Initializes a new instance of the BlobServicesOperations class. - /// - /// - /// Reference to the service client. - /// - /// - /// Thrown when a required parameter is null - /// - internal BlobServicesOperations(StorageAdminClient client) - { - if (client == null) - { - throw new System.ArgumentNullException("client"); - } - Client = client; - } - - /// - /// Gets a reference to the StorageAdminClient - /// - public StorageAdminClient Client { get; private set; } - - /// - /// Returns the BLOB service. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// 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 farmId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (farmId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "farmId"); - } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - string serviceType = "default"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("farmId", farmId); - tracingParameters.Add("serviceType", serviceType); - 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.Storage.Admin/farms/{farmId}/blobservices/{serviceType}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{farmId}", System.Uri.EscapeDataString(farmId)); - _url = _url.Replace("{serviceType}", System.Uri.EscapeDataString(serviceType)); - 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 && (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; - 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; - } - - /// - /// Returns the list of metric definitions for BLOB service. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// 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>> ListMetricDefinitionsWithHttpMessagesAsync(string resourceGroupName, string farmId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (farmId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "farmId"); - } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - string serviceType = "default"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("farmId", farmId); - tracingParameters.Add("serviceType", serviceType); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListMetricDefinitions", 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.Storage.Admin/farms/{farmId}/blobservices/{serviceType}/metricdefinitions").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{farmId}", System.Uri.EscapeDataString(farmId)); - _url = _url.Replace("{serviceType}", System.Uri.EscapeDataString(serviceType)); - 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 && (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; - 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; - } - - /// - /// Returns a list of metrics for BLOB service. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// 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>> ListMetricsWithHttpMessagesAsync(string resourceGroupName, string farmId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (farmId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "farmId"); - } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - string serviceType = "default"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("farmId", farmId); - tracingParameters.Add("serviceType", serviceType); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListMetrics", 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.Storage.Admin/farms/{farmId}/blobservices/{serviceType}/metrics").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{farmId}", System.Uri.EscapeDataString(farmId)); - _url = _url.Replace("{serviceType}", System.Uri.EscapeDataString(serviceType)); - 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 && (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; - 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; - } - - /// - /// Returns the list of metric definitions for BLOB service. - /// - /// - /// 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>> ListMetricDefinitionsNextWithHttpMessagesAsync(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, "ListMetricDefinitionsNext", 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 && (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; - 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; - } - - /// - /// Returns a list of metrics for BLOB service. - /// - /// - /// 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>> ListMetricsNextWithHttpMessagesAsync(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, "ListMetricsNext", 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 && (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; - 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/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/BlobServicesOperationsExtensions.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/BlobServicesOperationsExtensions.cs deleted file mode 100644 index 46c32d0a4203..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/BlobServicesOperationsExtensions.cs +++ /dev/null @@ -1,213 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Threading; - using System.Threading.Tasks; - - /// - /// Extension methods for BlobServicesOperations. - /// - public static partial class BlobServicesOperationsExtensions - { - /// - /// Returns the BLOB service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - public static BlobService Get(this IBlobServicesOperations operations, string resourceGroupName, string farmId) - { - return operations.GetAsync(resourceGroupName, farmId).GetAwaiter().GetResult(); - } - - /// - /// Returns the BLOB service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// The cancellation token. - /// - public static async Task GetAsync(this IBlobServicesOperations operations, string resourceGroupName, string farmId, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, farmId, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Returns the list of metric definitions for BLOB service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - public static IPage ListMetricDefinitions(this IBlobServicesOperations operations, string resourceGroupName, string farmId) - { - return operations.ListMetricDefinitionsAsync(resourceGroupName, farmId).GetAwaiter().GetResult(); - } - - /// - /// Returns the list of metric definitions for BLOB service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// The cancellation token. - /// - public static async Task> ListMetricDefinitionsAsync(this IBlobServicesOperations operations, string resourceGroupName, string farmId, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListMetricDefinitionsWithHttpMessagesAsync(resourceGroupName, farmId, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Returns a list of metrics for BLOB service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - public static IPage ListMetrics(this IBlobServicesOperations operations, string resourceGroupName, string farmId) - { - return operations.ListMetricsAsync(resourceGroupName, farmId).GetAwaiter().GetResult(); - } - - /// - /// Returns a list of metrics for BLOB service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// The cancellation token. - /// - public static async Task> ListMetricsAsync(this IBlobServicesOperations operations, string resourceGroupName, string farmId, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListMetricsWithHttpMessagesAsync(resourceGroupName, farmId, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Returns the list of metric definitions for BLOB service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - public static IPage ListMetricDefinitionsNext(this IBlobServicesOperations operations, string nextPageLink) - { - return operations.ListMetricDefinitionsNextAsync(nextPageLink).GetAwaiter().GetResult(); - } - - /// - /// Returns the list of metric definitions for BLOB service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The cancellation token. - /// - public static async Task> ListMetricDefinitionsNextAsync(this IBlobServicesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListMetricDefinitionsNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Returns a list of metrics for BLOB service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - public static IPage ListMetricsNext(this IBlobServicesOperations operations, string nextPageLink) - { - return operations.ListMetricsNextAsync(nextPageLink).GetAwaiter().GetResult(); - } - - /// - /// Returns a list of metrics for BLOB service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The cancellation token. - /// - public static async Task> ListMetricsNextAsync(this IBlobServicesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListMetricsNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/ContainersOperations.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/ContainersOperations.cs deleted file mode 100644 index dba6d93a79aa..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/ContainersOperations.cs +++ /dev/null @@ -1,1218 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin -{ - 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; - - /// - /// ContainersOperations operations. - /// - internal partial class ContainersOperations : IServiceOperations, IContainersOperations - { - /// - /// Initializes a new instance of the ContainersOperations class. - /// - /// - /// Reference to the service client. - /// - /// - /// Thrown when a required parameter is null - /// - internal ContainersOperations(StorageAdminClient client) - { - if (client == null) - { - throw new System.ArgumentNullException("client"); - } - Client = client; - } - - /// - /// Gets a reference to the StorageAdminClient - /// - public StorageAdminClient Client { get; private set; } - - /// - /// Cancel a container migration job. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Operation Id. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> CancelMigrationWithHttpMessagesAsync(string resourceGroupName, string farmId, string operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginCancelMigrationWithHttpMessagesAsync(resourceGroupName, farmId, operationId, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Returns the status of a container migration job. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Operation Id. - /// - /// - /// 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> MigrationStatusWithHttpMessagesAsync(string resourceGroupName, string farmId, string operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (farmId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "farmId"); - } - 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("resourceGroupName", resourceGroupName); - tracingParameters.Add("farmId", farmId); - tracingParameters.Add("operationId", operationId); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "MigrationStatus", 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.Storage.Admin/farms/{farmId}/shares/operationresults/{operationId}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{farmId}", System.Uri.EscapeDataString(farmId)); - _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; - } - - /// - /// Returns the list of containers which can be migrated in the specified - /// share. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Share name. - /// - /// - /// The container migration intent. - /// - /// - /// The maximum number of containers. - /// - /// - /// The starting index the resource provider uses. - /// - /// - /// 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(string resourceGroupName, string farmId, string shareName, string intent, int? maxCount = default(int?), int? startIndex = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (farmId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "farmId"); - } - if (shareName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "shareName"); - } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (intent == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "intent"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("farmId", farmId); - tracingParameters.Add("shareName", shareName); - tracingParameters.Add("intent", intent); - tracingParameters.Add("maxCount", maxCount); - tracingParameters.Add("startIndex", startIndex); - 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("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Storage.Admin/farms/{farmId}/shares/{shareName}/containers").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{farmId}", System.Uri.EscapeDataString(farmId)); - _url = _url.Replace("{shareName}", System.Uri.EscapeDataString(shareName)); - List _queryParameters = new List(); - if (Client.ApiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); - } - if (intent != null) - { - _queryParameters.Add(string.Format("Intent={0}", System.Uri.EscapeDataString(intent))); - } - if (maxCount != null) - { - _queryParameters.Add(string.Format("MaxCount={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(maxCount, Client.SerializationSettings).Trim('"')))); - } - if (startIndex != null) - { - _queryParameters.Add(string.Format("StartIndex={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(startIndex, Client.SerializationSettings).Trim('"')))); - } - 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 && (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; - 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; - } - - /// - /// Returns a list of destination shares that the system considers as best - /// candidates for migration. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Share name. - /// - /// - /// 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>> ListDestinationSharesWithHttpMessagesAsync(string resourceGroupName, string farmId, string shareName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (farmId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "farmId"); - } - if (shareName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "shareName"); - } - 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("resourceGroupName", resourceGroupName); - tracingParameters.Add("farmId", farmId); - tracingParameters.Add("shareName", shareName); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListDestinationShares", 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.Storage.Admin/farms/{farmId}/shares/{shareName}/destinationshares").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{farmId}", System.Uri.EscapeDataString(farmId)); - _url = _url.Replace("{shareName}", System.Uri.EscapeDataString(shareName)); - 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 && (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; - 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; - } - - /// - /// Starts a container migration job to migrate containers to the specified - /// destination share. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Share name. - /// - /// - /// The parameters of container migration job. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> MigrateWithHttpMessagesAsync(string resourceGroupName, string farmId, string shareName, MigrationParameters migrationParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginMigrateWithHttpMessagesAsync(resourceGroupName, farmId, shareName, migrationParameters, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Cancel a container migration job. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Operation Id. - /// - /// - /// 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> BeginCancelMigrationWithHttpMessagesAsync(string resourceGroupName, string farmId, string operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (farmId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "farmId"); - } - 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("resourceGroupName", resourceGroupName); - tracingParameters.Add("farmId", farmId); - tracingParameters.Add("operationId", operationId); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginCancelMigration", 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.Storage.Admin/farms/{farmId}/shares/operationresults/{operationId}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{farmId}", System.Uri.EscapeDataString(farmId)); - _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("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 && (int)_statusCode != 202) - { - 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 == 202) - { - _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; - } - - /// - /// Starts a container migration job to migrate containers to the specified - /// destination share. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Share name. - /// - /// - /// The parameters of container migration job. - /// - /// - /// 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> BeginMigrateWithHttpMessagesAsync(string resourceGroupName, string farmId, string shareName, MigrationParameters migrationParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (farmId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "farmId"); - } - if (shareName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "shareName"); - } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (migrationParameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "migrationParameters"); - } - if (migrationParameters != null) - { - migrationParameters.Validate(); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("farmId", farmId); - tracingParameters.Add("shareName", shareName); - tracingParameters.Add("migrationParameters", migrationParameters); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginMigrate", 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.Storage.Admin/farms/{farmId}/shares/{shareName}/migrate").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{farmId}", System.Uri.EscapeDataString(farmId)); - _url = _url.Replace("{shareName}", System.Uri.EscapeDataString(shareName)); - 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(migrationParameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(migrationParameters, 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 != 202) - { - 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 == 202) - { - _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/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/ContainersOperationsExtensions.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/ContainersOperationsExtensions.cs deleted file mode 100644 index 00bb4e9b1daf..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/ContainersOperationsExtensions.cs +++ /dev/null @@ -1,387 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Collections; - using System.Collections.Generic; - using System.Threading; - using System.Threading.Tasks; - - /// - /// Extension methods for ContainersOperations. - /// - public static partial class ContainersOperationsExtensions - { - /// - /// Cancel a container migration job. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Operation Id. - /// - public static MigrationResult CancelMigration(this IContainersOperations operations, string resourceGroupName, string farmId, string operationId) - { - return operations.CancelMigrationAsync(resourceGroupName, farmId, operationId).GetAwaiter().GetResult(); - } - - /// - /// Cancel a container migration job. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Operation Id. - /// - /// - /// The cancellation token. - /// - public static async Task CancelMigrationAsync(this IContainersOperations operations, string resourceGroupName, string farmId, string operationId, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.CancelMigrationWithHttpMessagesAsync(resourceGroupName, farmId, operationId, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Returns the status of a container migration job. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Operation Id. - /// - public static MigrationResult MigrationStatus(this IContainersOperations operations, string resourceGroupName, string farmId, string operationId) - { - return operations.MigrationStatusAsync(resourceGroupName, farmId, operationId).GetAwaiter().GetResult(); - } - - /// - /// Returns the status of a container migration job. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Operation Id. - /// - /// - /// The cancellation token. - /// - public static async Task MigrationStatusAsync(this IContainersOperations operations, string resourceGroupName, string farmId, string operationId, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.MigrationStatusWithHttpMessagesAsync(resourceGroupName, farmId, operationId, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Returns the list of containers which can be migrated in the specified - /// share. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Share name. - /// - /// - /// The container migration intent. - /// - /// - /// The maximum number of containers. - /// - /// - /// The starting index the resource provider uses. - /// - public static IList List(this IContainersOperations operations, string resourceGroupName, string farmId, string shareName, string intent, int? maxCount = default(int?), int? startIndex = default(int?)) - { - return operations.ListAsync(resourceGroupName, farmId, shareName, intent, maxCount, startIndex).GetAwaiter().GetResult(); - } - - /// - /// Returns the list of containers which can be migrated in the specified - /// share. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Share name. - /// - /// - /// The container migration intent. - /// - /// - /// The maximum number of containers. - /// - /// - /// The starting index the resource provider uses. - /// - /// - /// The cancellation token. - /// - public static async Task> ListAsync(this IContainersOperations operations, string resourceGroupName, string farmId, string shareName, string intent, int? maxCount = default(int?), int? startIndex = default(int?), CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, farmId, shareName, intent, maxCount, startIndex, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Returns a list of destination shares that the system considers as best - /// candidates for migration. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Share name. - /// - public static IList ListDestinationShares(this IContainersOperations operations, string resourceGroupName, string farmId, string shareName) - { - return operations.ListDestinationSharesAsync(resourceGroupName, farmId, shareName).GetAwaiter().GetResult(); - } - - /// - /// Returns a list of destination shares that the system considers as best - /// candidates for migration. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Share name. - /// - /// - /// The cancellation token. - /// - public static async Task> ListDestinationSharesAsync(this IContainersOperations operations, string resourceGroupName, string farmId, string shareName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListDestinationSharesWithHttpMessagesAsync(resourceGroupName, farmId, shareName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Starts a container migration job to migrate containers to the specified - /// destination share. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Share name. - /// - /// - /// The parameters of container migration job. - /// - public static MigrationResult Migrate(this IContainersOperations operations, string resourceGroupName, string farmId, string shareName, MigrationParameters migrationParameters) - { - return operations.MigrateAsync(resourceGroupName, farmId, shareName, migrationParameters).GetAwaiter().GetResult(); - } - - /// - /// Starts a container migration job to migrate containers to the specified - /// destination share. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Share name. - /// - /// - /// The parameters of container migration job. - /// - /// - /// The cancellation token. - /// - public static async Task MigrateAsync(this IContainersOperations operations, string resourceGroupName, string farmId, string shareName, MigrationParameters migrationParameters, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.MigrateWithHttpMessagesAsync(resourceGroupName, farmId, shareName, migrationParameters, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Cancel a container migration job. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Operation Id. - /// - public static MigrationResult BeginCancelMigration(this IContainersOperations operations, string resourceGroupName, string farmId, string operationId) - { - return operations.BeginCancelMigrationAsync(resourceGroupName, farmId, operationId).GetAwaiter().GetResult(); - } - - /// - /// Cancel a container migration job. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Operation Id. - /// - /// - /// The cancellation token. - /// - public static async Task BeginCancelMigrationAsync(this IContainersOperations operations, string resourceGroupName, string farmId, string operationId, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.BeginCancelMigrationWithHttpMessagesAsync(resourceGroupName, farmId, operationId, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Starts a container migration job to migrate containers to the specified - /// destination share. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Share name. - /// - /// - /// The parameters of container migration job. - /// - public static MigrationResult BeginMigrate(this IContainersOperations operations, string resourceGroupName, string farmId, string shareName, MigrationParameters migrationParameters) - { - return operations.BeginMigrateAsync(resourceGroupName, farmId, shareName, migrationParameters).GetAwaiter().GetResult(); - } - - /// - /// Starts a container migration job to migrate containers to the specified - /// destination share. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Share name. - /// - /// - /// The parameters of container migration job. - /// - /// - /// The cancellation token. - /// - public static async Task BeginMigrateAsync(this IContainersOperations operations, string resourceGroupName, string farmId, string shareName, MigrationParameters migrationParameters, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.BeginMigrateWithHttpMessagesAsync(resourceGroupName, farmId, shareName, migrationParameters, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/FarmsOperations.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/FarmsOperations.cs deleted file mode 100644 index 42fcf3035dda..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/FarmsOperations.cs +++ /dev/null @@ -1,2165 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin -{ - 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; - - /// - /// FarmsOperations operations. - /// - internal partial class FarmsOperations : IServiceOperations, IFarmsOperations - { - /// - /// Initializes a new instance of the FarmsOperations class. - /// - /// - /// Reference to the service client. - /// - /// - /// Thrown when a required parameter is null - /// - internal FarmsOperations(StorageAdminClient client) - { - if (client == null) - { - throw new System.ArgumentNullException("client"); - } - Client = client; - } - - /// - /// Gets a reference to the StorageAdminClient - /// - public StorageAdminClient Client { get; private set; } - - /// - /// Create a new storage farm. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Setting access string. - /// - /// - /// 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> CreateWithHttpMessagesAsync(string resourceGroupName, string farmId, string settingAccessStringProperty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (farmId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "farmId"); - } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - FarmCreationProperties farmObject = new FarmCreationProperties(); - if (settingAccessStringProperty != null) - { - farmObject.SettingAccessStringProperty = settingAccessStringProperty; - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("farmId", farmId); - tracingParameters.Add("farmObject", farmObject); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Create", 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.Storage.Admin/farms/{farmId}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{farmId}", System.Uri.EscapeDataString(farmId)); - 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("PUT"); - _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(farmObject != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(farmObject, 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) - { - 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; - } - - /// - /// Returns the Storage properties and settings for a specified storage farm. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// 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 farmId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (farmId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "farmId"); - } - 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("resourceGroupName", resourceGroupName); - tracingParameters.Add("farmId", farmId); - 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.Storage.Admin/farms/{farmId}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{farmId}", System.Uri.EscapeDataString(farmId)); - 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 && (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; - 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; - } - - /// - /// Update an existing storage farm. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// 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> UpdateWithHttpMessagesAsync(string resourceGroupName, string farmId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (farmId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "farmId"); - } - Farm farmObject = new Farm(); - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("farmId", farmId); - tracingParameters.Add("farmObject", farmObject); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Update", 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.Storage.Admin/farms/{farmId}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{farmId}", System.Uri.EscapeDataString(farmId)); - 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("PATCH"); - _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(farmObject != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(farmObject, 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) - { - 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; - } - - /// - /// Returns a list of metric definitions for a storage farm. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// 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>> ListMetricDefinitionsWithHttpMessagesAsync(string resourceGroupName, string farmId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (farmId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "farmId"); - } - 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("resourceGroupName", resourceGroupName); - tracingParameters.Add("farmId", farmId); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListMetricDefinitions", 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.Storage.Admin/farms/{farmId}/metricdefinitions").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{farmId}", System.Uri.EscapeDataString(farmId)); - 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 && (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; - 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; - } - - /// - /// Returns a list of storage farm metrics. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// 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>> ListMetricsWithHttpMessagesAsync(string resourceGroupName, string farmId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (farmId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "farmId"); - } - 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("resourceGroupName", resourceGroupName); - tracingParameters.Add("farmId", farmId); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListMetrics", 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.Storage.Admin/farms/{farmId}/metrics").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{farmId}", System.Uri.EscapeDataString(farmId)); - 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 && (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; - 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; - } - - /// - /// Returns a list of all storage farms. - /// - /// - /// Resource group name. - /// - /// - /// 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(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - 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("resourceGroupName", resourceGroupName); - 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("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Storage.Admin/farms").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - 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; - } - - /// - /// Start garbage collection on deleted storage objects. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task StartGarbageCollectionWithHttpMessagesAsync(string resourceGroupName, string farmId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginStartGarbageCollectionWithHttpMessagesAsync(resourceGroupName, farmId, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Returns the state of the garbage collection job. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Operation Id. - /// - /// - /// 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> GetGarbageCollectionStateWithHttpMessagesAsync(string resourceGroupName, string farmId, string operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (farmId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "farmId"); - } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (operationId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "operationId"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("farmId", farmId); - tracingParameters.Add("operationId", operationId); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetGarbageCollectionState", 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.Storage.Admin/farms/{farmId}/operationresults/{operationId}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{farmId}", System.Uri.EscapeDataString(farmId)); - _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 && (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; - 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; - } - - /// - /// Start garbage collection on deleted storage objects. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// 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 BeginStartGarbageCollectionWithHttpMessagesAsync(string resourceGroupName, string farmId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (farmId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "farmId"); - } - 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("resourceGroupName", resourceGroupName); - tracingParameters.Add("farmId", farmId); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginStartGarbageCollection", 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.Storage.Admin/farms/{farmId}/ondemandgc").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{farmId}", System.Uri.EscapeDataString(farmId)); - 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 && (int)_statusCode != 202) - { - 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; - } - - /// - /// Returns a list of metric definitions for a storage farm. - /// - /// - /// 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>> ListMetricDefinitionsNextWithHttpMessagesAsync(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, "ListMetricDefinitionsNext", 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 && (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; - 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; - } - - /// - /// Returns a list of storage farm metrics. - /// - /// - /// 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>> ListMetricsNextWithHttpMessagesAsync(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, "ListMetricsNext", 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 && (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; - 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; - } - - /// - /// Returns a list of all storage farms. - /// - /// - /// 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/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/FarmsOperationsExtensions.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/FarmsOperationsExtensions.cs deleted file mode 100644 index 394735f55802..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/FarmsOperationsExtensions.cs +++ /dev/null @@ -1,487 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Threading; - using System.Threading.Tasks; - - /// - /// Extension methods for FarmsOperations. - /// - public static partial class FarmsOperationsExtensions - { - /// - /// Create a new storage farm. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Setting access string. - /// - public static Farm Create(this IFarmsOperations operations, string resourceGroupName, string farmId, string settingAccessStringProperty = default(string)) - { - return operations.CreateAsync(resourceGroupName, farmId, settingAccessStringProperty).GetAwaiter().GetResult(); - } - - /// - /// Create a new storage farm. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Setting access string. - /// - /// - /// The cancellation token. - /// - public static async Task CreateAsync(this IFarmsOperations operations, string resourceGroupName, string farmId, string settingAccessStringProperty = default(string), CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.CreateWithHttpMessagesAsync(resourceGroupName, farmId, settingAccessStringProperty, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Returns the Storage properties and settings for a specified storage farm. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - public static Farm Get(this IFarmsOperations operations, string resourceGroupName, string farmId) - { - return operations.GetAsync(resourceGroupName, farmId).GetAwaiter().GetResult(); - } - - /// - /// Returns the Storage properties and settings for a specified storage farm. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// The cancellation token. - /// - public static async Task GetAsync(this IFarmsOperations operations, string resourceGroupName, string farmId, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, farmId, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Update an existing storage farm. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - public static Farm Update(this IFarmsOperations operations, string resourceGroupName, string farmId) - { - return operations.UpdateAsync(resourceGroupName, farmId).GetAwaiter().GetResult(); - } - - /// - /// Update an existing storage farm. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// The cancellation token. - /// - public static async Task UpdateAsync(this IFarmsOperations operations, string resourceGroupName, string farmId, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, farmId, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Returns a list of metric definitions for a storage farm. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - public static IPage ListMetricDefinitions(this IFarmsOperations operations, string resourceGroupName, string farmId) - { - return operations.ListMetricDefinitionsAsync(resourceGroupName, farmId).GetAwaiter().GetResult(); - } - - /// - /// Returns a list of metric definitions for a storage farm. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// The cancellation token. - /// - public static async Task> ListMetricDefinitionsAsync(this IFarmsOperations operations, string resourceGroupName, string farmId, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListMetricDefinitionsWithHttpMessagesAsync(resourceGroupName, farmId, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Returns a list of storage farm metrics. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - public static IPage ListMetrics(this IFarmsOperations operations, string resourceGroupName, string farmId) - { - return operations.ListMetricsAsync(resourceGroupName, farmId).GetAwaiter().GetResult(); - } - - /// - /// Returns a list of storage farm metrics. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// The cancellation token. - /// - public static async Task> ListMetricsAsync(this IFarmsOperations operations, string resourceGroupName, string farmId, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListMetricsWithHttpMessagesAsync(resourceGroupName, farmId, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Returns a list of all storage farms. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - public static IPage List(this IFarmsOperations operations, string resourceGroupName) - { - return operations.ListAsync(resourceGroupName).GetAwaiter().GetResult(); - } - - /// - /// Returns a list of all storage farms. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// The cancellation token. - /// - public static async Task> ListAsync(this IFarmsOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Start garbage collection on deleted storage objects. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - public static void StartGarbageCollection(this IFarmsOperations operations, string resourceGroupName, string farmId) - { - operations.StartGarbageCollectionAsync(resourceGroupName, farmId).GetAwaiter().GetResult(); - } - - /// - /// Start garbage collection on deleted storage objects. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// The cancellation token. - /// - public static async Task StartGarbageCollectionAsync(this IFarmsOperations operations, string resourceGroupName, string farmId, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.StartGarbageCollectionWithHttpMessagesAsync(resourceGroupName, farmId, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Returns the state of the garbage collection job. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Operation Id. - /// - public static string GetGarbageCollectionState(this IFarmsOperations operations, string resourceGroupName, string farmId, string operationId) - { - return operations.GetGarbageCollectionStateAsync(resourceGroupName, farmId, operationId).GetAwaiter().GetResult(); - } - - /// - /// Returns the state of the garbage collection job. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Operation Id. - /// - /// - /// The cancellation token. - /// - public static async Task GetGarbageCollectionStateAsync(this IFarmsOperations operations, string resourceGroupName, string farmId, string operationId, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetGarbageCollectionStateWithHttpMessagesAsync(resourceGroupName, farmId, operationId, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Start garbage collection on deleted storage objects. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - public static void BeginStartGarbageCollection(this IFarmsOperations operations, string resourceGroupName, string farmId) - { - operations.BeginStartGarbageCollectionAsync(resourceGroupName, farmId).GetAwaiter().GetResult(); - } - - /// - /// Start garbage collection on deleted storage objects. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// The cancellation token. - /// - public static async Task BeginStartGarbageCollectionAsync(this IFarmsOperations operations, string resourceGroupName, string farmId, CancellationToken cancellationToken = default(CancellationToken)) - { - (await operations.BeginStartGarbageCollectionWithHttpMessagesAsync(resourceGroupName, farmId, null, cancellationToken).ConfigureAwait(false)).Dispose(); - } - - /// - /// Returns a list of metric definitions for a storage farm. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - public static IPage ListMetricDefinitionsNext(this IFarmsOperations operations, string nextPageLink) - { - return operations.ListMetricDefinitionsNextAsync(nextPageLink).GetAwaiter().GetResult(); - } - - /// - /// Returns a list of metric definitions for a storage farm. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The cancellation token. - /// - public static async Task> ListMetricDefinitionsNextAsync(this IFarmsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListMetricDefinitionsNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Returns a list of storage farm metrics. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - public static IPage ListMetricsNext(this IFarmsOperations operations, string nextPageLink) - { - return operations.ListMetricsNextAsync(nextPageLink).GetAwaiter().GetResult(); - } - - /// - /// Returns a list of storage farm metrics. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The cancellation token. - /// - public static async Task> ListMetricsNextAsync(this IFarmsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListMetricsNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Returns a list of all storage farms. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - public static IPage ListNext(this IFarmsOperations operations, string nextPageLink) - { - return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); - } - - /// - /// Returns a list of all storage farms. - /// - /// - /// 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 IFarmsOperations 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/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IAcquisitionsOperations.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IAcquisitionsOperations.cs index 77d707d64570..e89647fbb2d4 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IAcquisitionsOperations.cs +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IAcquisitionsOperations.cs @@ -24,16 +24,10 @@ namespace Microsoft.AzureStack.Management.Storage.Admin public partial interface IAcquisitionsOperations { /// - /// Returns a list of BLOB acquistions. + /// Returns a list of BLOB acquisitions. /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Filter string + /// + /// Resource location. /// /// /// The headers that will be added to request. @@ -41,7 +35,7 @@ public partial interface IAcquisitionsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -50,6 +44,6 @@ public partial interface IAcquisitionsOperations /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(string resourceGroupName, string farmId, string filter = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IBlobServicesOperations.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IBlobServicesOperations.cs deleted file mode 100644 index 01346053bbbb..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IBlobServicesOperations.cs +++ /dev/null @@ -1,146 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Collections; - using System.Collections.Generic; - using System.Threading; - using System.Threading.Tasks; - - /// - /// BlobServicesOperations operations. - /// - public partial interface IBlobServicesOperations - { - /// - /// Returns the BLOB service. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// 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> GetWithHttpMessagesAsync(string resourceGroupName, string farmId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Returns the list of metric definitions for BLOB service. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// 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>> ListMetricDefinitionsWithHttpMessagesAsync(string resourceGroupName, string farmId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Returns a list of metrics for BLOB service. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// 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>> ListMetricsWithHttpMessagesAsync(string resourceGroupName, string farmId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Returns the list of metric definitions for BLOB service. - /// - /// - /// 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>> ListMetricDefinitionsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Returns a list of metrics for BLOB service. - /// - /// - /// 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>> ListMetricsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IContainersOperations.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IContainersOperations.cs deleted file mode 100644 index 11e7f74fb994..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IContainersOperations.cs +++ /dev/null @@ -1,242 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Collections; - using System.Collections.Generic; - using System.Threading; - using System.Threading.Tasks; - - /// - /// ContainersOperations operations. - /// - public partial interface IContainersOperations - { - /// - /// Cancel a container migration job. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Operation Id. - /// - /// - /// 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> CancelMigrationWithHttpMessagesAsync(string resourceGroupName, string farmId, string operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Returns the status of a container migration job. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Operation Id. - /// - /// - /// 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> MigrationStatusWithHttpMessagesAsync(string resourceGroupName, string farmId, string operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Returns the list of containers which can be migrated in the - /// specified share. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Share name. - /// - /// - /// The container migration intent. - /// - /// - /// The maximum number of containers. - /// - /// - /// The starting index the resource provider uses. - /// - /// - /// 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(string resourceGroupName, string farmId, string shareName, string intent, int? maxCount = default(int?), int? startIndex = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Returns a list of destination shares that the system considers as - /// best candidates for migration. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Share name. - /// - /// - /// 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>> ListDestinationSharesWithHttpMessagesAsync(string resourceGroupName, string farmId, string shareName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Starts a container migration job to migrate containers to the - /// specified destination share. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Share name. - /// - /// - /// The parameters of container migration job. - /// - /// - /// 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> MigrateWithHttpMessagesAsync(string resourceGroupName, string farmId, string shareName, MigrationParameters migrationParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Cancel a container migration job. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Operation Id. - /// - /// - /// 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> BeginCancelMigrationWithHttpMessagesAsync(string resourceGroupName, string farmId, string operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Starts a container migration job to migrate containers to the - /// specified destination share. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Share name. - /// - /// - /// The parameters of container migration job. - /// - /// - /// 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> BeginMigrateWithHttpMessagesAsync(string resourceGroupName, string farmId, string shareName, MigrationParameters migrationParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IFarmsOperations.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IFarmsOperations.cs deleted file mode 100644 index 81a90f30f026..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IFarmsOperations.cs +++ /dev/null @@ -1,316 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Collections; - using System.Collections.Generic; - using System.Threading; - using System.Threading.Tasks; - - /// - /// FarmsOperations operations. - /// - public partial interface IFarmsOperations - { - /// - /// Create a new storage farm. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Setting access string. - /// - /// - /// 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> CreateWithHttpMessagesAsync(string resourceGroupName, string farmId, string settingAccessStringProperty = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Returns the Storage properties and settings for a specified storage - /// farm. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// 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> GetWithHttpMessagesAsync(string resourceGroupName, string farmId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Update an existing storage farm. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// 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> UpdateWithHttpMessagesAsync(string resourceGroupName, string farmId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Returns a list of metric definitions for a storage farm. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// 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>> ListMetricDefinitionsWithHttpMessagesAsync(string resourceGroupName, string farmId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Returns a list of storage farm metrics. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// 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>> ListMetricsWithHttpMessagesAsync(string resourceGroupName, string farmId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Returns a list of all storage farms. - /// - /// - /// Resource group name. - /// - /// - /// 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(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Start garbage collection on deleted storage objects. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// 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 StartGarbageCollectionWithHttpMessagesAsync(string resourceGroupName, string farmId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Returns the state of the garbage collection job. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Operation Id. - /// - /// - /// 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> GetGarbageCollectionStateWithHttpMessagesAsync(string resourceGroupName, string farmId, string operationId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Start garbage collection on deleted storage objects. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// 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 BeginStartGarbageCollectionWithHttpMessagesAsync(string resourceGroupName, string farmId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Returns a list of metric definitions for a storage farm. - /// - /// - /// 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>> ListMetricDefinitionsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Returns a list of storage farm metrics. - /// - /// - /// 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>> ListMetricsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Returns a list of all storage farms. - /// - /// - /// 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/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IOperations.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IOperations.cs index d898c3ca84c5..afefea597be4 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IOperations.cs +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IOperations.cs @@ -32,7 +32,7 @@ public partial interface IOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -41,28 +41,6 @@ public partial interface IOperations /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Get the list of support rest 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)); + Task> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IQueueServicesOperations.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IQueueServicesOperations.cs deleted file mode 100644 index 74cf5671868f..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IQueueServicesOperations.cs +++ /dev/null @@ -1,146 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Collections; - using System.Collections.Generic; - using System.Threading; - using System.Threading.Tasks; - - /// - /// QueueServicesOperations operations. - /// - public partial interface IQueueServicesOperations - { - /// - /// Returns the queue service. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// 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> GetWithHttpMessagesAsync(string resourceGroupName, string farmId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Returns a list of metric definitions for queue service. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// 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>> ListMetricDefinitionsWithHttpMessagesAsync(string resourceGroupName, string farmId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Returns a list of metrics for the queue service. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// 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>> ListMetricsWithHttpMessagesAsync(string resourceGroupName, string farmId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Returns a list of metric definitions for queue service. - /// - /// - /// 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>> ListMetricDefinitionsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Returns a list of metrics for the queue service. - /// - /// - /// 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>> ListMetricsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/ISharesOperations.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/ISharesOperations.cs deleted file mode 100644 index dde0192a3bb2..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/ISharesOperations.cs +++ /dev/null @@ -1,180 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Collections; - using System.Collections.Generic; - using System.Threading; - using System.Threading.Tasks; - - /// - /// SharesOperations operations. - /// - public partial interface ISharesOperations - { - /// - /// Returns a list of storage shares. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// 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(string resourceGroupName, string farmId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Returns a list of metrics for a storage share. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Share name. - /// - /// - /// 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>> ListMetricsWithHttpMessagesAsync(string resourceGroupName, string farmId, string shareName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Returns a list of metric definitions for a storage share. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Share name. - /// - /// - /// 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>> ListMetricDefinitionsWithHttpMessagesAsync(string resourceGroupName, string farmId, string shareName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Returns a storage share. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Share name. - /// - /// - /// 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> GetWithHttpMessagesAsync(string resourceGroupName, string farmId, string shareName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Returns a list of metrics for a storage share. - /// - /// - /// 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>> ListMetricsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Returns a list of metric definitions for a storage share. - /// - /// - /// 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>> ListMetricDefinitionsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IStorageAccountsOperations.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IStorageAccountsOperations.cs index ab3b4c8065a2..0188218e5a59 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IStorageAccountsOperations.cs +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IStorageAccountsOperations.cs @@ -26,11 +26,11 @@ public partial interface IStorageAccountsOperations /// /// Returns a list of storage accounts. /// - /// - /// Resource group name. + /// + /// Resource location. /// - /// - /// Farm Id. + /// + /// Filter string /// /// /// Switch for whether summary or detailed information is returned. @@ -41,7 +41,7 @@ public partial interface IStorageAccountsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -50,26 +50,53 @@ public partial interface IStorageAccountsOperations /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(string resourceGroupName, string farmId, bool summary, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListWithHttpMessagesAsync(string location, string filter = default(string), bool? summary = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Returns the requested storage account. /// - /// - /// Resource group name. + /// + /// Resource location. /// - /// - /// Farm Id. + /// + /// Internal storage account ID, which is not visible to tenant. + /// + /// + /// 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> GetWithHttpMessagesAsync(string location, string accountId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Undelete a deleted storage account with new account name if the a + /// new name is provided. + /// + /// + /// Resource location. /// /// /// Internal storage account ID, which is not visible to tenant. /// + /// + /// New storage account name when doing undelete storage account + /// operation. + /// /// /// The headers that will be added to request. /// /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -78,32 +105,75 @@ public partial interface IStorageAccountsOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string farmId, string accountId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> UndeleteWithHttpMessagesAsync(string location, string accountId, string newAccountName = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Undelete a deleted storage account. + /// Start reclaim storage capacity on deleted storage objects. /// - /// - /// Resource group name. + /// + /// Resource location. /// - /// - /// Farm Id. + /// + /// 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 ReclaimStorageCapacityWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Undelete a deleted storage account with new account name if the a + /// new name is provided. + /// + /// + /// Resource location. /// /// /// Internal storage account ID, which is not visible to tenant. /// + /// + /// New storage account name when doing undelete storage account + /// 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> BeginUndeleteWithHttpMessagesAsync(string location, string accountId, string newAccountName = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Start reclaim storage capacity on deleted storage objects. + /// + /// + /// Resource location. + /// /// /// 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 UndeleteWithHttpMessagesAsync(string resourceGroupName, string farmId, string accountId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginReclaimStorageCapacityWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Returns a list of storage accounts. /// @@ -116,7 +186,7 @@ public partial interface IStorageAccountsOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IStorageAdminClient.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IStorageAdminClient.cs index d10b5f4b1395..610bdae85df7 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IStorageAdminClient.cs +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IStorageAdminClient.cs @@ -16,7 +16,7 @@ namespace Microsoft.AzureStack.Management.Storage.Admin using Newtonsoft.Json; /// - /// Storag Admin Client + /// Storage Admin Client /// public partial interface IStorageAdminClient : System.IDisposable { @@ -41,62 +41,38 @@ public partial interface IStorageAdminClient : System.IDisposable ServiceClientCredentials Credentials { get; } /// - /// Subscription Id. + /// REST Api Version. /// - string SubscriptionId { get; set; } + string ApiVersion { get; } /// - /// REST Api Version. + /// Subscription Id. /// - string ApiVersion { get; } + string SubscriptionId { get; set; } /// - /// Gets or sets the preferred language for the response. + /// The preferred language for the response. /// string AcceptLanguage { get; set; } /// - /// Gets or sets the retry timeout in seconds for Long Running - /// Operations. Default value is 30. + /// The retry timeout in seconds for Long Running Operations. Default + /// value is 30. /// int? LongRunningOperationRetryTimeout { get; set; } /// - /// When set to true a unique x-ms-client-request-id value is generated - /// and included in each request. Default is true. + /// Whether a unique x-ms-client-request-id should be generated. When + /// set to true a unique x-ms-client-request-id value is generated and + /// included in each request. Default is true. /// bool? GenerateClientRequestId { get; set; } /// - /// Gets the IOperations. - /// - IOperations Operations { get; } - - /// - /// Gets the IAcquisitionsOperations. - /// - IAcquisitionsOperations Acquisitions { get; } - - /// - /// Gets the IBlobServicesOperations. - /// - IBlobServicesOperations BlobServices { get; } - - /// - /// Gets the IContainersOperations. - /// - IContainersOperations Containers { get; } - - /// - /// Gets the IFarmsOperations. - /// - IFarmsOperations Farms { get; } - - /// - /// Gets the IQueueServicesOperations. + /// Gets the IStorageAccountsOperations. /// - IQueueServicesOperations QueueServices { get; } + IStorageAccountsOperations StorageAccounts { get; } /// /// Gets the IStorageQuotasOperations. @@ -104,19 +80,19 @@ public partial interface IStorageAdminClient : System.IDisposable IStorageQuotasOperations StorageQuotas { get; } /// - /// Gets the ISharesOperations. + /// Gets the IStorageSettingsOperations. /// - ISharesOperations Shares { get; } + IStorageSettingsOperations StorageSettings { get; } /// - /// Gets the IStorageAccountsOperations. + /// Gets the IOperations. /// - IStorageAccountsOperations StorageAccounts { get; } + IOperations Operations { get; } /// - /// Gets the ITableServicesOperations. + /// Gets the IAcquisitionsOperations. /// - ITableServicesOperations TableServices { get; } + IAcquisitionsOperations Acquisitions { get; } } } diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IStorageQuotasOperations.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IStorageQuotasOperations.cs index d2366d8576b2..84369ff24a3e 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IStorageQuotasOperations.cs +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IStorageQuotasOperations.cs @@ -41,7 +41,7 @@ public partial interface IStorageQuotasOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -66,7 +66,7 @@ public partial interface IStorageQuotasOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -88,7 +88,7 @@ public partial interface IStorageQuotasOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -110,7 +110,7 @@ public partial interface IStorageQuotasOperations /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -119,28 +119,6 @@ public partial interface IStorageQuotasOperations /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Returns a list of storage quotas at the given location. - /// - /// - /// 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)); + Task> ListWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IStorageSettingsOperations.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IStorageSettingsOperations.cs new file mode 100644 index 000000000000..fcff5961a631 --- /dev/null +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/IStorageSettingsOperations.cs @@ -0,0 +1,75 @@ +// +// 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.AzureStack.Management.Storage.Admin +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// StorageSettingsOperations operations. + /// + public partial interface IStorageSettingsOperations + { + /// + /// Update storage resource provider settings. + /// + /// + /// Resource location. + /// + /// + /// The number of days a deleted storage account is kept before being + /// permanently deleted. + /// + /// + /// 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> UpdateWithHttpMessagesAsync(string location, int? retentionPeriodForDeletedStorageAccountsInDays = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Returns the storage resource provider settings. + /// + /// + /// Resource location. + /// + /// + /// 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> GetWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/ITableServicesOperations.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/ITableServicesOperations.cs deleted file mode 100644 index 533672682e6d..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/ITableServicesOperations.cs +++ /dev/null @@ -1,146 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Collections; - using System.Collections.Generic; - using System.Threading; - using System.Threading.Tasks; - - /// - /// TableServicesOperations operations. - /// - public partial interface ITableServicesOperations - { - /// - /// Returns the table servie. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// 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> GetWithHttpMessagesAsync(string resourceGroupName, string farmId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Returns a list of metric definitions for table service. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// 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>> ListMetricDefinitionsWithHttpMessagesAsync(string resourceGroupName, string farmId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Returns a list of metrics for table service. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// 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>> ListMetricsWithHttpMessagesAsync(string resourceGroupName, string farmId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Returns a list of metric definitions for table service. - /// - /// - /// 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>> ListMetricDefinitionsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Returns a list of metrics for table service. - /// - /// - /// 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>> ListMetricsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/Acquisition.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/Acquisition.cs index d03001cefa7c..943513c1df44 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/Acquisition.cs +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/Acquisition.cs @@ -11,17 +11,14 @@ namespace Microsoft.AzureStack.Management.Storage.Admin.Models { using Microsoft.Rest; - using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; using System.Linq; /// /// The acquisition of the page BLOB. /// - [Rest.Serialization.JsonTransformation] - public partial class Acquisition : Resource + public partial class Acquisition : IResource { /// /// Initializes a new instance of the Acquisition class. @@ -34,37 +31,35 @@ public Acquisition() /// /// Initializes a new instance of the Acquisition class. /// - /// Resource ID. - /// Resource Name. - /// Resource type. - /// Resource location. - /// Resource tags. - /// The file path of the page BLOB file on - /// storage cluster. - /// The maximum size of the page - /// BLOB. - /// The status of the page BLOB acquisition. - /// Possible values include: 'InProgress', 'Success', 'Failed' /// ID of the subscription associated with /// the page BLOB. /// The storage account that holds the /// page BLOB. - /// The container associated with the the page + /// The container associated with the page /// BLOB. /// The name of the page BLOB. /// The ID of page BLOB /// acquisition. - public Acquisition(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), string filePath = default(string), long? maximumblobsize = default(long?), string status = default(string), string susbcriptionid = default(string), string storageaccount = default(string), string container = default(string), string blob = default(string), string acquisitionid = default(string)) - : base(id, name, type, location, tags) + /// The file path of the page BLOB file on + /// storage cluster. + /// The file path unc of the page BLOB file + /// on storage cluster. + /// The maximum size of the page + /// BLOB. + /// The status of the page BLOB acquisition. + /// Possible values include: 'Unknown', 'NotAcquired', 'Pending', + /// 'Success', 'Failed' + public Acquisition(string susbcriptionid = default(string), string storageaccount = default(string), string container = default(string), string blob = default(string), string acquisitionid = default(string), string filePath = default(string), string filePathUnc = default(string), long? maximumblobsize = default(long?), string status = default(string)) { - FilePath = filePath; - Maximumblobsize = maximumblobsize; - Status = status; Susbcriptionid = susbcriptionid; Storageaccount = storageaccount; Container = container; Blob = blob; Acquisitionid = acquisitionid; + FilePath = filePath; + FilePathUnc = filePathUnc; + Maximumblobsize = maximumblobsize; + Status = status; CustomInit(); } @@ -73,54 +68,60 @@ public Acquisition() /// partial void CustomInit(); - /// - /// Gets the file path of the page BLOB file on storage cluster. - /// - [JsonProperty(PropertyName = "properties.filePath")] - public string FilePath { get; private set; } - - /// - /// Gets the maximum size of the page BLOB. - /// - [JsonProperty(PropertyName = "properties.maximumblobsize")] - public long? Maximumblobsize { get; private set; } - - /// - /// Gets the status of the page BLOB acquisition. Possible values - /// include: 'InProgress', 'Success', 'Failed' - /// - [JsonProperty(PropertyName = "properties.status")] - public string Status { get; private set; } - /// /// Gets ID of the subscription associated with the page BLOB. /// - [JsonProperty(PropertyName = "properties.susbcriptionid")] + [JsonProperty(PropertyName = "susbcriptionid")] public string Susbcriptionid { get; private set; } /// /// Gets the storage account that holds the page BLOB. /// - [JsonProperty(PropertyName = "properties.storageaccount")] + [JsonProperty(PropertyName = "storageaccount")] public string Storageaccount { get; private set; } /// - /// Gets the container associated with the the page BLOB. + /// Gets the container associated with the page BLOB. /// - [JsonProperty(PropertyName = "properties.container")] + [JsonProperty(PropertyName = "container")] public string Container { get; private set; } /// /// Gets the name of the page BLOB. /// - [JsonProperty(PropertyName = "properties.blob")] + [JsonProperty(PropertyName = "blob")] public string Blob { get; private set; } /// /// Gets the ID of page BLOB acquisition. /// - [JsonProperty(PropertyName = "properties.acquisitionid")] + [JsonProperty(PropertyName = "acquisitionid")] public string Acquisitionid { get; private set; } + /// + /// Gets the file path of the page BLOB file on storage cluster. + /// + [JsonProperty(PropertyName = "filePath")] + public string FilePath { get; private set; } + + /// + /// Gets the file path unc of the page BLOB file on storage cluster. + /// + [JsonProperty(PropertyName = "filePathUnc")] + public string FilePathUnc { get; private set; } + + /// + /// Gets the maximum size of the page BLOB. + /// + [JsonProperty(PropertyName = "maximumblobsize")] + public long? Maximumblobsize { get; private set; } + + /// + /// Gets the status of the page BLOB acquisition. Possible values + /// include: 'Unknown', 'NotAcquired', 'Pending', 'Success', 'Failed' + /// + [JsonProperty(PropertyName = "status")] + public string Status { get; private set; } + } } diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/LocalizableString.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/AcquisitionList.cs similarity index 54% rename from sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/LocalizableString.cs rename to sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/AcquisitionList.cs index a15f8e4462fd..39ded32655fe 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/LocalizableString.cs +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/AcquisitionList.cs @@ -11,30 +11,30 @@ namespace Microsoft.AzureStack.Management.Storage.Admin.Models { using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// - /// Localizable string. + /// The list of page BLOB acquisitions. /// - public partial class LocalizableString + public partial class AcquisitionList { /// - /// Initializes a new instance of the LocalizableString class. + /// Initializes a new instance of the AcquisitionList class. /// - public LocalizableString() + public AcquisitionList() { CustomInit(); } /// - /// Initializes a new instance of the LocalizableString class. + /// Initializes a new instance of the AcquisitionList class. /// - /// Value of the string. - /// Localized value of the string. - public LocalizableString(string value = default(string), string localizedValue = default(string)) + /// List of acquisitions. + public AcquisitionList(IList value = default(IList)) { Value = value; - LocalizedValue = localizedValue; CustomInit(); } @@ -44,16 +44,10 @@ public LocalizableString() partial void CustomInit(); /// - /// Gets or sets value of the string. + /// Gets list of acquisitions. /// [JsonProperty(PropertyName = "value")] - public string Value { get; set; } - - /// - /// Gets or sets localized value of the string. - /// - [JsonProperty(PropertyName = "localizedValue")] - public string LocalizedValue { get; set; } + public IList Value { get; private set; } } } diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/AcquisitionStatus.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/AcquisitionStatus.cs index e91769a4326a..331c1961550e 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/AcquisitionStatus.cs +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/AcquisitionStatus.cs @@ -16,7 +16,9 @@ namespace Microsoft.AzureStack.Management.Storage.Admin.Models /// public static class AcquisitionStatus { - public const string InProgress = "InProgress"; + public const string Unknown = "Unknown"; + public const string NotAcquired = "NotAcquired"; + public const string Pending = "Pending"; public const string Success = "Success"; public const string Failed = "Failed"; } diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/AggregateType.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/AggregateType.cs deleted file mode 100644 index 10d643f81f6a..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/AggregateType.cs +++ /dev/null @@ -1,26 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin.Models -{ - - /// - /// Defines values for AggregateType. - /// - public static class AggregateType - { - public const string None = "None"; - public const string Average = "Average"; - public const string Total = "Total"; - public const string Minimum = "Minimum"; - public const string Maximum = "Maximum"; - public const string Last = "Last"; - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/BlobService.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/BlobService.cs deleted file mode 100644 index 56a711d4e525..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/BlobService.cs +++ /dev/null @@ -1,264 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin.Models -{ - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// The BLOB service. - /// - [Rest.Serialization.JsonTransformation] - public partial class BlobService : Resource - { - /// - /// Initializes a new instance of the BlobService class. - /// - public BlobService() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the BlobService class. - /// - /// Resource ID. - /// Resource Name. - /// Resource type. - /// Resource location. - /// Resource tags. - /// Storage service version. - /// Health status of storage service. - /// Possible values include: 'Unknown', 'Healthy', 'Warning', - /// 'Critical' - /// Front end callback - /// threads count. - /// Switch of - /// front end CPU based keep-alive throttling. - /// Threshold - /// (% percentage) of front end CPU based keep-alive - /// throttling. - /// Threshold - /// (% percentage) of requests to throttle in front end CPU based - /// keep-alive throttling. - /// Interval - /// (in second) of CPU monitor for front end CPU based keep-alive - /// throttling. - /// Switch of front end - /// memory throttling. - /// Maxium - /// interval (in millisecond) between memory samples of front - /// end. - /// Front end - /// memory throttle threshold settings. - /// Front end minimum number - /// of threads in thread pool. - /// Threshold - /// of front end thread pool based keep-alive IO completion. - /// Threshold - /// of front end thread pool based keep-alive worker thread. - /// Monitor - /// interval (in seconds) of front end thread pool based keep-alive - /// monitor. - /// Percentage - /// (%) of front end thread pool based keep-alive. - /// Switch of whether - /// front end uses SLA time in availability. - /// The HTTPs port of the storage - /// service front end. - /// The HTTP port of the storage - /// service front end. - /// The interval, in seconds, - /// of container garbage collection. - /// The interval ,in seconds, of - /// shallow garbage collection. - /// The - /// minimal container occupancy percent for stream mapping. - public BlobService(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), string version = default(string), string healthStatus = default(string), int? frontEndCallbackThreadsCount = default(int?), bool? frontEndCpuBasedKeepAliveThrottlingEnabled = default(bool?), double? frontEndCpuBasedKeepAliveThrottlingPercentCpuThreshold = default(double?), double? frontEndCpuBasedKeepAliveThrottlingPercentRequestsToThrottle = default(double?), int? frontEndCpuBasedKeepAliveThrottlingCpuMonitorIntervalInSeconds = default(int?), bool? frontEndMemoryThrottlingEnabled = default(bool?), int? frontEndMaxMillisecondsBetweenMemorySamples = default(int?), string frontEndMemoryThrottleThresholdSettings = default(string), int? frontEndMinThreadPoolThreads = default(int?), int? frontEndThreadPoolBasedKeepAliveIOCompletionThreshold = default(int?), int? frontEndThreadPoolBasedKeepAliveWorkerThreadThreshold = default(int?), int? frontEndThreadPoolBasedKeepAliveMonitorIntervalInSeconds = default(int?), double? frontEndThreadPoolBasedKeepAlivePercentage = default(double?), bool? frontEndUseSlaTimeInAvailability = default(bool?), int? frontEndHttpsListenPort = default(int?), int? frontEndHttpListenPort = default(int?), int? blobSvcContainerGcInterval = default(int?), int? blobSvcShallowGcInterval = default(int?), int? blobSvcStreamMapMinContainerOccupancyPercent = default(int?)) - : base(id, name, type, location, tags) - { - Version = version; - HealthStatus = healthStatus; - FrontEndCallbackThreadsCount = frontEndCallbackThreadsCount; - FrontEndCpuBasedKeepAliveThrottlingEnabled = frontEndCpuBasedKeepAliveThrottlingEnabled; - FrontEndCpuBasedKeepAliveThrottlingPercentCpuThreshold = frontEndCpuBasedKeepAliveThrottlingPercentCpuThreshold; - FrontEndCpuBasedKeepAliveThrottlingPercentRequestsToThrottle = frontEndCpuBasedKeepAliveThrottlingPercentRequestsToThrottle; - FrontEndCpuBasedKeepAliveThrottlingCpuMonitorIntervalInSeconds = frontEndCpuBasedKeepAliveThrottlingCpuMonitorIntervalInSeconds; - FrontEndMemoryThrottlingEnabled = frontEndMemoryThrottlingEnabled; - FrontEndMaxMillisecondsBetweenMemorySamples = frontEndMaxMillisecondsBetweenMemorySamples; - FrontEndMemoryThrottleThresholdSettings = frontEndMemoryThrottleThresholdSettings; - FrontEndMinThreadPoolThreads = frontEndMinThreadPoolThreads; - FrontEndThreadPoolBasedKeepAliveIOCompletionThreshold = frontEndThreadPoolBasedKeepAliveIOCompletionThreshold; - FrontEndThreadPoolBasedKeepAliveWorkerThreadThreshold = frontEndThreadPoolBasedKeepAliveWorkerThreadThreshold; - FrontEndThreadPoolBasedKeepAliveMonitorIntervalInSeconds = frontEndThreadPoolBasedKeepAliveMonitorIntervalInSeconds; - FrontEndThreadPoolBasedKeepAlivePercentage = frontEndThreadPoolBasedKeepAlivePercentage; - FrontEndUseSlaTimeInAvailability = frontEndUseSlaTimeInAvailability; - FrontEndHttpsListenPort = frontEndHttpsListenPort; - FrontEndHttpListenPort = frontEndHttpListenPort; - BlobSvcContainerGcInterval = blobSvcContainerGcInterval; - BlobSvcShallowGcInterval = blobSvcShallowGcInterval; - BlobSvcStreamMapMinContainerOccupancyPercent = blobSvcStreamMapMinContainerOccupancyPercent; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets storage service version. - /// - [JsonProperty(PropertyName = "properties.version")] - public string Version { get; set; } - - /// - /// Gets or sets health status of storage service. Possible values - /// include: 'Unknown', 'Healthy', 'Warning', 'Critical' - /// - [JsonProperty(PropertyName = "properties.healthStatus")] - public string HealthStatus { get; set; } - - /// - /// Gets or sets front end callback threads count. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndCallbackThreadsCount")] - public int? FrontEndCallbackThreadsCount { get; set; } - - /// - /// Gets or sets switch of front end CPU based keep-alive throttling. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndCpuBasedKeepAliveThrottlingEnabled")] - public bool? FrontEndCpuBasedKeepAliveThrottlingEnabled { get; set; } - - /// - /// Gets or sets threshold (% percentage) of front end CPU based - /// keep-alive throttling. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndCpuBasedKeepAliveThrottlingPercentCpuThreshold")] - public double? FrontEndCpuBasedKeepAliveThrottlingPercentCpuThreshold { get; set; } - - /// - /// Gets or sets threshold (% percentage) of requests to throttle in - /// front end CPU based keep-alive throttling. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndCpuBasedKeepAliveThrottlingPercentRequestsToThrottle")] - public double? FrontEndCpuBasedKeepAliveThrottlingPercentRequestsToThrottle { get; set; } - - /// - /// Gets or sets interval (in second) of CPU monitor for front end CPU - /// based keep-alive throttling. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndCpuBasedKeepAliveThrottlingCpuMonitorIntervalInSeconds")] - public int? FrontEndCpuBasedKeepAliveThrottlingCpuMonitorIntervalInSeconds { get; set; } - - /// - /// Gets or sets switch of front end memory throttling. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndMemoryThrottlingEnabled")] - public bool? FrontEndMemoryThrottlingEnabled { get; set; } - - /// - /// Gets or sets maxium interval (in millisecond) between memory - /// samples of front end. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndMaxMillisecondsBetweenMemorySamples")] - public int? FrontEndMaxMillisecondsBetweenMemorySamples { get; set; } - - /// - /// Gets or sets front end memory throttle threshold settings. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndMemoryThrottleThresholdSettings")] - public string FrontEndMemoryThrottleThresholdSettings { get; set; } - - /// - /// Gets or sets front end minimum number of threads in thread pool. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndMinThreadPoolThreads")] - public int? FrontEndMinThreadPoolThreads { get; set; } - - /// - /// Gets or sets threshold of front end thread pool based keep-alive IO - /// completion. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndThreadPoolBasedKeepAliveIOCompletionThreshold")] - public int? FrontEndThreadPoolBasedKeepAliveIOCompletionThreshold { get; set; } - - /// - /// Gets or sets threshold of front end thread pool based keep-alive - /// worker thread. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndThreadPoolBasedKeepAliveWorkerThreadThreshold")] - public int? FrontEndThreadPoolBasedKeepAliveWorkerThreadThreshold { get; set; } - - /// - /// Gets or sets monitor interval (in seconds) of front end thread pool - /// based keep-alive monitor. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndThreadPoolBasedKeepAliveMonitorIntervalInSeconds")] - public int? FrontEndThreadPoolBasedKeepAliveMonitorIntervalInSeconds { get; set; } - - /// - /// Gets or sets percentage (%) of front end thread pool based - /// keep-alive. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndThreadPoolBasedKeepAlivePercentage")] - public double? FrontEndThreadPoolBasedKeepAlivePercentage { get; set; } - - /// - /// Gets or sets switch of whether front end uses SLA time in - /// availability. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndUseSlaTimeInAvailability")] - public bool? FrontEndUseSlaTimeInAvailability { get; set; } - - /// - /// Gets or sets the HTTPs port of the storage service front end. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndHttpsListenPort")] - public int? FrontEndHttpsListenPort { get; set; } - - /// - /// Gets or sets the HTTP port of the storage service front end. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndHttpListenPort")] - public int? FrontEndHttpListenPort { get; set; } - - /// - /// Gets the interval, in seconds, of container garbage collection. - /// - [JsonProperty(PropertyName = "properties.settings.blobSvcContainerGcInterval")] - public int? BlobSvcContainerGcInterval { get; private set; } - - /// - /// Gets the interval ,in seconds, of shallow garbage collection. - /// - [JsonProperty(PropertyName = "properties.settings.blobSvcShallowGcInterval")] - public int? BlobSvcShallowGcInterval { get; private set; } - - /// - /// Gets the minimal container occupancy percent for stream mapping. - /// - [JsonProperty(PropertyName = "properties.settings.blobSvcStreamMapMinContainerOccupancyPercent")] - public int? BlobSvcStreamMapMinContainerOccupancyPercent { get; private set; } - - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/BlobServiceWritableSettings.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/BlobServiceWritableSettings.cs deleted file mode 100644 index c7451c6ed2aa..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/BlobServiceWritableSettings.cs +++ /dev/null @@ -1,116 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin.Models -{ - using Newtonsoft.Json; - using System.Linq; - - /// - /// Settings of BLOB service. - /// - public partial class BlobServiceWritableSettings : WritableServiceSettings - { - /// - /// Initializes a new instance of the BlobServiceWritableSettings - /// class. - /// - public BlobServiceWritableSettings() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the BlobServiceWritableSettings - /// class. - /// - /// Front end callback - /// threads count. - /// Switch of - /// front end CPU based keep-alive throttling. - /// Threshold - /// (% percentage) of front end CPU based keep-alive - /// throttling. - /// Threshold - /// (% percentage) of requests to throttle in front end CPU based - /// keep-alive throttling. - /// Interval - /// (in second) of CPU monitor for front end CPU based keep-alive - /// throttling. - /// Switch of front end - /// memory throttling. - /// Maxium - /// interval (in millisecond) between memory samples of front - /// end. - /// Front end - /// memory throttle threshold settings. - /// Front end minimum number - /// of threads in thread pool. - /// Threshold - /// of front end thread pool based keep-alive IO completion. - /// Threshold - /// of front end thread pool based keep-alive worker thread. - /// Monitor - /// interval (in seconds) of front end thread pool based keep-alive - /// monitor. - /// Percentage - /// (%) of front end thread pool based keep-alive. - /// Switch of whether - /// front end uses SLA time in availability. - /// The HTTPs port of the storage - /// service front end. - /// The HTTP port of the storage - /// service front end. - /// The interval, in seconds, - /// of container garbage collection. - /// The interval ,in seconds, of - /// shallow garbage collection. - /// The - /// minimal container occupancy percent for stream mapping. - public BlobServiceWritableSettings(int? frontEndCallbackThreadsCount = default(int?), bool? frontEndCpuBasedKeepAliveThrottlingEnabled = default(bool?), double? frontEndCpuBasedKeepAliveThrottlingPercentCpuThreshold = default(double?), double? frontEndCpuBasedKeepAliveThrottlingPercentRequestsToThrottle = default(double?), int? frontEndCpuBasedKeepAliveThrottlingCpuMonitorIntervalInSeconds = default(int?), bool? frontEndMemoryThrottlingEnabled = default(bool?), int? frontEndMaxMillisecondsBetweenMemorySamples = default(int?), string frontEndMemoryThrottleThresholdSettings = default(string), int? frontEndMinThreadPoolThreads = default(int?), int? frontEndThreadPoolBasedKeepAliveIOCompletionThreshold = default(int?), int? frontEndThreadPoolBasedKeepAliveWorkerThreadThreshold = default(int?), int? frontEndThreadPoolBasedKeepAliveMonitorIntervalInSeconds = default(int?), double? frontEndThreadPoolBasedKeepAlivePercentage = default(double?), bool? frontEndUseSlaTimeInAvailability = default(bool?), int? frontEndHttpsListenPort = default(int?), int? frontEndHttpListenPort = default(int?), int? blobSvcContainerGcInterval = default(int?), int? blobSvcShallowGcInterval = default(int?), int? blobSvcStreamMapMinContainerOccupancyPercent = default(int?)) - : base(frontEndCallbackThreadsCount, frontEndCpuBasedKeepAliveThrottlingEnabled, frontEndCpuBasedKeepAliveThrottlingPercentCpuThreshold, frontEndCpuBasedKeepAliveThrottlingPercentRequestsToThrottle, frontEndCpuBasedKeepAliveThrottlingCpuMonitorIntervalInSeconds, frontEndMemoryThrottlingEnabled, frontEndMaxMillisecondsBetweenMemorySamples, frontEndMemoryThrottleThresholdSettings, frontEndMinThreadPoolThreads, frontEndThreadPoolBasedKeepAliveIOCompletionThreshold, frontEndThreadPoolBasedKeepAliveWorkerThreadThreshold, frontEndThreadPoolBasedKeepAliveMonitorIntervalInSeconds, frontEndThreadPoolBasedKeepAlivePercentage, frontEndUseSlaTimeInAvailability, frontEndHttpsListenPort, frontEndHttpListenPort) - { - BlobSvcContainerGcInterval = blobSvcContainerGcInterval; - BlobSvcShallowGcInterval = blobSvcShallowGcInterval; - BlobSvcStreamMapMinContainerOccupancyPercent = blobSvcStreamMapMinContainerOccupancyPercent; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets the interval, in seconds, of container garbage collection. - /// - [JsonProperty(PropertyName = "blobSvcContainerGcInterval")] - public int? BlobSvcContainerGcInterval { get; private set; } - - /// - /// Gets the interval ,in seconds, of shallow garbage collection. - /// - [JsonProperty(PropertyName = "blobSvcShallowGcInterval")] - public int? BlobSvcShallowGcInterval { get; private set; } - - /// - /// Gets the minimal container occupancy percent for stream mapping. - /// - [JsonProperty(PropertyName = "blobSvcStreamMapMinContainerOccupancyPercent")] - public int? BlobSvcStreamMapMinContainerOccupancyPercent { get; private set; } - - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/Container.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/Container.cs deleted file mode 100644 index 31b505338dad..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/Container.cs +++ /dev/null @@ -1,104 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin.Models -{ - using Newtonsoft.Json; - using System.Linq; - - /// - /// Container properties. - /// - public partial class Container - { - /// - /// Initializes a new instance of the Container class. - /// - public Container() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the Container class. - /// - /// The name of the share where the container - /// locates. - /// The name of storage account where the - /// container locates. - /// Container name. - /// The container ID. - /// The ID of the storage account. - /// The used space, in bytes, of - /// the container in the primary volume. - /// The current state of the - /// container. - public Container(string sharename = default(string), string accountname = default(string), string containername = default(string), long? containerid = default(long?), string accountid = default(string), long? usedBytesInPrimaryVolume = default(long?), string containerState = default(string)) - { - Sharename = sharename; - Accountname = accountname; - Containername = containername; - Containerid = containerid; - Accountid = accountid; - UsedBytesInPrimaryVolume = usedBytesInPrimaryVolume; - ContainerState = containerState; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets the name of the share where the container locates. - /// - [JsonProperty(PropertyName = "sharename")] - public string Sharename { get; private set; } - - /// - /// Gets the name of storage account where the container locates. - /// - [JsonProperty(PropertyName = "accountname")] - public string Accountname { get; private set; } - - /// - /// Gets container name. - /// - [JsonProperty(PropertyName = "containername")] - public string Containername { get; private set; } - - /// - /// Gets the container ID. - /// - [JsonProperty(PropertyName = "containerid")] - public long? Containerid { get; private set; } - - /// - /// Gets the ID of the storage account. - /// - [JsonProperty(PropertyName = "accountid")] - public string Accountid { get; private set; } - - /// - /// Gets the used space, in bytes, of the container in the primary - /// volume. - /// - [JsonProperty(PropertyName = "usedBytesInPrimaryVolume")] - public long? UsedBytesInPrimaryVolume { get; private set; } - - /// - /// Gets the current state of the container. - /// - [JsonProperty(PropertyName = "containerState")] - public string ContainerState { get; private set; } - - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/HealthStatus.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/EncryptionKeySource.cs similarity index 63% rename from sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/HealthStatus.cs rename to sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/EncryptionKeySource.cs index 6bb92308cbf0..e82f3f7cbc4b 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/HealthStatus.cs +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/EncryptionKeySource.cs @@ -12,13 +12,10 @@ namespace Microsoft.AzureStack.Management.Storage.Admin.Models { /// - /// Defines values for HealthStatus. + /// Defines values for EncryptionKeySource. /// - public static class HealthStatus + public static class EncryptionKeySource { - public const string Unknown = "Unknown"; - public const string Healthy = "Healthy"; - public const string Warning = "Warning"; - public const string Critical = "Critical"; + public const string MicrosoftStorage = "Microsoft.Storage"; } } diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/ErrorResponse.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/ErrorResponse.cs new file mode 100644 index 000000000000..b8452fcd0ce2 --- /dev/null +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/ErrorResponse.cs @@ -0,0 +1,77 @@ +// +// 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.AzureStack.Management.Storage.Admin.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The error response for request which failed. + /// + public partial class ErrorResponse + { + /// + /// Initializes a new instance of the ErrorResponse class. + /// + public ErrorResponse() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ErrorResponse class. + /// + /// The error description code. + /// The error description message. + /// The error target description. + /// The error details information. + public ErrorResponse(string code = default(string), string message = default(string), string target = default(string), IList details = default(IList)) + { + Code = code; + Message = message; + Target = target; + Details = details; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the error description code. + /// + [JsonProperty(PropertyName = "code")] + public string Code { get; private set; } + + /// + /// Gets the error description message. + /// + [JsonProperty(PropertyName = "message")] + public string Message { get; private set; } + + /// + /// Gets the error target description. + /// + [JsonProperty(PropertyName = "target")] + public string Target { get; private set; } + + /// + /// Gets the error details information. + /// + [JsonProperty(PropertyName = "details")] + public IList Details { get; private set; } + + } +} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/ErrorResponseException.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/ErrorResponseException.cs new file mode 100644 index 000000000000..f4ad8508d3d7 --- /dev/null +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/ErrorResponseException.cs @@ -0,0 +1,62 @@ +// +// 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.AzureStack.Management.Storage.Admin.Models +{ + using Microsoft.Rest; + + /// + /// Exception thrown for an invalid response with ErrorResponse + /// information. + /// + public partial class ErrorResponseException : RestException + { + /// + /// Gets information about the associated HTTP request. + /// + public HttpRequestMessageWrapper Request { get; set; } + + /// + /// Gets information about the associated HTTP response. + /// + public HttpResponseMessageWrapper Response { get; set; } + + /// + /// Gets or sets the body object. + /// + public ErrorResponse Body { get; set; } + + /// + /// Initializes a new instance of the ErrorResponseException class. + /// + public ErrorResponseException() + { + } + + /// + /// Initializes a new instance of the ErrorResponseException class. + /// + /// The exception message. + public ErrorResponseException(string message) + : this(message, null) + { + } + + /// + /// Initializes a new instance of the ErrorResponseException class. + /// + /// The exception message. + /// Inner exception. + public ErrorResponseException(string message, System.Exception innerException) + : base(message, innerException) + { + } + } +} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/Farm.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/Farm.cs deleted file mode 100644 index 64eb5000ca29..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/Farm.cs +++ /dev/null @@ -1,446 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin.Models -{ - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Storage farm. - /// - [Rest.Serialization.JsonTransformation] - public partial class Farm : Resource - { - /// - /// Initializes a new instance of the Farm class. - /// - public Farm() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the Farm class. - /// - /// Resource ID. - /// Resource Name. - /// Resource type. - /// Resource location. - /// Resource tags. - /// Farm identifier. - /// Resource version. - /// The settings of storage farm. - /// The polling interval - /// (in second). - /// The - /// retention period (in days) for deleted storage account. - /// Host style HTTP port. - /// Host style HTTPs port. - /// The list of allowed - /// origins. - /// The suffixes of URI of - /// hosts in data center. - /// Switch of bandwidth - /// throttle enablement. - /// Interval (in - /// seconds) of storage usage collection. - /// Interval (in - /// seconds) of feedback refresh. - /// Number of accounts to - /// sync. - /// Interval - /// (in seconds) of default throttle probability decay. - /// Grace - /// period for full throttling in refresh intervals. - /// Maximum probability - /// of throttle in grace period. - /// Overall request - /// threshold (in TPS). - /// Default request - /// threshold (in TPS). - /// Minimum request - /// threshold (in TPS). - /// Tolerance factor for - /// TPS. - /// Overall ingress - /// threshold (in Gbps) - /// Default ingress - /// threshold (in Gbps). - /// Minimum ingress - /// threshold (in Gbps). - /// Tolerance factor for - /// ingress. - /// Overall - /// Intranet ingress threshold (in Gbps). - /// Default - /// Intranet ingress threshold (in Gbps). - /// Minimum - /// Intranet ingress threshold (in Gbps). - /// Tolerance factor - /// for Intranet ingress. - /// Overall egress threshold - /// (in Gbps). - /// Default egress threshold - /// (in Gbps). - /// Minimum egress threshold - /// (in Gbps). - /// Tolerance factor for - /// egress. - /// Overall Intranet - /// egress threshold (in Gbps). - /// Default Intranet - /// egress threshold (in Gbps). - /// Minimum Intranet - /// egress threshold (in Gbps). - /// Tolerance factor for - /// Intranet egress. - /// Overall total - /// ingress threshold (in Gbps). - /// Default total - /// ingress threshold (in Gbps). - /// Minimum total - /// ingress threshold (in Gbps). - /// Tolerance factor for - /// total ingress. - /// Overall total - /// egress threshold (in Gbps). - /// Default total - /// egress threshold (in Gbps). - /// Minimum total - /// egress threshold (in Gbp - /// Tolerance factor for - /// total egress. - public Farm(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), string farmId = default(string), string version = default(string), string settingsStore = default(string), int? settingsPollingIntervalInSecond = default(int?), int? retentionPeriodForDeletedStorageAccountsInDays = default(int?), int? hostStyleHttpPort = default(int?), int? hostStyleHttpsPort = default(int?), string corsAllowedOriginsList = default(string), string dataCenterUriHostSuffixes = default(string), bool? bandwidthThrottleIsEnabled = default(bool?), int? usageCollectionIntervalInSeconds = default(int?), int? feedbackRefreshIntervalInSeconds = default(int?), int? numberOfAccountsToSync = default(int?), int? defaultThrottleProbabilityDecayIntervalInSeconds = default(int?), int? gracePeriodForFullThrottlingInRefreshIntervals = default(int?), double? gracePeriodMaxThrottleProbability = default(double?), double? overallRequestThresholdInTps = default(double?), double? defaultRequestThresholdInTps = default(double?), double? minimumRequestThresholdInTps = default(double?), double? toleranceFactorForTps = default(double?), double? overallIngressThresholdInGbps = default(double?), double? defaultIngressThresholdInGbps = default(double?), double? minimumIngressThresholdInGbps = default(double?), double? toleranceFactorForIngress = default(double?), double? overallIntranetIngressThresholdInGbps = default(double?), double? defaultIntranetIngressThresholdInGbps = default(double?), double? minimumIntranetIngressThresholdInGbps = default(double?), double? toleranceFactorForIntranetIngress = default(double?), double? overallEgressThresholdInGbps = default(double?), double? defaultEgressThresholdInGbps = default(double?), double? minimumEgressThresholdInGbps = default(double?), double? toleranceFactorForEgress = default(double?), double? overallIntranetEgressThresholdInGbps = default(double?), double? defaultIntranetEgressThresholdInGbps = default(double?), double? minimumIntranetEgressThresholdInGbps = default(double?), double? toleranceFactorForIntranetEgress = default(double?), double? overallTotalIngressThresholdInGbps = default(double?), double? defaultTotalIngressThresholdInGbps = default(double?), double? minimumTotalIngressThresholdInGbps = default(double?), double? toleranceFactorForTotalIngress = default(double?), double? overallTotalEgressThresholdInGbps = default(double?), double? defaultTotalEgressThresholdInGbps = default(double?), double? minimumTotalEgressThresholdInGbps = default(double?), double? toleranceFactorForTotalEgress = default(double?)) - : base(id, name, type, location, tags) - { - FarmId = farmId; - Version = version; - SettingsStore = settingsStore; - SettingsPollingIntervalInSecond = settingsPollingIntervalInSecond; - RetentionPeriodForDeletedStorageAccountsInDays = retentionPeriodForDeletedStorageAccountsInDays; - HostStyleHttpPort = hostStyleHttpPort; - HostStyleHttpsPort = hostStyleHttpsPort; - CorsAllowedOriginsList = corsAllowedOriginsList; - DataCenterUriHostSuffixes = dataCenterUriHostSuffixes; - BandwidthThrottleIsEnabled = bandwidthThrottleIsEnabled; - UsageCollectionIntervalInSeconds = usageCollectionIntervalInSeconds; - FeedbackRefreshIntervalInSeconds = feedbackRefreshIntervalInSeconds; - NumberOfAccountsToSync = numberOfAccountsToSync; - DefaultThrottleProbabilityDecayIntervalInSeconds = defaultThrottleProbabilityDecayIntervalInSeconds; - GracePeriodForFullThrottlingInRefreshIntervals = gracePeriodForFullThrottlingInRefreshIntervals; - GracePeriodMaxThrottleProbability = gracePeriodMaxThrottleProbability; - OverallRequestThresholdInTps = overallRequestThresholdInTps; - DefaultRequestThresholdInTps = defaultRequestThresholdInTps; - MinimumRequestThresholdInTps = minimumRequestThresholdInTps; - ToleranceFactorForTps = toleranceFactorForTps; - OverallIngressThresholdInGbps = overallIngressThresholdInGbps; - DefaultIngressThresholdInGbps = defaultIngressThresholdInGbps; - MinimumIngressThresholdInGbps = minimumIngressThresholdInGbps; - ToleranceFactorForIngress = toleranceFactorForIngress; - OverallIntranetIngressThresholdInGbps = overallIntranetIngressThresholdInGbps; - DefaultIntranetIngressThresholdInGbps = defaultIntranetIngressThresholdInGbps; - MinimumIntranetIngressThresholdInGbps = minimumIntranetIngressThresholdInGbps; - ToleranceFactorForIntranetIngress = toleranceFactorForIntranetIngress; - OverallEgressThresholdInGbps = overallEgressThresholdInGbps; - DefaultEgressThresholdInGbps = defaultEgressThresholdInGbps; - MinimumEgressThresholdInGbps = minimumEgressThresholdInGbps; - ToleranceFactorForEgress = toleranceFactorForEgress; - OverallIntranetEgressThresholdInGbps = overallIntranetEgressThresholdInGbps; - DefaultIntranetEgressThresholdInGbps = defaultIntranetEgressThresholdInGbps; - MinimumIntranetEgressThresholdInGbps = minimumIntranetEgressThresholdInGbps; - ToleranceFactorForIntranetEgress = toleranceFactorForIntranetEgress; - OverallTotalIngressThresholdInGbps = overallTotalIngressThresholdInGbps; - DefaultTotalIngressThresholdInGbps = defaultTotalIngressThresholdInGbps; - MinimumTotalIngressThresholdInGbps = minimumTotalIngressThresholdInGbps; - ToleranceFactorForTotalIngress = toleranceFactorForTotalIngress; - OverallTotalEgressThresholdInGbps = overallTotalEgressThresholdInGbps; - DefaultTotalEgressThresholdInGbps = defaultTotalEgressThresholdInGbps; - MinimumTotalEgressThresholdInGbps = minimumTotalEgressThresholdInGbps; - ToleranceFactorForTotalEgress = toleranceFactorForTotalEgress; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets farm identifier. - /// - [JsonProperty(PropertyName = "properties.farmId")] - public string FarmId { get; private set; } - - /// - /// Gets resource version. - /// - [JsonProperty(PropertyName = "properties.version")] - public string Version { get; private set; } - - /// - /// Gets the settings of storage farm. - /// - [JsonProperty(PropertyName = "properties.settingsStore")] - public string SettingsStore { get; private set; } - - /// - /// Gets the polling interval (in second). - /// - [JsonProperty(PropertyName = "properties.settings.settingsPollingIntervalInSecond")] - public int? SettingsPollingIntervalInSecond { get; private set; } - - /// - /// Gets the retention period (in days) for deleted storage account. - /// - [JsonProperty(PropertyName = "properties.settings.retentionPeriodForDeletedStorageAccountsInDays")] - public int? RetentionPeriodForDeletedStorageAccountsInDays { get; private set; } - - /// - /// Gets host style HTTP port. - /// - [JsonProperty(PropertyName = "properties.settings.hostStyleHttpPort")] - public int? HostStyleHttpPort { get; private set; } - - /// - /// Gets host style HTTPs port. - /// - [JsonProperty(PropertyName = "properties.settings.hostStyleHttpsPort")] - public int? HostStyleHttpsPort { get; private set; } - - /// - /// Gets the list of allowed origins. - /// - [JsonProperty(PropertyName = "properties.settings.corsAllowedOriginsList")] - public string CorsAllowedOriginsList { get; private set; } - - /// - /// Gets the suffixes of URI of hosts in data center. - /// - [JsonProperty(PropertyName = "properties.settings.dataCenterUriHostSuffixes")] - public string DataCenterUriHostSuffixes { get; private set; } - - /// - /// Gets switch of bandwidth throttle enablement. - /// - [JsonProperty(PropertyName = "properties.settings.bandwidthThrottleIsEnabled")] - public bool? BandwidthThrottleIsEnabled { get; private set; } - - /// - /// Gets interval (in seconds) of storage usage collection. - /// - [JsonProperty(PropertyName = "properties.settings.usageCollectionIntervalInSeconds")] - public int? UsageCollectionIntervalInSeconds { get; private set; } - - /// - /// Gets interval (in seconds) of feedback refresh. - /// - [JsonProperty(PropertyName = "properties.settings.feedbackRefreshIntervalInSeconds")] - public int? FeedbackRefreshIntervalInSeconds { get; private set; } - - /// - /// Gets number of accounts to sync. - /// - [JsonProperty(PropertyName = "properties.settings.numberOfAccountsToSync")] - public int? NumberOfAccountsToSync { get; private set; } - - /// - /// Gets interval (in seconds) of default throttle probability decay. - /// - [JsonProperty(PropertyName = "properties.settings.defaultThrottleProbabilityDecayIntervalInSeconds")] - public int? DefaultThrottleProbabilityDecayIntervalInSeconds { get; private set; } - - /// - /// Gets grace period for full throttling in refresh intervals. - /// - [JsonProperty(PropertyName = "properties.settings.gracePeriodForFullThrottlingInRefreshIntervals")] - public int? GracePeriodForFullThrottlingInRefreshIntervals { get; private set; } - - /// - /// Gets maximum probability of throttle in grace period. - /// - [JsonProperty(PropertyName = "properties.settings.gracePeriodMaxThrottleProbability")] - public double? GracePeriodMaxThrottleProbability { get; private set; } - - /// - /// Gets overall request threshold (in TPS). - /// - [JsonProperty(PropertyName = "properties.settings.overallRequestThresholdInTps")] - public double? OverallRequestThresholdInTps { get; private set; } - - /// - /// Gets default request threshold (in TPS). - /// - [JsonProperty(PropertyName = "properties.settings.defaultRequestThresholdInTps")] - public double? DefaultRequestThresholdInTps { get; private set; } - - /// - /// Gets minimum request threshold (in TPS). - /// - [JsonProperty(PropertyName = "properties.settings.minimumRequestThresholdInTps")] - public double? MinimumRequestThresholdInTps { get; private set; } - - /// - /// Gets tolerance factor for TPS. - /// - [JsonProperty(PropertyName = "properties.settings.toleranceFactorForTps")] - public double? ToleranceFactorForTps { get; private set; } - - /// - /// Gets overall ingress threshold (in Gbps) - /// - [JsonProperty(PropertyName = "properties.settings.overallIngressThresholdInGbps")] - public double? OverallIngressThresholdInGbps { get; private set; } - - /// - /// Gets default ingress threshold (in Gbps). - /// - [JsonProperty(PropertyName = "properties.settings.defaultIngressThresholdInGbps")] - public double? DefaultIngressThresholdInGbps { get; private set; } - - /// - /// Gets minimum ingress threshold (in Gbps). - /// - [JsonProperty(PropertyName = "properties.settings.minimumIngressThresholdInGbps")] - public double? MinimumIngressThresholdInGbps { get; private set; } - - /// - /// Gets tolerance factor for ingress. - /// - [JsonProperty(PropertyName = "properties.settings.toleranceFactorForIngress")] - public double? ToleranceFactorForIngress { get; private set; } - - /// - /// Gets overall Intranet ingress threshold (in Gbps). - /// - [JsonProperty(PropertyName = "properties.settings.overallIntranetIngressThresholdInGbps")] - public double? OverallIntranetIngressThresholdInGbps { get; private set; } - - /// - /// Gets default Intranet ingress threshold (in Gbps). - /// - [JsonProperty(PropertyName = "properties.settings.defaultIntranetIngressThresholdInGbps")] - public double? DefaultIntranetIngressThresholdInGbps { get; private set; } - - /// - /// Gets minimum Intranet ingress threshold (in Gbps). - /// - [JsonProperty(PropertyName = "properties.settings.minimumIntranetIngressThresholdInGbps")] - public double? MinimumIntranetIngressThresholdInGbps { get; private set; } - - /// - /// Gets tolerance factor for Intranet ingress. - /// - [JsonProperty(PropertyName = "properties.settings.toleranceFactorForIntranetIngress")] - public double? ToleranceFactorForIntranetIngress { get; private set; } - - /// - /// Gets overall egress threshold (in Gbps). - /// - [JsonProperty(PropertyName = "properties.settings.overallEgressThresholdInGbps")] - public double? OverallEgressThresholdInGbps { get; private set; } - - /// - /// Gets default egress threshold (in Gbps). - /// - [JsonProperty(PropertyName = "properties.settings.defaultEgressThresholdInGbps")] - public double? DefaultEgressThresholdInGbps { get; private set; } - - /// - /// Gets minimum egress threshold (in Gbps). - /// - [JsonProperty(PropertyName = "properties.settings.minimumEgressThresholdInGbps")] - public double? MinimumEgressThresholdInGbps { get; private set; } - - /// - /// Gets tolerance factor for egress. - /// - [JsonProperty(PropertyName = "properties.settings.toleranceFactorForEgress")] - public double? ToleranceFactorForEgress { get; private set; } - - /// - /// Gets overall Intranet egress threshold (in Gbps). - /// - [JsonProperty(PropertyName = "properties.settings.overallIntranetEgressThresholdInGbps")] - public double? OverallIntranetEgressThresholdInGbps { get; private set; } - - /// - /// Gets default Intranet egress threshold (in Gbps). - /// - [JsonProperty(PropertyName = "properties.settings.defaultIntranetEgressThresholdInGbps")] - public double? DefaultIntranetEgressThresholdInGbps { get; private set; } - - /// - /// Gets minimum Intranet egress threshold (in Gbps). - /// - [JsonProperty(PropertyName = "properties.settings.minimumIntranetEgressThresholdInGbps")] - public double? MinimumIntranetEgressThresholdInGbps { get; private set; } - - /// - /// Gets tolerance factor for Intranet egress. - /// - [JsonProperty(PropertyName = "properties.settings.toleranceFactorForIntranetEgress")] - public double? ToleranceFactorForIntranetEgress { get; private set; } - - /// - /// Gets overall total ingress threshold (in Gbps). - /// - [JsonProperty(PropertyName = "properties.settings.overallTotalIngressThresholdInGbps")] - public double? OverallTotalIngressThresholdInGbps { get; private set; } - - /// - /// Gets default total ingress threshold (in Gbps). - /// - [JsonProperty(PropertyName = "properties.settings.defaultTotalIngressThresholdInGbps")] - public double? DefaultTotalIngressThresholdInGbps { get; private set; } - - /// - /// Gets minimum total ingress threshold (in Gbps). - /// - [JsonProperty(PropertyName = "properties.settings.minimumTotalIngressThresholdInGbps")] - public double? MinimumTotalIngressThresholdInGbps { get; private set; } - - /// - /// Gets tolerance factor for total ingress. - /// - [JsonProperty(PropertyName = "properties.settings.toleranceFactorForTotalIngress")] - public double? ToleranceFactorForTotalIngress { get; private set; } - - /// - /// Gets overall total egress threshold (in Gbps). - /// - [JsonProperty(PropertyName = "properties.settings.overallTotalEgressThresholdInGbps")] - public double? OverallTotalEgressThresholdInGbps { get; private set; } - - /// - /// Gets default total egress threshold (in Gbps). - /// - [JsonProperty(PropertyName = "properties.settings.defaultTotalEgressThresholdInGbps")] - public double? DefaultTotalEgressThresholdInGbps { get; private set; } - - /// - /// Gets minimum total egress threshold (in Gbp - /// - [JsonProperty(PropertyName = "properties.settings.minimumTotalEgressThresholdInGbps")] - public double? MinimumTotalEgressThresholdInGbps { get; private set; } - - /// - /// Gets tolerance factor for total egress. - /// - [JsonProperty(PropertyName = "properties.settings.toleranceFactorForTotalEgress")] - public double? ToleranceFactorForTotalEgress { get; private set; } - - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/FarmCreationProperties.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/FarmCreationProperties.cs deleted file mode 100644 index 42bde9041316..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/FarmCreationProperties.cs +++ /dev/null @@ -1,63 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin.Models -{ - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Storage farm properties. - /// - [Rest.Serialization.JsonTransformation] - public partial class FarmCreationProperties : Resource - { - /// - /// Initializes a new instance of the FarmCreationProperties class. - /// - public FarmCreationProperties() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the FarmCreationProperties class. - /// - /// Resource ID. - /// Resource Name. - /// Resource type. - /// Resource location. - /// Resource tags. - /// Setting access - /// string. - public FarmCreationProperties(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), string settingAccessStringProperty = default(string)) - : base(id, name, type, location, tags) - { - SettingAccessStringProperty = settingAccessStringProperty; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets setting access string. - /// - [JsonProperty(PropertyName = "properties.settingAccessString")] - public string SettingAccessStringProperty { get; set; } - - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/Metric.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/Metric.cs deleted file mode 100644 index 11fad40c71b1..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/Metric.cs +++ /dev/null @@ -1,96 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin.Models -{ - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Metric information. - /// - public partial class Metric - { - /// - /// Initializes a new instance of the Metric class. - /// - public Metric() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the Metric class. - /// - /// Metric Name. - /// Metric Unit. Possible values include: - /// 'Count', 'Bytes', 'Seconds', 'CountPerSecond', - /// 'BytesPerSecond' - /// Metric time grain. - /// Metric start time. - /// Metric end time. - /// List of metric values. - public Metric(LocalizableString name = default(LocalizableString), string metricUnit = default(string), string timeGrain = default(string), System.DateTime? startTime = default(System.DateTime?), System.DateTime? endTime = default(System.DateTime?), IList metricValues = default(IList)) - { - Name = name; - MetricUnit = metricUnit; - TimeGrain = timeGrain; - StartTime = startTime; - EndTime = endTime; - MetricValues = metricValues; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets metric Name. - /// - [JsonProperty(PropertyName = "name")] - public LocalizableString Name { get; private set; } - - /// - /// Gets metric Unit. Possible values include: 'Count', 'Bytes', - /// 'Seconds', 'CountPerSecond', 'BytesPerSecond' - /// - [JsonProperty(PropertyName = "metricUnit")] - public string MetricUnit { get; private set; } - - /// - /// Gets metric time grain. - /// - [JsonProperty(PropertyName = "timeGrain")] - public string TimeGrain { get; private set; } - - /// - /// Gets metric start time. - /// - [JsonProperty(PropertyName = "startTime")] - public System.DateTime? StartTime { get; private set; } - - /// - /// Gets metric end time. - /// - [JsonProperty(PropertyName = "endTime")] - public System.DateTime? EndTime { get; private set; } - - /// - /// Gets list of metric values. - /// - [JsonProperty(PropertyName = "metricValues")] - public IList MetricValues { get; private set; } - - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/MetricDefinition.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/MetricDefinition.cs deleted file mode 100644 index 247d950f4500..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/MetricDefinition.cs +++ /dev/null @@ -1,82 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin.Models -{ - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Metric definition. - /// - public partial class MetricDefinition - { - /// - /// Initializes a new instance of the MetricDefinition class. - /// - public MetricDefinition() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the MetricDefinition class. - /// - /// Metric name. - /// Metric unit. Possible values include: 'Count', - /// 'Bytes', 'Seconds', 'CountPerSecond', 'BytesPerSecond' - /// Aggregation type of metric. - /// Possible values include: 'None', 'Average', 'Total', 'Minimum', - /// 'Maximum', 'Last' - /// Metric availabilities. - public MetricDefinition(LocalizableString name = default(LocalizableString), string unit = default(string), string primaryAggregationType = default(string), IList metricAvailabilities = default(IList)) - { - Name = name; - Unit = unit; - PrimaryAggregationType = primaryAggregationType; - MetricAvailabilities = metricAvailabilities; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets metric name. - /// - [JsonProperty(PropertyName = "name")] - public LocalizableString Name { get; private set; } - - /// - /// Gets metric unit. Possible values include: 'Count', 'Bytes', - /// 'Seconds', 'CountPerSecond', 'BytesPerSecond' - /// - [JsonProperty(PropertyName = "unit")] - public string Unit { get; private set; } - - /// - /// Gets aggregation type of metric. Possible values include: 'None', - /// 'Average', 'Total', 'Minimum', 'Maximum', 'Last' - /// - [JsonProperty(PropertyName = "primaryAggregationType")] - public string PrimaryAggregationType { get; private set; } - - /// - /// Gets metric availabilities. - /// - [JsonProperty(PropertyName = "metricAvailabilities")] - public IList MetricAvailabilities { get; private set; } - - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/MetricUnit.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/MetricUnit.cs deleted file mode 100644 index 200cb864aa28..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/MetricUnit.cs +++ /dev/null @@ -1,25 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin.Models -{ - - /// - /// Defines values for MetricUnit. - /// - public static class MetricUnit - { - public const string Count = "Count"; - public const string Bytes = "Bytes"; - public const string Seconds = "Seconds"; - public const string CountPerSecond = "CountPerSecond"; - public const string BytesPerSecond = "BytesPerSecond"; - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/MetricValue.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/MetricValue.cs deleted file mode 100644 index 3f47146354e2..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/MetricValue.cs +++ /dev/null @@ -1,99 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin.Models -{ - using Newtonsoft.Json; - using System.Linq; - - /// - /// Metric value. - /// - public partial class MetricValue - { - /// - /// Initializes a new instance of the MetricValue class. - /// - public MetricValue() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the MetricValue class. - /// - /// Timestamp of metric value. - /// Average value of metric. - /// Minimum value of metric. - /// Maximum value of metric. - /// Total value of metric. - /// Count of metric values. - /// Metric value properties. - public MetricValue(System.DateTime? timeStamp = default(System.DateTime?), double? average = default(double?), double? minimum = default(double?), double? maximum = default(double?), double? total = default(double?), int? count = default(int?), string properties = default(string)) - { - TimeStamp = timeStamp; - Average = average; - Minimum = minimum; - Maximum = maximum; - Total = total; - Count = count; - Properties = properties; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets timestamp of metric value. - /// - [JsonProperty(PropertyName = "timeStamp")] - public System.DateTime? TimeStamp { get; private set; } - - /// - /// Gets average value of metric. - /// - [JsonProperty(PropertyName = "average")] - public double? Average { get; private set; } - - /// - /// Gets minimum value of metric. - /// - [JsonProperty(PropertyName = "minimum")] - public double? Minimum { get; private set; } - - /// - /// Gets maximum value of metric. - /// - [JsonProperty(PropertyName = "maximum")] - public double? Maximum { get; private set; } - - /// - /// Gets total value of metric. - /// - [JsonProperty(PropertyName = "total")] - public double? Total { get; private set; } - - /// - /// Gets count of metric values. - /// - [JsonProperty(PropertyName = "count")] - public int? Count { get; private set; } - - /// - /// Gets metric value properties. - /// - [JsonProperty(PropertyName = "properties")] - public string Properties { get; private set; } - - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/MigrationParameters.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/MigrationParameters.cs deleted file mode 100644 index b30d0ec8404d..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/MigrationParameters.cs +++ /dev/null @@ -1,93 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin.Models -{ - using Microsoft.Rest; - using Newtonsoft.Json; - using System.Linq; - - /// - /// Parameters of container migration job. - /// - public partial class MigrationParameters - { - /// - /// Initializes a new instance of the MigrationParameters class. - /// - public MigrationParameters() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the MigrationParameters class. - /// - /// The name of the storage account - /// where the container locates. - /// The name of the container to be - /// migrated. - /// The UNC path of the - /// destination share for migration. - public MigrationParameters(string storageAccountName, string containerName, string destinationShareUncPath) - { - StorageAccountName = storageAccountName; - ContainerName = containerName; - DestinationShareUncPath = destinationShareUncPath; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets the name of the storage account where the container - /// locates. - /// - [JsonProperty(PropertyName = "storageAccountName")] - public string StorageAccountName { get; set; } - - /// - /// Gets or sets the name of the container to be migrated. - /// - [JsonProperty(PropertyName = "containerName")] - public string ContainerName { get; set; } - - /// - /// Gets or sets the UNC path of the destination share for migration. - /// - [JsonProperty(PropertyName = "destinationShareUncPath")] - public string DestinationShareUncPath { get; set; } - - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (StorageAccountName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "StorageAccountName"); - } - if (ContainerName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "ContainerName"); - } - if (DestinationShareUncPath == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "DestinationShareUncPath"); - } - } - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/MigrationResult.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/MigrationResult.cs deleted file mode 100644 index dbe35bb1604b..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/MigrationResult.cs +++ /dev/null @@ -1,124 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin.Models -{ - using Newtonsoft.Json; - using System.Linq; - - /// - /// The result of the container migration. - /// - public partial class MigrationResult - { - /// - /// Initializes a new instance of the MigrationResult class. - /// - public MigrationResult() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the MigrationResult class. - /// - /// The migration job ID. - /// The name of the source storage - /// share. - /// The storage account name. - /// The name of the container to be - /// migrated. - /// The name of the destination - /// storage share. - /// The migration status. Possible values - /// include: 'Active', 'Paused', 'Deleted', 'Rollback', 'Complete', - /// 'Canceled', 'Failed', 'All' - /// The number of entities which - /// have been migrated. - /// The number of entities which failed - /// in migration. - /// The migration failure reason. - public MigrationResult(string jobId = default(string), string sourceShareName = default(string), string storageAccountName = default(string), string containerName = default(string), string destinationShareName = default(string), string migrationStatus = default(string), long? subEntitiesCompleted = default(long?), long? subEntitiesFailed = default(long?), string failureReason = default(string)) - { - JobId = jobId; - SourceShareName = sourceShareName; - StorageAccountName = storageAccountName; - ContainerName = containerName; - DestinationShareName = destinationShareName; - MigrationStatus = migrationStatus; - SubEntitiesCompleted = subEntitiesCompleted; - SubEntitiesFailed = subEntitiesFailed; - FailureReason = failureReason; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets the migration job ID. - /// - [JsonProperty(PropertyName = "jobId")] - public string JobId { get; private set; } - - /// - /// Gets the name of the source storage share. - /// - [JsonProperty(PropertyName = "sourceShareName")] - public string SourceShareName { get; private set; } - - /// - /// Gets the storage account name. - /// - [JsonProperty(PropertyName = "storageAccountName")] - public string StorageAccountName { get; private set; } - - /// - /// Gets the name of the container to be migrated. - /// - [JsonProperty(PropertyName = "containerName")] - public string ContainerName { get; private set; } - - /// - /// Gets the name of the destination storage share. - /// - [JsonProperty(PropertyName = "destinationShareName")] - public string DestinationShareName { get; private set; } - - /// - /// Gets the migration status. Possible values include: 'Active', - /// 'Paused', 'Deleted', 'Rollback', 'Complete', 'Canceled', 'Failed', - /// 'All' - /// - [JsonProperty(PropertyName = "migrationStatus")] - public string MigrationStatus { get; private set; } - - /// - /// Gets the number of entities which have been migrated. - /// - [JsonProperty(PropertyName = "subEntitiesCompleted")] - public long? SubEntitiesCompleted { get; private set; } - - /// - /// Gets the number of entities which failed in migration. - /// - [JsonProperty(PropertyName = "subEntitiesFailed")] - public long? SubEntitiesFailed { get; private set; } - - /// - /// Gets the migration failure reason. - /// - [JsonProperty(PropertyName = "failureReason")] - public string FailureReason { get; private set; } - - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/MigrationState.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/MigrationState.cs deleted file mode 100644 index 484bdd158cb0..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/MigrationState.cs +++ /dev/null @@ -1,28 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin.Models -{ - - /// - /// Defines values for MigrationState. - /// - public static class MigrationState - { - public const string Active = "Active"; - public const string Paused = "Paused"; - public const string Deleted = "Deleted"; - public const string Rollback = "Rollback"; - public const string Complete = "Complete"; - public const string Canceled = "Canceled"; - public const string Failed = "Failed"; - public const string All = "All"; - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/MetricAvailability.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/OperationList.cs similarity index 51% rename from sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/MetricAvailability.cs rename to sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/OperationList.cs index 6e5eb7d5759e..343aedd926e2 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/MetricAvailability.cs +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/OperationList.cs @@ -11,30 +11,30 @@ namespace Microsoft.AzureStack.Management.Storage.Admin.Models { using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// - /// Metric availability. + /// Pageable list of supported operations. /// - public partial class MetricAvailability + public partial class OperationList { /// - /// Initializes a new instance of the MetricAvailability class. + /// Initializes a new instance of the OperationList class. /// - public MetricAvailability() + public OperationList() { CustomInit(); } /// - /// Initializes a new instance of the MetricAvailability class. + /// Initializes a new instance of the OperationList class. /// - /// Time grain. - /// Retention of metric. - public MetricAvailability(string timeGrain = default(string), string retention = default(string)) + /// List of operations + public OperationList(IList value = default(IList)) { - TimeGrain = timeGrain; - Retention = retention; + Value = value; CustomInit(); } @@ -44,16 +44,10 @@ public MetricAvailability() partial void CustomInit(); /// - /// Gets or sets time grain. + /// Gets or sets list of operations /// - [JsonProperty(PropertyName = "timeGrain")] - public string TimeGrain { get; set; } - - /// - /// Gets or sets retention of metric. - /// - [JsonProperty(PropertyName = "retention")] - public string Retention { get; set; } + [JsonProperty(PropertyName = "value")] + public IList Value { get; set; } } } diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/Page.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/Page.cs index 0f84f8c72fa1..12215a3417e2 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/Page.cs +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/Page.cs @@ -26,7 +26,7 @@ public class Page : IPage /// /// Gets the link to the next page. /// - [JsonProperty("nextLink")] + [JsonProperty("@odata.nextLink")] public string NextPageLink { get; private set; } [JsonProperty("value")] diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/Page1.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/Page1.cs deleted file mode 100644 index ffaff5e52cb7..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/Page1.cs +++ /dev/null @@ -1,53 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin.Models -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - - /// - /// Defines a page in Azure responses. - /// - /// Type of the page content items - [JsonObject] - public class Page1 : IPage - { - /// - /// Gets the link to the next page. - /// - [JsonProperty("")] - public string NextPageLink { get; private set; } - - [JsonProperty("value")] - private IList Items{ get; set; } - - /// - /// Returns an enumerator that iterates through the collection. - /// - /// A an enumerator that can be used to iterate through the collection. - public IEnumerator GetEnumerator() - { - return Items == null ? System.Linq.Enumerable.Empty().GetEnumerator() : Items.GetEnumerator(); - } - - /// - /// Returns an enumerator that iterates through the collection. - /// - /// A an enumerator that can be used to iterate through the collection. - IEnumerator IEnumerable.GetEnumerator() - { - return GetEnumerator(); - } - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/QueueService.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/QueueService.cs deleted file mode 100644 index 4d47b93beba4..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/QueueService.cs +++ /dev/null @@ -1,237 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin.Models -{ - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Queue service. - /// - [Rest.Serialization.JsonTransformation] - public partial class QueueService : Resource - { - /// - /// Initializes a new instance of the QueueService class. - /// - public QueueService() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the QueueService class. - /// - /// Resource ID. - /// Resource Name. - /// Resource type. - /// Resource location. - /// Resource tags. - /// Storage service version. - /// Health status of storage service. - /// Possible values include: 'Unknown', 'Healthy', 'Warning', - /// 'Critical' - /// Front end callback - /// threads count. - /// Switch of - /// front end CPU based keep-alive throttling. - /// Threshold - /// (% percentage) of front end CPU based keep-alive - /// throttling. - /// Threshold - /// (% percentage) of requests to throttle in front end CPU based - /// keep-alive throttling. - /// Interval - /// (in second) of CPU monitor for front end CPU based keep-alive - /// throttling. - /// Switch of front end - /// memory throttling. - /// Maxium - /// interval (in millisecond) between memory samples of front - /// end. - /// Front end - /// memory throttle threshold settings. - /// Front end minimum number - /// of threads in thread pool. - /// Threshold - /// of front end thread pool based keep-alive IO completion. - /// Threshold - /// of front end thread pool based keep-alive worker thread. - /// Monitor - /// interval (in seconds) of front end thread pool based keep-alive - /// monitor. - /// Percentage - /// (%) of front end thread pool based keep-alive. - /// Switch of whether - /// front end uses SLA time in availability. - /// The HTTPs port of the storage - /// service front end. - /// The HTTP port of the storage - /// service front end. - public QueueService(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), string version = default(string), string healthStatus = default(string), int? frontEndCallbackThreadsCount = default(int?), bool? frontEndCpuBasedKeepAliveThrottlingEnabled = default(bool?), double? frontEndCpuBasedKeepAliveThrottlingPercentCpuThreshold = default(double?), double? frontEndCpuBasedKeepAliveThrottlingPercentRequestsToThrottle = default(double?), int? frontEndCpuBasedKeepAliveThrottlingCpuMonitorIntervalInSeconds = default(int?), bool? frontEndMemoryThrottlingEnabled = default(bool?), int? frontEndMaxMillisecondsBetweenMemorySamples = default(int?), string frontEndMemoryThrottleThresholdSettings = default(string), int? frontEndMinThreadPoolThreads = default(int?), int? frontEndThreadPoolBasedKeepAliveIOCompletionThreshold = default(int?), int? frontEndThreadPoolBasedKeepAliveWorkerThreadThreshold = default(int?), int? frontEndThreadPoolBasedKeepAliveMonitorIntervalInSeconds = default(int?), double? frontEndThreadPoolBasedKeepAlivePercentage = default(double?), bool? frontEndUseSlaTimeInAvailability = default(bool?), int? frontEndHttpsListenPort = default(int?), int? frontEndHttpListenPort = default(int?)) - : base(id, name, type, location, tags) - { - Version = version; - HealthStatus = healthStatus; - FrontEndCallbackThreadsCount = frontEndCallbackThreadsCount; - FrontEndCpuBasedKeepAliveThrottlingEnabled = frontEndCpuBasedKeepAliveThrottlingEnabled; - FrontEndCpuBasedKeepAliveThrottlingPercentCpuThreshold = frontEndCpuBasedKeepAliveThrottlingPercentCpuThreshold; - FrontEndCpuBasedKeepAliveThrottlingPercentRequestsToThrottle = frontEndCpuBasedKeepAliveThrottlingPercentRequestsToThrottle; - FrontEndCpuBasedKeepAliveThrottlingCpuMonitorIntervalInSeconds = frontEndCpuBasedKeepAliveThrottlingCpuMonitorIntervalInSeconds; - FrontEndMemoryThrottlingEnabled = frontEndMemoryThrottlingEnabled; - FrontEndMaxMillisecondsBetweenMemorySamples = frontEndMaxMillisecondsBetweenMemorySamples; - FrontEndMemoryThrottleThresholdSettings = frontEndMemoryThrottleThresholdSettings; - FrontEndMinThreadPoolThreads = frontEndMinThreadPoolThreads; - FrontEndThreadPoolBasedKeepAliveIOCompletionThreshold = frontEndThreadPoolBasedKeepAliveIOCompletionThreshold; - FrontEndThreadPoolBasedKeepAliveWorkerThreadThreshold = frontEndThreadPoolBasedKeepAliveWorkerThreadThreshold; - FrontEndThreadPoolBasedKeepAliveMonitorIntervalInSeconds = frontEndThreadPoolBasedKeepAliveMonitorIntervalInSeconds; - FrontEndThreadPoolBasedKeepAlivePercentage = frontEndThreadPoolBasedKeepAlivePercentage; - FrontEndUseSlaTimeInAvailability = frontEndUseSlaTimeInAvailability; - FrontEndHttpsListenPort = frontEndHttpsListenPort; - FrontEndHttpListenPort = frontEndHttpListenPort; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets storage service version. - /// - [JsonProperty(PropertyName = "properties.version")] - public string Version { get; set; } - - /// - /// Gets or sets health status of storage service. Possible values - /// include: 'Unknown', 'Healthy', 'Warning', 'Critical' - /// - [JsonProperty(PropertyName = "properties.healthStatus")] - public string HealthStatus { get; set; } - - /// - /// Gets or sets front end callback threads count. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndCallbackThreadsCount")] - public int? FrontEndCallbackThreadsCount { get; set; } - - /// - /// Gets or sets switch of front end CPU based keep-alive throttling. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndCpuBasedKeepAliveThrottlingEnabled")] - public bool? FrontEndCpuBasedKeepAliveThrottlingEnabled { get; set; } - - /// - /// Gets or sets threshold (% percentage) of front end CPU based - /// keep-alive throttling. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndCpuBasedKeepAliveThrottlingPercentCpuThreshold")] - public double? FrontEndCpuBasedKeepAliveThrottlingPercentCpuThreshold { get; set; } - - /// - /// Gets or sets threshold (% percentage) of requests to throttle in - /// front end CPU based keep-alive throttling. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndCpuBasedKeepAliveThrottlingPercentRequestsToThrottle")] - public double? FrontEndCpuBasedKeepAliveThrottlingPercentRequestsToThrottle { get; set; } - - /// - /// Gets or sets interval (in second) of CPU monitor for front end CPU - /// based keep-alive throttling. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndCpuBasedKeepAliveThrottlingCpuMonitorIntervalInSeconds")] - public int? FrontEndCpuBasedKeepAliveThrottlingCpuMonitorIntervalInSeconds { get; set; } - - /// - /// Gets or sets switch of front end memory throttling. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndMemoryThrottlingEnabled")] - public bool? FrontEndMemoryThrottlingEnabled { get; set; } - - /// - /// Gets or sets maxium interval (in millisecond) between memory - /// samples of front end. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndMaxMillisecondsBetweenMemorySamples")] - public int? FrontEndMaxMillisecondsBetweenMemorySamples { get; set; } - - /// - /// Gets or sets front end memory throttle threshold settings. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndMemoryThrottleThresholdSettings")] - public string FrontEndMemoryThrottleThresholdSettings { get; set; } - - /// - /// Gets or sets front end minimum number of threads in thread pool. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndMinThreadPoolThreads")] - public int? FrontEndMinThreadPoolThreads { get; set; } - - /// - /// Gets or sets threshold of front end thread pool based keep-alive IO - /// completion. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndThreadPoolBasedKeepAliveIOCompletionThreshold")] - public int? FrontEndThreadPoolBasedKeepAliveIOCompletionThreshold { get; set; } - - /// - /// Gets or sets threshold of front end thread pool based keep-alive - /// worker thread. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndThreadPoolBasedKeepAliveWorkerThreadThreshold")] - public int? FrontEndThreadPoolBasedKeepAliveWorkerThreadThreshold { get; set; } - - /// - /// Gets or sets monitor interval (in seconds) of front end thread pool - /// based keep-alive monitor. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndThreadPoolBasedKeepAliveMonitorIntervalInSeconds")] - public int? FrontEndThreadPoolBasedKeepAliveMonitorIntervalInSeconds { get; set; } - - /// - /// Gets or sets percentage (%) of front end thread pool based - /// keep-alive. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndThreadPoolBasedKeepAlivePercentage")] - public double? FrontEndThreadPoolBasedKeepAlivePercentage { get; set; } - - /// - /// Gets or sets switch of whether front end uses SLA time in - /// availability. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndUseSlaTimeInAvailability")] - public bool? FrontEndUseSlaTimeInAvailability { get; set; } - - /// - /// Gets or sets the HTTPs port of the storage service front end. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndHttpsListenPort")] - public int? FrontEndHttpsListenPort { get; set; } - - /// - /// Gets or sets the HTTP port of the storage service front end. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndHttpListenPort")] - public int? FrontEndHttpListenPort { get; set; } - - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/Resource.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/Resource.cs index 5c79bf1a87e1..1a6a5d7f83bb 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/Resource.cs +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/Resource.cs @@ -13,8 +13,6 @@ namespace Microsoft.AzureStack.Management.Storage.Admin.Models using Microsoft.Rest; using Microsoft.Rest.Azure; using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; using System.Linq; /// @@ -35,16 +33,14 @@ public Resource() /// /// Resource ID. /// Resource Name. - /// Resource type. - /// Resource location. - /// Resource tags. - public Resource(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary)) + /// Resource Type. + /// Resource Location. + public Resource(string id = default(string), string name = default(string), string type = default(string), string location = default(string)) { Id = id; Name = name; Type = type; Location = location; - Tags = tags; CustomInit(); } @@ -66,22 +62,16 @@ public Resource() public string Name { get; private set; } /// - /// Gets resource type. + /// Gets resource Type. /// [JsonProperty(PropertyName = "type")] public string Type { get; private set; } /// - /// Gets resource location. + /// Gets resource Location. /// [JsonProperty(PropertyName = "location")] public string Location { get; private set; } - /// - /// Gets resource tags. - /// - [JsonProperty(PropertyName = "tags")] - public IDictionary Tags { get; private set; } - } } diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/Service.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/Service.cs deleted file mode 100644 index bbed9041ee79..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/Service.cs +++ /dev/null @@ -1,62 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin.Models -{ - using Newtonsoft.Json; - using System.Linq; - - /// - /// Storage service. - /// - public partial class Service - { - /// - /// Initializes a new instance of the Service class. - /// - public Service() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the Service class. - /// - /// Storage service version. - /// Health status of storage service. - /// Possible values include: 'Unknown', 'Healthy', 'Warning', - /// 'Critical' - public Service(string version = default(string), string healthStatus = default(string)) - { - Version = version; - HealthStatus = healthStatus; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets storage service version. - /// - [JsonProperty(PropertyName = "version")] - public string Version { get; set; } - - /// - /// Gets or sets health status of storage service. Possible values - /// include: 'Unknown', 'Healthy', 'Warning', 'Critical' - /// - [JsonProperty(PropertyName = "healthStatus")] - public string HealthStatus { get; set; } - - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/Settings.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/Settings.cs new file mode 100644 index 000000000000..f87131f3926b --- /dev/null +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/Settings.cs @@ -0,0 +1,62 @@ +// +// 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.AzureStack.Management.Storage.Admin.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Storage resource provider settings + /// + [Rest.Serialization.JsonTransformation] + public partial class Settings : Resource + { + /// + /// Initializes a new instance of the Settings class. + /// + public Settings() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the Settings class. + /// + /// Resource ID. + /// Resource Name. + /// Resource Type. + /// Resource Location. + /// The + /// number of days a deleted storage account is kept before being + /// permanently deleted. + public Settings(string id = default(string), string name = default(string), string type = default(string), string location = default(string), int? retentionPeriodForDeletedStorageAccountsInDays = default(int?)) + : base(id, name, type, location) + { + RetentionPeriodForDeletedStorageAccountsInDays = retentionPeriodForDeletedStorageAccountsInDays; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the number of days a deleted storage account is kept + /// before being permanently deleted. + /// + [JsonProperty(PropertyName = "properties.retentionPeriodForDeletedStorageAccountsInDays")] + public int? RetentionPeriodForDeletedStorageAccountsInDays { get; set; } + + } +} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/Share.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/Share.cs deleted file mode 100644 index d37929dfbeb4..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/Share.cs +++ /dev/null @@ -1,108 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin.Models -{ - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Storage share. - /// - [Rest.Serialization.JsonTransformation] - public partial class Share : Resource - { - /// - /// Initializes a new instance of the Share class. - /// - public Share() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the Share class. - /// - /// Resource ID. - /// Resource Name. - /// Resource type. - /// Resource location. - /// Resource tags. - /// The name of the storage share. - /// The UNC path to the storage share. - /// The total capacity of the storage share - /// in bytes. - /// The used capacity of the storage share - /// in bytes. - /// The free space of the storage share in - /// bytes. - /// The health status of the storage share. - /// Possible values include: 'Unknown', 'Healthy', 'Warning', - /// 'Critical' - public Share(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), string shareName = default(string), string uncPath = default(string), long? totalCapacity = default(long?), long? usedCapacity = default(long?), long? freeCapacity = default(long?), string healthStatus = default(string)) - : base(id, name, type, location, tags) - { - ShareName = shareName; - UncPath = uncPath; - TotalCapacity = totalCapacity; - UsedCapacity = usedCapacity; - FreeCapacity = freeCapacity; - HealthStatus = healthStatus; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets the name of the storage share. - /// - [JsonProperty(PropertyName = "properties.shareName")] - public string ShareName { get; private set; } - - /// - /// Gets the UNC path to the storage share. - /// - [JsonProperty(PropertyName = "properties.uncPath")] - public string UncPath { get; private set; } - - /// - /// Gets the total capacity of the storage share in bytes. - /// - [JsonProperty(PropertyName = "properties.totalCapacity")] - public long? TotalCapacity { get; private set; } - - /// - /// Gets the used capacity of the storage share in bytes. - /// - [JsonProperty(PropertyName = "properties.usedCapacity")] - public long? UsedCapacity { get; private set; } - - /// - /// Gets the free space of the storage share in bytes. - /// - [JsonProperty(PropertyName = "properties.freeCapacity")] - public long? FreeCapacity { get; private set; } - - /// - /// Gets the health status of the storage share. Possible values - /// include: 'Unknown', 'Healthy', 'Warning', 'Critical' - /// - [JsonProperty(PropertyName = "properties.healthStatus")] - public string HealthStatus { get; private set; } - - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/StorageAccount.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/StorageAccount.cs index 85a12a21923a..63b7c7808d88 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/StorageAccount.cs +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/StorageAccount.cs @@ -36,9 +36,8 @@ public StorageAccount() /// /// Resource ID. /// Resource Name. - /// Resource type. - /// Resource location. - /// Resource tags. + /// Resource Type. + /// Resource Location. /// Resource URI of storage account from /// tenant view. /// Storage account type. Possible values @@ -55,6 +54,8 @@ public StorageAccount() /// used during undelete operation. /// The primary location for the storage /// account. + /// The fault domain for the storage + /// account. /// The status of primary location of /// storage account. Possible values include: 'Available', /// 'Unavailable' @@ -64,22 +65,10 @@ public StorageAccount() /// tenant view. /// The name of resource group /// under which the storage account locates. - /// Current operation being performed on - /// Storage Account. Possible values include: 'None', 'Create', - /// 'Update', 'Suspend', 'Delete', 'Undelete' - /// The custom domain the user assigned to - /// this storage account. - /// The count of acquisitions - /// in the storage account. /// The date-time when the storage account /// was deleted. /// The status of storage account. Possible - /// values include: 'Active', 'Deleted', 'OutOfRetentionPeriod', - /// 'Recycled' - /// The time when the storage account is - /// undeleted. - /// The time when the storage account is - /// physically deleted. + /// values include: 'Active', 'Deleted' /// The permissions on the storage account. /// Possible values include: 'Empty', 'None', 'Read', 'Delete', /// 'Write', 'Full' @@ -87,11 +76,13 @@ public StorageAccount() /// visible to tenant. /// The internal state of storage /// account in WAC. Possible values include: 'None', 'Active', - /// 'Deleted', 'AboveQuota', 'Suspended', 'All' - /// Storage admin REST API - /// version. - public StorageAccount(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), string tenantViewId = default(string), string accountType = default(string), string provisioningState = default(string), IDictionary primaryEndpoints = default(IDictionary), string creationTime = default(string), string alternateName = default(string), string primaryLocation = default(string), string statusOfPrimary = default(string), string tenantSubscriptionId = default(string), string tenantStorageAccountName = default(string), string tenantResourceGroupName = default(string), string currentOperation = default(string), string customDomain = default(string), int? acquisitionOperationCount = default(int?), System.DateTime? deletedTime = default(System.DateTime?), string accountStatus = default(string), System.DateTime? recoveredTime = default(System.DateTime?), System.DateTime? recycledTime = default(System.DateTime?), string permissions = default(string), string accountId = default(string), string wacInternalState = default(string), string resourceAdminApiVersion = default(string)) - : base(id, name, type, location, tags) + /// 'Deleted', 'AboveQuota', 'Suspended', 'All', 'GcReadyState' + /// The storage encryption setting + /// Storage account supports + /// https traffic only or not + /// Resource tags. + public StorageAccount(string id = default(string), string name = default(string), string type = default(string), string location = default(string), string tenantViewId = default(string), string accountType = default(string), string provisioningState = default(string), IDictionary primaryEndpoints = default(IDictionary), string creationTime = default(string), string alternateName = default(string), string primaryLocation = default(string), string faultDomain = default(string), string statusOfPrimary = default(string), string tenantSubscriptionId = default(string), string tenantStorageAccountName = default(string), string tenantResourceGroupName = default(string), System.DateTime? deletedTime = default(System.DateTime?), string accountStatus = default(string), string permissions = default(string), string accountId = default(string), string wacInternalState = default(string), StorageEncryption encryption = default(StorageEncryption), bool? supportsHttpsTrafficOnly = default(bool?), IDictionary tags = default(IDictionary)) + : base(id, name, type, location) { TenantViewId = tenantViewId; AccountType = accountType; @@ -100,21 +91,19 @@ public StorageAccount() CreationTime = creationTime; AlternateName = alternateName; PrimaryLocation = primaryLocation; + FaultDomain = faultDomain; StatusOfPrimary = statusOfPrimary; TenantSubscriptionId = tenantSubscriptionId; TenantStorageAccountName = tenantStorageAccountName; TenantResourceGroupName = tenantResourceGroupName; - CurrentOperation = currentOperation; - CustomDomain = customDomain; - AcquisitionOperationCount = acquisitionOperationCount; DeletedTime = deletedTime; AccountStatus = accountStatus; - RecoveredTime = recoveredTime; - RecycledTime = recycledTime; Permissions = permissions; AccountId = accountId; WacInternalState = wacInternalState; - ResourceAdminApiVersion = resourceAdminApiVersion; + Encryption = encryption; + SupportsHttpsTrafficOnly = supportsHttpsTrafficOnly; + Tags = tags; CustomInit(); } @@ -169,6 +158,12 @@ public StorageAccount() [JsonProperty(PropertyName = "properties.primaryLocation")] public string PrimaryLocation { get; private set; } + /// + /// Gets the fault domain for the storage account. + /// + [JsonProperty(PropertyName = "properties.faultDomain")] + public string FaultDomain { get; private set; } + /// /// Gets the status of primary location of storage account. Possible /// values include: 'Available', 'Unavailable' @@ -196,26 +191,6 @@ public StorageAccount() [JsonProperty(PropertyName = "properties.tenantResourceGroupName")] public string TenantResourceGroupName { get; private set; } - /// - /// Gets current operation being performed on Storage Account. Possible - /// values include: 'None', 'Create', 'Update', 'Suspend', 'Delete', - /// 'Undelete' - /// - [JsonProperty(PropertyName = "properties.currentOperation")] - public string CurrentOperation { get; private set; } - - /// - /// Gets the custom domain the user assigned to this storage account. - /// - [JsonProperty(PropertyName = "properties.customDomain")] - public string CustomDomain { get; private set; } - - /// - /// Gets the count of acquisitions in the storage account. - /// - [JsonProperty(PropertyName = "properties.acquisitionOperationCount")] - public int? AcquisitionOperationCount { get; private set; } - /// /// Gets the date-time when the storage account was deleted. /// @@ -224,23 +199,11 @@ public StorageAccount() /// /// Gets or sets the status of storage account. Possible values - /// include: 'Active', 'Deleted', 'OutOfRetentionPeriod', 'Recycled' + /// include: 'Active', 'Deleted' /// [JsonProperty(PropertyName = "properties.accountStatus")] public string AccountStatus { get; set; } - /// - /// Gets the time when the storage account is undeleted. - /// - [JsonProperty(PropertyName = "properties.recoveredTime")] - public System.DateTime? RecoveredTime { get; private set; } - - /// - /// Gets the time when the storage account is physically deleted. - /// - [JsonProperty(PropertyName = "properties.recycledTime")] - public System.DateTime? RecycledTime { get; private set; } - /// /// Gets the permissions on the storage account. Possible values /// include: 'Empty', 'None', 'Read', 'Delete', 'Write', 'Full' @@ -257,16 +220,28 @@ public StorageAccount() /// /// Gets the internal state of storage account in WAC. Possible values /// include: 'None', 'Active', 'Deleted', 'AboveQuota', 'Suspended', - /// 'All' + /// 'All', 'GcReadyState' /// [JsonProperty(PropertyName = "properties.wacInternalState")] public string WacInternalState { get; private set; } /// - /// Gets storage admin REST API version. + /// Gets the storage encryption setting + /// + [JsonProperty(PropertyName = "properties.encryption")] + public StorageEncryption Encryption { get; private set; } + + /// + /// Gets storage account supports https traffic only or not + /// + [JsonProperty(PropertyName = "properties.supportsHttpsTrafficOnly")] + public bool? SupportsHttpsTrafficOnly { get; private set; } + + /// + /// Gets resource tags. /// - [JsonProperty(PropertyName = "properties.resourceAdminApiVersion")] - public string ResourceAdminApiVersion { get; private set; } + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; private set; } } } diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/StorageAccountOperation.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/StorageAccountOperation.cs deleted file mode 100644 index dee013ea977e..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/StorageAccountOperation.cs +++ /dev/null @@ -1,26 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin.Models -{ - - /// - /// Defines values for StorageAccountOperation. - /// - public static class StorageAccountOperation - { - public const string None = "None"; - public const string Create = "Create"; - public const string Update = "Update"; - public const string Suspend = "Suspend"; - public const string Delete = "Delete"; - public const string Undelete = "Undelete"; - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/StorageAccountStatus.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/StorageAccountStatus.cs index 7874fe9e0a8c..b2767b1a8e0a 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/StorageAccountStatus.cs +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/StorageAccountStatus.cs @@ -18,7 +18,5 @@ public static class StorageAccountStatus { public const string Active = "Active"; public const string Deleted = "Deleted"; - public const string OutOfRetentionPeriod = "OutOfRetentionPeriod"; - public const string Recycled = "Recycled"; } } diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/StorageEncryption.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/StorageEncryption.cs new file mode 100644 index 000000000000..f0352a4508a0 --- /dev/null +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/StorageEncryption.cs @@ -0,0 +1,62 @@ +// +// 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.AzureStack.Management.Storage.Admin.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Storage encryption setting + /// + public partial class StorageEncryption + { + /// + /// Initializes a new instance of the StorageEncryption class. + /// + public StorageEncryption() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the StorageEncryption class. + /// + /// Services for which encryption setting is + /// mentioned + /// Encryption keySource. Possible values + /// include: 'Microsoft.Storage' + public StorageEncryption(StorageEncryptionServices services = default(StorageEncryptionServices), string keySource = default(string)) + { + Services = services; + KeySource = keySource; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets services for which encryption setting is mentioned + /// + [JsonProperty(PropertyName = "services")] + public StorageEncryptionServices Services { get; private set; } + + /// + /// Gets encryption keySource. Possible values include: + /// 'Microsoft.Storage' + /// + [JsonProperty(PropertyName = "keySource")] + public string KeySource { get; private set; } + + } +} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/StorageEncryptionServices.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/StorageEncryptionServices.cs new file mode 100644 index 000000000000..6da9fdab055a --- /dev/null +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/StorageEncryptionServices.cs @@ -0,0 +1,67 @@ +// +// 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.AzureStack.Management.Storage.Admin.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Services for which encryption setting is mentioned. + /// + public partial class StorageEncryptionServices + { + /// + /// Initializes a new instance of the StorageEncryptionServices class. + /// + public StorageEncryptionServices() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the StorageEncryptionServices class. + /// + /// Blob service. + /// Table service. + /// Queue service + public StorageEncryptionServices(StorageEncryptionSetting blob = default(StorageEncryptionSetting), StorageEncryptionSetting table = default(StorageEncryptionSetting), StorageEncryptionSetting queue = default(StorageEncryptionSetting)) + { + Blob = blob; + Table = table; + Queue = queue; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets blob service. + /// + [JsonProperty(PropertyName = "blob")] + public StorageEncryptionSetting Blob { get; private set; } + + /// + /// Gets table service. + /// + [JsonProperty(PropertyName = "table")] + public StorageEncryptionSetting Table { get; private set; } + + /// + /// Gets queue service + /// + [JsonProperty(PropertyName = "queue")] + public StorageEncryptionSetting Queue { get; private set; } + + } +} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/StorageEncryptionSetting.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/StorageEncryptionSetting.cs new file mode 100644 index 000000000000..fa487aa8c09d --- /dev/null +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/StorageEncryptionSetting.cs @@ -0,0 +1,62 @@ +// +// 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.AzureStack.Management.Storage.Admin.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Storage Encryption setting + /// + public partial class StorageEncryptionSetting + { + /// + /// Initializes a new instance of the StorageEncryptionSetting class. + /// + public StorageEncryptionSetting() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the StorageEncryptionSetting class. + /// + /// Bool to indicate whether enabled or + /// not. + /// A rough estimate of the date/time + /// when the encryption was last enabled by the user. + public StorageEncryptionSetting(bool? enabled = default(bool?), string lastEnabledTime = default(string)) + { + Enabled = enabled; + LastEnabledTime = lastEnabledTime; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets bool to indicate whether enabled or not. + /// + [JsonProperty(PropertyName = "enabled")] + public bool? Enabled { get; private set; } + + /// + /// Gets a rough estimate of the date/time when the encryption was last + /// enabled by the user. + /// + [JsonProperty(PropertyName = "lastEnabledTime")] + public string LastEnabledTime { get; private set; } + + } +} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/StorageQuota.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/StorageQuota.cs index a38777118afd..cd364b807903 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/StorageQuota.cs +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/StorageQuota.cs @@ -13,8 +13,6 @@ namespace Microsoft.AzureStack.Management.Storage.Admin.Models using Microsoft.Rest; using Microsoft.Rest.Serialization; using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; using System.Linq; /// @@ -36,14 +34,13 @@ public StorageQuota() /// /// Resource ID. /// Resource Name. - /// Resource type. - /// Resource location. - /// Resource tags. + /// Resource Type. + /// Resource Location. /// Total number of storage /// accounts. - /// Maxium capacity (GB). - public StorageQuota(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), int? numberOfStorageAccounts = default(int?), int? capacityInGb = default(int?)) - : base(id, name, type, location, tags) + /// Maximum capacity (GB). + public StorageQuota(string id = default(string), string name = default(string), string type = default(string), string location = default(string), int? numberOfStorageAccounts = default(int?), int? capacityInGb = default(int?)) + : base(id, name, type, location) { NumberOfStorageAccounts = numberOfStorageAccounts; CapacityInGb = capacityInGb; @@ -62,7 +59,7 @@ public StorageQuota() public int? NumberOfStorageAccounts { get; set; } /// - /// Gets or sets maxium capacity (GB). + /// Gets or sets maximum capacity (GB). /// [JsonProperty(PropertyName = "properties.capacityInGb")] public int? CapacityInGb { get; set; } diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/StorageQuotaList.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/StorageQuotaList.cs new file mode 100644 index 000000000000..577fe962570d --- /dev/null +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/StorageQuotaList.cs @@ -0,0 +1,53 @@ +// +// 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.AzureStack.Management.Storage.Admin.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Pageable list of storage quotas. + /// + public partial class StorageQuotaList + { + /// + /// Initializes a new instance of the StorageQuotaList class. + /// + public StorageQuotaList() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the StorageQuotaList class. + /// + /// List of storage quotas. + public StorageQuotaList(IList value = default(IList)) + { + Value = value; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets list of storage quotas. + /// + [JsonProperty(PropertyName = "value")] + public IList Value { get; set; } + + } +} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/TableService.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/TableService.cs deleted file mode 100644 index aecf75345695..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/TableService.cs +++ /dev/null @@ -1,237 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin.Models -{ - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Table service. - /// - [Rest.Serialization.JsonTransformation] - public partial class TableService : Resource - { - /// - /// Initializes a new instance of the TableService class. - /// - public TableService() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the TableService class. - /// - /// Resource ID. - /// Resource Name. - /// Resource type. - /// Resource location. - /// Resource tags. - /// Storage service version. - /// Health status of storage service. - /// Possible values include: 'Unknown', 'Healthy', 'Warning', - /// 'Critical' - /// Front end callback - /// threads count. - /// Switch of - /// front end CPU based keep-alive throttling. - /// Threshold - /// (% percentage) of front end CPU based keep-alive - /// throttling. - /// Threshold - /// (% percentage) of requests to throttle in front end CPU based - /// keep-alive throttling. - /// Interval - /// (in second) of CPU monitor for front end CPU based keep-alive - /// throttling. - /// Switch of front end - /// memory throttling. - /// Maxium - /// interval (in millisecond) between memory samples of front - /// end. - /// Front end - /// memory throttle threshold settings. - /// Front end minimum number - /// of threads in thread pool. - /// Threshold - /// of front end thread pool based keep-alive IO completion. - /// Threshold - /// of front end thread pool based keep-alive worker thread. - /// Monitor - /// interval (in seconds) of front end thread pool based keep-alive - /// monitor. - /// Percentage - /// (%) of front end thread pool based keep-alive. - /// Switch of whether - /// front end uses SLA time in availability. - /// The HTTPs port of the storage - /// service front end. - /// The HTTP port of the storage - /// service front end. - public TableService(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), string version = default(string), string healthStatus = default(string), int? frontEndCallbackThreadsCount = default(int?), bool? frontEndCpuBasedKeepAliveThrottlingEnabled = default(bool?), double? frontEndCpuBasedKeepAliveThrottlingPercentCpuThreshold = default(double?), double? frontEndCpuBasedKeepAliveThrottlingPercentRequestsToThrottle = default(double?), int? frontEndCpuBasedKeepAliveThrottlingCpuMonitorIntervalInSeconds = default(int?), bool? frontEndMemoryThrottlingEnabled = default(bool?), int? frontEndMaxMillisecondsBetweenMemorySamples = default(int?), string frontEndMemoryThrottleThresholdSettings = default(string), int? frontEndMinThreadPoolThreads = default(int?), int? frontEndThreadPoolBasedKeepAliveIOCompletionThreshold = default(int?), int? frontEndThreadPoolBasedKeepAliveWorkerThreadThreshold = default(int?), int? frontEndThreadPoolBasedKeepAliveMonitorIntervalInSeconds = default(int?), double? frontEndThreadPoolBasedKeepAlivePercentage = default(double?), bool? frontEndUseSlaTimeInAvailability = default(bool?), int? frontEndHttpsListenPort = default(int?), int? frontEndHttpListenPort = default(int?)) - : base(id, name, type, location, tags) - { - Version = version; - HealthStatus = healthStatus; - FrontEndCallbackThreadsCount = frontEndCallbackThreadsCount; - FrontEndCpuBasedKeepAliveThrottlingEnabled = frontEndCpuBasedKeepAliveThrottlingEnabled; - FrontEndCpuBasedKeepAliveThrottlingPercentCpuThreshold = frontEndCpuBasedKeepAliveThrottlingPercentCpuThreshold; - FrontEndCpuBasedKeepAliveThrottlingPercentRequestsToThrottle = frontEndCpuBasedKeepAliveThrottlingPercentRequestsToThrottle; - FrontEndCpuBasedKeepAliveThrottlingCpuMonitorIntervalInSeconds = frontEndCpuBasedKeepAliveThrottlingCpuMonitorIntervalInSeconds; - FrontEndMemoryThrottlingEnabled = frontEndMemoryThrottlingEnabled; - FrontEndMaxMillisecondsBetweenMemorySamples = frontEndMaxMillisecondsBetweenMemorySamples; - FrontEndMemoryThrottleThresholdSettings = frontEndMemoryThrottleThresholdSettings; - FrontEndMinThreadPoolThreads = frontEndMinThreadPoolThreads; - FrontEndThreadPoolBasedKeepAliveIOCompletionThreshold = frontEndThreadPoolBasedKeepAliveIOCompletionThreshold; - FrontEndThreadPoolBasedKeepAliveWorkerThreadThreshold = frontEndThreadPoolBasedKeepAliveWorkerThreadThreshold; - FrontEndThreadPoolBasedKeepAliveMonitorIntervalInSeconds = frontEndThreadPoolBasedKeepAliveMonitorIntervalInSeconds; - FrontEndThreadPoolBasedKeepAlivePercentage = frontEndThreadPoolBasedKeepAlivePercentage; - FrontEndUseSlaTimeInAvailability = frontEndUseSlaTimeInAvailability; - FrontEndHttpsListenPort = frontEndHttpsListenPort; - FrontEndHttpListenPort = frontEndHttpListenPort; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets storage service version. - /// - [JsonProperty(PropertyName = "properties.version")] - public string Version { get; set; } - - /// - /// Gets or sets health status of storage service. Possible values - /// include: 'Unknown', 'Healthy', 'Warning', 'Critical' - /// - [JsonProperty(PropertyName = "properties.healthStatus")] - public string HealthStatus { get; set; } - - /// - /// Gets or sets front end callback threads count. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndCallbackThreadsCount")] - public int? FrontEndCallbackThreadsCount { get; set; } - - /// - /// Gets or sets switch of front end CPU based keep-alive throttling. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndCpuBasedKeepAliveThrottlingEnabled")] - public bool? FrontEndCpuBasedKeepAliveThrottlingEnabled { get; set; } - - /// - /// Gets or sets threshold (% percentage) of front end CPU based - /// keep-alive throttling. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndCpuBasedKeepAliveThrottlingPercentCpuThreshold")] - public double? FrontEndCpuBasedKeepAliveThrottlingPercentCpuThreshold { get; set; } - - /// - /// Gets or sets threshold (% percentage) of requests to throttle in - /// front end CPU based keep-alive throttling. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndCpuBasedKeepAliveThrottlingPercentRequestsToThrottle")] - public double? FrontEndCpuBasedKeepAliveThrottlingPercentRequestsToThrottle { get; set; } - - /// - /// Gets or sets interval (in second) of CPU monitor for front end CPU - /// based keep-alive throttling. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndCpuBasedKeepAliveThrottlingCpuMonitorIntervalInSeconds")] - public int? FrontEndCpuBasedKeepAliveThrottlingCpuMonitorIntervalInSeconds { get; set; } - - /// - /// Gets or sets switch of front end memory throttling. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndMemoryThrottlingEnabled")] - public bool? FrontEndMemoryThrottlingEnabled { get; set; } - - /// - /// Gets or sets maxium interval (in millisecond) between memory - /// samples of front end. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndMaxMillisecondsBetweenMemorySamples")] - public int? FrontEndMaxMillisecondsBetweenMemorySamples { get; set; } - - /// - /// Gets or sets front end memory throttle threshold settings. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndMemoryThrottleThresholdSettings")] - public string FrontEndMemoryThrottleThresholdSettings { get; set; } - - /// - /// Gets or sets front end minimum number of threads in thread pool. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndMinThreadPoolThreads")] - public int? FrontEndMinThreadPoolThreads { get; set; } - - /// - /// Gets or sets threshold of front end thread pool based keep-alive IO - /// completion. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndThreadPoolBasedKeepAliveIOCompletionThreshold")] - public int? FrontEndThreadPoolBasedKeepAliveIOCompletionThreshold { get; set; } - - /// - /// Gets or sets threshold of front end thread pool based keep-alive - /// worker thread. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndThreadPoolBasedKeepAliveWorkerThreadThreshold")] - public int? FrontEndThreadPoolBasedKeepAliveWorkerThreadThreshold { get; set; } - - /// - /// Gets or sets monitor interval (in seconds) of front end thread pool - /// based keep-alive monitor. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndThreadPoolBasedKeepAliveMonitorIntervalInSeconds")] - public int? FrontEndThreadPoolBasedKeepAliveMonitorIntervalInSeconds { get; set; } - - /// - /// Gets or sets percentage (%) of front end thread pool based - /// keep-alive. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndThreadPoolBasedKeepAlivePercentage")] - public double? FrontEndThreadPoolBasedKeepAlivePercentage { get; set; } - - /// - /// Gets or sets switch of whether front end uses SLA time in - /// availability. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndUseSlaTimeInAvailability")] - public bool? FrontEndUseSlaTimeInAvailability { get; set; } - - /// - /// Gets or sets the HTTPs port of the storage service front end. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndHttpsListenPort")] - public int? FrontEndHttpsListenPort { get; set; } - - /// - /// Gets or sets the HTTP port of the storage service front end. - /// - [JsonProperty(PropertyName = "properties.settings.frontEndHttpListenPort")] - public int? FrontEndHttpListenPort { get; set; } - - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/UndeleteStorageAccount.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/UndeleteStorageAccount.cs new file mode 100644 index 000000000000..89ba7a340d2d --- /dev/null +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/UndeleteStorageAccount.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.AzureStack.Management.Storage.Admin.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Undelete storage account information. + /// + public partial class UndeleteStorageAccount + { + /// + /// Initializes a new instance of the UndeleteStorageAccount class. + /// + public UndeleteStorageAccount() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the UndeleteStorageAccount class. + /// + /// The internal wac id for storage + /// account. + /// The new account name for the restored + /// account if defined. + public UndeleteStorageAccount(string accountId = default(string), string newAccountName = default(string)) + { + AccountId = accountId; + NewAccountName = newAccountName; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the internal wac id for storage account. + /// + [JsonProperty(PropertyName = "accountId")] + public string AccountId { get; private set; } + + /// + /// Gets the new account name for the restored account if defined. + /// + [JsonProperty(PropertyName = "newAccountName")] + public string NewAccountName { get; private set; } + + } +} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/WacAccountStates.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/WacAccountStates.cs index 355f30294a18..65c7866a7d21 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/WacAccountStates.cs +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/WacAccountStates.cs @@ -22,5 +22,6 @@ public static class WacAccountStates public const string AboveQuota = "AboveQuota"; public const string Suspended = "Suspended"; public const string All = "All"; + public const string GcReadyState = "GcReadyState"; } } diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/WritableServiceSettings.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/WritableServiceSettings.cs deleted file mode 100644 index daecf0c7fd1e..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/WritableServiceSettings.cs +++ /dev/null @@ -1,101 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin.Models -{ - using Newtonsoft.Json; - using System.Linq; - - /// - /// Settings of storage services. - /// - public partial class WritableServiceSettings : WritableSettings - { - /// - /// Initializes a new instance of the WritableServiceSettings class. - /// - public WritableServiceSettings() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the WritableServiceSettings class. - /// - /// Front end callback - /// threads count. - /// Switch of - /// front end CPU based keep-alive throttling. - /// Threshold - /// (% percentage) of front end CPU based keep-alive - /// throttling. - /// Threshold - /// (% percentage) of requests to throttle in front end CPU based - /// keep-alive throttling. - /// Interval - /// (in second) of CPU monitor for front end CPU based keep-alive - /// throttling. - /// Switch of front end - /// memory throttling. - /// Maxium - /// interval (in millisecond) between memory samples of front - /// end. - /// Front end - /// memory throttle threshold settings. - /// Front end minimum number - /// of threads in thread pool. - /// Threshold - /// of front end thread pool based keep-alive IO completion. - /// Threshold - /// of front end thread pool based keep-alive worker thread. - /// Monitor - /// interval (in seconds) of front end thread pool based keep-alive - /// monitor. - /// Percentage - /// (%) of front end thread pool based keep-alive. - /// Switch of whether - /// front end uses SLA time in availability. - /// The HTTPs port of the storage - /// service front end. - /// The HTTP port of the storage - /// service front end. - public WritableServiceSettings(int? frontEndCallbackThreadsCount = default(int?), bool? frontEndCpuBasedKeepAliveThrottlingEnabled = default(bool?), double? frontEndCpuBasedKeepAliveThrottlingPercentCpuThreshold = default(double?), double? frontEndCpuBasedKeepAliveThrottlingPercentRequestsToThrottle = default(double?), int? frontEndCpuBasedKeepAliveThrottlingCpuMonitorIntervalInSeconds = default(int?), bool? frontEndMemoryThrottlingEnabled = default(bool?), int? frontEndMaxMillisecondsBetweenMemorySamples = default(int?), string frontEndMemoryThrottleThresholdSettings = default(string), int? frontEndMinThreadPoolThreads = default(int?), int? frontEndThreadPoolBasedKeepAliveIOCompletionThreshold = default(int?), int? frontEndThreadPoolBasedKeepAliveWorkerThreadThreshold = default(int?), int? frontEndThreadPoolBasedKeepAliveMonitorIntervalInSeconds = default(int?), double? frontEndThreadPoolBasedKeepAlivePercentage = default(double?), bool? frontEndUseSlaTimeInAvailability = default(bool?), int? frontEndHttpsListenPort = default(int?), int? frontEndHttpListenPort = default(int?)) - : base(frontEndCallbackThreadsCount, frontEndCpuBasedKeepAliveThrottlingEnabled, frontEndCpuBasedKeepAliveThrottlingPercentCpuThreshold, frontEndCpuBasedKeepAliveThrottlingPercentRequestsToThrottle, frontEndCpuBasedKeepAliveThrottlingCpuMonitorIntervalInSeconds, frontEndMemoryThrottlingEnabled, frontEndMaxMillisecondsBetweenMemorySamples, frontEndMemoryThrottleThresholdSettings, frontEndMinThreadPoolThreads, frontEndThreadPoolBasedKeepAliveIOCompletionThreshold, frontEndThreadPoolBasedKeepAliveWorkerThreadThreshold, frontEndThreadPoolBasedKeepAliveMonitorIntervalInSeconds, frontEndThreadPoolBasedKeepAlivePercentage, frontEndUseSlaTimeInAvailability) - { - FrontEndHttpsListenPort = frontEndHttpsListenPort; - FrontEndHttpListenPort = frontEndHttpListenPort; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets the HTTPs port of the storage service front end. - /// - [JsonProperty(PropertyName = "frontEndHttpsListenPort")] - public int? FrontEndHttpsListenPort { get; set; } - - /// - /// Gets or sets the HTTP port of the storage service front end. - /// - [JsonProperty(PropertyName = "frontEndHttpListenPort")] - public int? FrontEndHttpListenPort { get; set; } - - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/WritableSettings.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/WritableSettings.cs deleted file mode 100644 index 23cd32de697f..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Models/WritableSettings.cs +++ /dev/null @@ -1,189 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin.Models -{ - using Newtonsoft.Json; - using System.Linq; - - /// - /// Storage service settings. - /// - public partial class WritableSettings - { - /// - /// Initializes a new instance of the WritableSettings class. - /// - public WritableSettings() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the WritableSettings class. - /// - /// Front end callback - /// threads count. - /// Switch of - /// front end CPU based keep-alive throttling. - /// Threshold - /// (% percentage) of front end CPU based keep-alive - /// throttling. - /// Threshold - /// (% percentage) of requests to throttle in front end CPU based - /// keep-alive throttling. - /// Interval - /// (in second) of CPU monitor for front end CPU based keep-alive - /// throttling. - /// Switch of front end - /// memory throttling. - /// Maxium - /// interval (in millisecond) between memory samples of front - /// end. - /// Front end - /// memory throttle threshold settings. - /// Front end minimum number - /// of threads in thread pool. - /// Threshold - /// of front end thread pool based keep-alive IO completion. - /// Threshold - /// of front end thread pool based keep-alive worker thread. - /// Monitor - /// interval (in seconds) of front end thread pool based keep-alive - /// monitor. - /// Percentage - /// (%) of front end thread pool based keep-alive. - /// Switch of whether - /// front end uses SLA time in availability. - public WritableSettings(int? frontEndCallbackThreadsCount = default(int?), bool? frontEndCpuBasedKeepAliveThrottlingEnabled = default(bool?), double? frontEndCpuBasedKeepAliveThrottlingPercentCpuThreshold = default(double?), double? frontEndCpuBasedKeepAliveThrottlingPercentRequestsToThrottle = default(double?), int? frontEndCpuBasedKeepAliveThrottlingCpuMonitorIntervalInSeconds = default(int?), bool? frontEndMemoryThrottlingEnabled = default(bool?), int? frontEndMaxMillisecondsBetweenMemorySamples = default(int?), string frontEndMemoryThrottleThresholdSettings = default(string), int? frontEndMinThreadPoolThreads = default(int?), int? frontEndThreadPoolBasedKeepAliveIOCompletionThreshold = default(int?), int? frontEndThreadPoolBasedKeepAliveWorkerThreadThreshold = default(int?), int? frontEndThreadPoolBasedKeepAliveMonitorIntervalInSeconds = default(int?), double? frontEndThreadPoolBasedKeepAlivePercentage = default(double?), bool? frontEndUseSlaTimeInAvailability = default(bool?)) - { - FrontEndCallbackThreadsCount = frontEndCallbackThreadsCount; - FrontEndCpuBasedKeepAliveThrottlingEnabled = frontEndCpuBasedKeepAliveThrottlingEnabled; - FrontEndCpuBasedKeepAliveThrottlingPercentCpuThreshold = frontEndCpuBasedKeepAliveThrottlingPercentCpuThreshold; - FrontEndCpuBasedKeepAliveThrottlingPercentRequestsToThrottle = frontEndCpuBasedKeepAliveThrottlingPercentRequestsToThrottle; - FrontEndCpuBasedKeepAliveThrottlingCpuMonitorIntervalInSeconds = frontEndCpuBasedKeepAliveThrottlingCpuMonitorIntervalInSeconds; - FrontEndMemoryThrottlingEnabled = frontEndMemoryThrottlingEnabled; - FrontEndMaxMillisecondsBetweenMemorySamples = frontEndMaxMillisecondsBetweenMemorySamples; - FrontEndMemoryThrottleThresholdSettings = frontEndMemoryThrottleThresholdSettings; - FrontEndMinThreadPoolThreads = frontEndMinThreadPoolThreads; - FrontEndThreadPoolBasedKeepAliveIOCompletionThreshold = frontEndThreadPoolBasedKeepAliveIOCompletionThreshold; - FrontEndThreadPoolBasedKeepAliveWorkerThreadThreshold = frontEndThreadPoolBasedKeepAliveWorkerThreadThreshold; - FrontEndThreadPoolBasedKeepAliveMonitorIntervalInSeconds = frontEndThreadPoolBasedKeepAliveMonitorIntervalInSeconds; - FrontEndThreadPoolBasedKeepAlivePercentage = frontEndThreadPoolBasedKeepAlivePercentage; - FrontEndUseSlaTimeInAvailability = frontEndUseSlaTimeInAvailability; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets front end callback threads count. - /// - [JsonProperty(PropertyName = "frontEndCallbackThreadsCount")] - public int? FrontEndCallbackThreadsCount { get; set; } - - /// - /// Gets or sets switch of front end CPU based keep-alive throttling. - /// - [JsonProperty(PropertyName = "frontEndCpuBasedKeepAliveThrottlingEnabled")] - public bool? FrontEndCpuBasedKeepAliveThrottlingEnabled { get; set; } - - /// - /// Gets or sets threshold (% percentage) of front end CPU based - /// keep-alive throttling. - /// - [JsonProperty(PropertyName = "frontEndCpuBasedKeepAliveThrottlingPercentCpuThreshold")] - public double? FrontEndCpuBasedKeepAliveThrottlingPercentCpuThreshold { get; set; } - - /// - /// Gets or sets threshold (% percentage) of requests to throttle in - /// front end CPU based keep-alive throttling. - /// - [JsonProperty(PropertyName = "frontEndCpuBasedKeepAliveThrottlingPercentRequestsToThrottle")] - public double? FrontEndCpuBasedKeepAliveThrottlingPercentRequestsToThrottle { get; set; } - - /// - /// Gets or sets interval (in second) of CPU monitor for front end CPU - /// based keep-alive throttling. - /// - [JsonProperty(PropertyName = "frontEndCpuBasedKeepAliveThrottlingCpuMonitorIntervalInSeconds")] - public int? FrontEndCpuBasedKeepAliveThrottlingCpuMonitorIntervalInSeconds { get; set; } - - /// - /// Gets or sets switch of front end memory throttling. - /// - [JsonProperty(PropertyName = "frontEndMemoryThrottlingEnabled")] - public bool? FrontEndMemoryThrottlingEnabled { get; set; } - - /// - /// Gets or sets maxium interval (in millisecond) between memory - /// samples of front end. - /// - [JsonProperty(PropertyName = "frontEndMaxMillisecondsBetweenMemorySamples")] - public int? FrontEndMaxMillisecondsBetweenMemorySamples { get; set; } - - /// - /// Gets or sets front end memory throttle threshold settings. - /// - [JsonProperty(PropertyName = "frontEndMemoryThrottleThresholdSettings")] - public string FrontEndMemoryThrottleThresholdSettings { get; set; } - - /// - /// Gets or sets front end minimum number of threads in thread pool. - /// - [JsonProperty(PropertyName = "frontEndMinThreadPoolThreads")] - public int? FrontEndMinThreadPoolThreads { get; set; } - - /// - /// Gets or sets threshold of front end thread pool based keep-alive IO - /// completion. - /// - [JsonProperty(PropertyName = "frontEndThreadPoolBasedKeepAliveIOCompletionThreshold")] - public int? FrontEndThreadPoolBasedKeepAliveIOCompletionThreshold { get; set; } - - /// - /// Gets or sets threshold of front end thread pool based keep-alive - /// worker thread. - /// - [JsonProperty(PropertyName = "frontEndThreadPoolBasedKeepAliveWorkerThreadThreshold")] - public int? FrontEndThreadPoolBasedKeepAliveWorkerThreadThreshold { get; set; } - - /// - /// Gets or sets monitor interval (in seconds) of front end thread pool - /// based keep-alive monitor. - /// - [JsonProperty(PropertyName = "frontEndThreadPoolBasedKeepAliveMonitorIntervalInSeconds")] - public int? FrontEndThreadPoolBasedKeepAliveMonitorIntervalInSeconds { get; set; } - - /// - /// Gets or sets percentage (%) of front end thread pool based - /// keep-alive. - /// - [JsonProperty(PropertyName = "frontEndThreadPoolBasedKeepAlivePercentage")] - public double? FrontEndThreadPoolBasedKeepAlivePercentage { get; set; } - - /// - /// Gets or sets switch of whether front end uses SLA time in - /// availability. - /// - [JsonProperty(PropertyName = "frontEndUseSlaTimeInAvailability")] - public bool? FrontEndUseSlaTimeInAvailability { get; set; } - - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Operations.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Operations.cs index 1e5c3fe63975..a65d2740d5d9 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Operations.cs +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/Operations.cs @@ -59,7 +59,7 @@ internal Operations(StorageAdminClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -74,7 +74,7 @@ internal Operations(StorageAdminClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.ApiVersion == null) { @@ -158,14 +158,13 @@ internal Operations(StorageAdminClient client) string _responseContent = null; if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(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); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -175,183 +174,6 @@ internal Operations(StorageAdminClient client) } 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 the list of support rest 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); @@ -364,7 +186,7 @@ internal Operations(StorageAdminClient 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")) @@ -377,7 +199,7 @@ internal Operations(StorageAdminClient 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) { diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/OperationsExtensions.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/OperationsExtensions.cs index 076abefc728d..59d81dbe9a79 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/OperationsExtensions.cs +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/OperationsExtensions.cs @@ -27,7 +27,7 @@ public static partial class OperationsExtensions /// /// The operations group for this extension method. /// - public static IPage List(this IOperations operations) + public static OperationList List(this IOperations operations) { return operations.ListAsync().GetAwaiter().GetResult(); } @@ -41,7 +41,7 @@ public static IPage List(this IOperations operations) /// /// The cancellation token. /// - public static async Task> ListAsync(this IOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListAsync(this IOperations operations, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) { @@ -49,39 +49,5 @@ public static IPage List(this IOperations operations) } } - /// - /// Get the list of support rest 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(); - } - - /// - /// Get the list of support rest 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/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/QueueServicesOperations.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/QueueServicesOperations.cs deleted file mode 100644 index 24e10ca41b91..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/QueueServicesOperations.cs +++ /dev/null @@ -1,997 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin -{ - 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; - - /// - /// QueueServicesOperations operations. - /// - internal partial class QueueServicesOperations : IServiceOperations, IQueueServicesOperations - { - /// - /// Initializes a new instance of the QueueServicesOperations class. - /// - /// - /// Reference to the service client. - /// - /// - /// Thrown when a required parameter is null - /// - internal QueueServicesOperations(StorageAdminClient client) - { - if (client == null) - { - throw new System.ArgumentNullException("client"); - } - Client = client; - } - - /// - /// Gets a reference to the StorageAdminClient - /// - public StorageAdminClient Client { get; private set; } - - /// - /// Returns the queue service. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// 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 farmId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (farmId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "farmId"); - } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - string serviceType = "default"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("farmId", farmId); - tracingParameters.Add("serviceType", serviceType); - 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.Storage.Admin/farms/{farmId}/queueservices/{serviceType}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{farmId}", System.Uri.EscapeDataString(farmId)); - _url = _url.Replace("{serviceType}", System.Uri.EscapeDataString(serviceType)); - 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 && (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; - 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; - } - - /// - /// Returns a list of metric definitions for queue service. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// 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>> ListMetricDefinitionsWithHttpMessagesAsync(string resourceGroupName, string farmId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (farmId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "farmId"); - } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - string serviceType = "default"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("farmId", farmId); - tracingParameters.Add("serviceType", serviceType); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListMetricDefinitions", 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.Storage.Admin/farms/{farmId}/queueservices/{serviceType}/metricdefinitions").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{farmId}", System.Uri.EscapeDataString(farmId)); - _url = _url.Replace("{serviceType}", System.Uri.EscapeDataString(serviceType)); - 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 && (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; - 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; - } - - /// - /// Returns a list of metrics for the queue service. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// 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>> ListMetricsWithHttpMessagesAsync(string resourceGroupName, string farmId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (farmId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "farmId"); - } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - string serviceType = "default"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("farmId", farmId); - tracingParameters.Add("serviceType", serviceType); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListMetrics", 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.Storage.Admin/farms/{farmId}/queueservices/{serviceType}/metrics").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{farmId}", System.Uri.EscapeDataString(farmId)); - _url = _url.Replace("{serviceType}", System.Uri.EscapeDataString(serviceType)); - 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 && (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; - 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; - } - - /// - /// Returns a list of metric definitions for queue service. - /// - /// - /// 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>> ListMetricDefinitionsNextWithHttpMessagesAsync(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, "ListMetricDefinitionsNext", 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 && (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; - 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; - } - - /// - /// Returns a list of metrics for the queue service. - /// - /// - /// 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>> ListMetricsNextWithHttpMessagesAsync(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, "ListMetricsNext", 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 && (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; - 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/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/QueueServicesOperationsExtensions.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/QueueServicesOperationsExtensions.cs deleted file mode 100644 index 9e17058452ce..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/QueueServicesOperationsExtensions.cs +++ /dev/null @@ -1,213 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Threading; - using System.Threading.Tasks; - - /// - /// Extension methods for QueueServicesOperations. - /// - public static partial class QueueServicesOperationsExtensions - { - /// - /// Returns the queue service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - public static QueueService Get(this IQueueServicesOperations operations, string resourceGroupName, string farmId) - { - return operations.GetAsync(resourceGroupName, farmId).GetAwaiter().GetResult(); - } - - /// - /// Returns the queue service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// The cancellation token. - /// - public static async Task GetAsync(this IQueueServicesOperations operations, string resourceGroupName, string farmId, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, farmId, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Returns a list of metric definitions for queue service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - public static IPage ListMetricDefinitions(this IQueueServicesOperations operations, string resourceGroupName, string farmId) - { - return operations.ListMetricDefinitionsAsync(resourceGroupName, farmId).GetAwaiter().GetResult(); - } - - /// - /// Returns a list of metric definitions for queue service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// The cancellation token. - /// - public static async Task> ListMetricDefinitionsAsync(this IQueueServicesOperations operations, string resourceGroupName, string farmId, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListMetricDefinitionsWithHttpMessagesAsync(resourceGroupName, farmId, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Returns a list of metrics for the queue service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - public static IPage ListMetrics(this IQueueServicesOperations operations, string resourceGroupName, string farmId) - { - return operations.ListMetricsAsync(resourceGroupName, farmId).GetAwaiter().GetResult(); - } - - /// - /// Returns a list of metrics for the queue service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// The cancellation token. - /// - public static async Task> ListMetricsAsync(this IQueueServicesOperations operations, string resourceGroupName, string farmId, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListMetricsWithHttpMessagesAsync(resourceGroupName, farmId, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Returns a list of metric definitions for queue service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - public static IPage ListMetricDefinitionsNext(this IQueueServicesOperations operations, string nextPageLink) - { - return operations.ListMetricDefinitionsNextAsync(nextPageLink).GetAwaiter().GetResult(); - } - - /// - /// Returns a list of metric definitions for queue service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The cancellation token. - /// - public static async Task> ListMetricDefinitionsNextAsync(this IQueueServicesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListMetricDefinitionsNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Returns a list of metrics for the queue service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - public static IPage ListMetricsNext(this IQueueServicesOperations operations, string nextPageLink) - { - return operations.ListMetricsNextAsync(nextPageLink).GetAwaiter().GetResult(); - } - - /// - /// Returns a list of metrics for the queue service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The cancellation token. - /// - public static async Task> ListMetricsNextAsync(this IQueueServicesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListMetricsNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/SdkInfo_StorageAdminClient.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/SdkInfo_StorageAdminClient.cs index 42b805e9309b..2de297555494 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/SdkInfo_StorageAdminClient.cs +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/SdkInfo_StorageAdminClient.cs @@ -1,27 +1,31 @@ -using System; -using System.Collections.Generic; -using System.Linq; +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// -internal static partial class SdkInfo +namespace Microsoft.AzureStack.Management.Storage.Admin { - public static IEnumerable> ApiInfo_StorageAdminClient - { - get - { - return new Tuple[] - { - new Tuple("Storage.Admin", "Acquisitions", "2015-12-01-preview"), - new Tuple("Storage.Admin", "BlobServices", "2015-12-01-preview"), - new Tuple("Storage.Admin", "Containers", "2015-12-01-preview"), - new Tuple("Storage.Admin", "Farms", "2015-12-01-preview"), - new Tuple("Storage.Admin", "Operations", "2015-12-01-preview"), - new Tuple("Storage.Admin", "QueueServices", "2015-12-01-preview"), - new Tuple("Storage.Admin", "Shares", "2015-12-01-preview"), - new Tuple("Storage.Admin", "StorageAccounts", "2015-12-01-preview"), - new Tuple("Storage.Admin", "StorageQuotas", "2015-12-01-preview"), - new Tuple("Storage.Admin", "TableServices", "2015-12-01-preview"), - }.AsEnumerable(); - } - } + using System; + using System.Collections.Generic; + using System.Linq; + + internal static partial class SdkInfo + { + public static IEnumerable> ApiInfo_StorageAdminClient + { + get + { + return new Tuple[] + { + new Tuple("Storage.Admin", "Acquisitions", "2019-08-08-preview"), + new Tuple("Storage.Admin", "Operations", "2019-08-08-preview"), + new Tuple("Storage.Admin", "StorageAccounts", "2019-08-08-preview"), + new Tuple("Storage.Admin", "StorageQuotas", "2019-08-08-preview"), + new Tuple("Storage.Admin", "StorageSettings", "2019-08-08-preview"), + }.AsEnumerable(); + } + } + } } diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/SharesOperations.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/SharesOperations.cs deleted file mode 100644 index cff084228b85..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/SharesOperations.cs +++ /dev/null @@ -1,1211 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin -{ - 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; - - /// - /// SharesOperations operations. - /// - internal partial class SharesOperations : IServiceOperations, ISharesOperations - { - /// - /// Initializes a new instance of the SharesOperations class. - /// - /// - /// Reference to the service client. - /// - /// - /// Thrown when a required parameter is null - /// - internal SharesOperations(StorageAdminClient client) - { - if (client == null) - { - throw new System.ArgumentNullException("client"); - } - Client = client; - } - - /// - /// Gets a reference to the StorageAdminClient - /// - public StorageAdminClient Client { get; private set; } - - /// - /// Returns a list of storage shares. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// 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(string resourceGroupName, string farmId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (farmId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "farmId"); - } - 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("resourceGroupName", resourceGroupName); - tracingParameters.Add("farmId", farmId); - 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("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Storage.Admin/farms/{farmId}/shares").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{farmId}", System.Uri.EscapeDataString(farmId)); - 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 && (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; - 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; - } - - /// - /// Returns a list of metrics for a storage share. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Share name. - /// - /// - /// 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>> ListMetricsWithHttpMessagesAsync(string resourceGroupName, string farmId, string shareName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (farmId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "farmId"); - } - if (shareName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "shareName"); - } - 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("resourceGroupName", resourceGroupName); - tracingParameters.Add("farmId", farmId); - tracingParameters.Add("shareName", shareName); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListMetrics", 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.Storage.Admin/farms/{farmId}/shares/{shareName}/metrics").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{farmId}", System.Uri.EscapeDataString(farmId)); - _url = _url.Replace("{shareName}", System.Uri.EscapeDataString(shareName)); - 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 && (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; - 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; - } - - /// - /// Returns a list of metric definitions for a storage share. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Share name. - /// - /// - /// 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>> ListMetricDefinitionsWithHttpMessagesAsync(string resourceGroupName, string farmId, string shareName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (farmId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "farmId"); - } - if (shareName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "shareName"); - } - 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("resourceGroupName", resourceGroupName); - tracingParameters.Add("farmId", farmId); - tracingParameters.Add("shareName", shareName); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListMetricDefinitions", 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.Storage.Admin/farms/{farmId}/shares/{shareName}/metricdefinitions").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{farmId}", System.Uri.EscapeDataString(farmId)); - _url = _url.Replace("{shareName}", System.Uri.EscapeDataString(shareName)); - 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 && (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; - 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; - } - - /// - /// Returns a storage share. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Share name. - /// - /// - /// 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 farmId, string shareName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (farmId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "farmId"); - } - if (shareName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "shareName"); - } - 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("resourceGroupName", resourceGroupName); - tracingParameters.Add("farmId", farmId); - tracingParameters.Add("shareName", shareName); - 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.Storage.Admin/farms/{farmId}/shares/{shareName}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{farmId}", System.Uri.EscapeDataString(farmId)); - _url = _url.Replace("{shareName}", System.Uri.EscapeDataString(shareName)); - 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 && (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; - 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; - } - - /// - /// Returns a list of metrics for a storage share. - /// - /// - /// 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>> ListMetricsNextWithHttpMessagesAsync(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, "ListMetricsNext", 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 && (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; - 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; - } - - /// - /// Returns a list of metric definitions for a storage share. - /// - /// - /// 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>> ListMetricDefinitionsNextWithHttpMessagesAsync(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, "ListMetricDefinitionsNext", 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 && (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; - 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/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/SharesOperationsExtensions.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/SharesOperationsExtensions.cs deleted file mode 100644 index e0e394d90205..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/SharesOperationsExtensions.cs +++ /dev/null @@ -1,273 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Collections; - using System.Collections.Generic; - using System.Threading; - using System.Threading.Tasks; - - /// - /// Extension methods for SharesOperations. - /// - public static partial class SharesOperationsExtensions - { - /// - /// Returns a list of storage shares. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - public static IList List(this ISharesOperations operations, string resourceGroupName, string farmId) - { - return operations.ListAsync(resourceGroupName, farmId).GetAwaiter().GetResult(); - } - - /// - /// Returns a list of storage shares. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// The cancellation token. - /// - public static async Task> ListAsync(this ISharesOperations operations, string resourceGroupName, string farmId, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, farmId, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Returns a list of metrics for a storage share. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Share name. - /// - public static IPage ListMetrics(this ISharesOperations operations, string resourceGroupName, string farmId, string shareName) - { - return operations.ListMetricsAsync(resourceGroupName, farmId, shareName).GetAwaiter().GetResult(); - } - - /// - /// Returns a list of metrics for a storage share. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Share name. - /// - /// - /// The cancellation token. - /// - public static async Task> ListMetricsAsync(this ISharesOperations operations, string resourceGroupName, string farmId, string shareName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListMetricsWithHttpMessagesAsync(resourceGroupName, farmId, shareName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Returns a list of metric definitions for a storage share. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Share name. - /// - public static IPage ListMetricDefinitions(this ISharesOperations operations, string resourceGroupName, string farmId, string shareName) - { - return operations.ListMetricDefinitionsAsync(resourceGroupName, farmId, shareName).GetAwaiter().GetResult(); - } - - /// - /// Returns a list of metric definitions for a storage share. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Share name. - /// - /// - /// The cancellation token. - /// - public static async Task> ListMetricDefinitionsAsync(this ISharesOperations operations, string resourceGroupName, string farmId, string shareName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListMetricDefinitionsWithHttpMessagesAsync(resourceGroupName, farmId, shareName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Returns a storage share. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Share name. - /// - public static Share Get(this ISharesOperations operations, string resourceGroupName, string farmId, string shareName) - { - return operations.GetAsync(resourceGroupName, farmId, shareName).GetAwaiter().GetResult(); - } - - /// - /// Returns a storage share. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// Share name. - /// - /// - /// The cancellation token. - /// - public static async Task GetAsync(this ISharesOperations operations, string resourceGroupName, string farmId, string shareName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, farmId, shareName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Returns a list of metrics for a storage share. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - public static IPage ListMetricsNext(this ISharesOperations operations, string nextPageLink) - { - return operations.ListMetricsNextAsync(nextPageLink).GetAwaiter().GetResult(); - } - - /// - /// Returns a list of metrics for a storage share. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The cancellation token. - /// - public static async Task> ListMetricsNextAsync(this ISharesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListMetricsNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Returns a list of metric definitions for a storage share. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - public static IPage ListMetricDefinitionsNext(this ISharesOperations operations, string nextPageLink) - { - return operations.ListMetricDefinitionsNextAsync(nextPageLink).GetAwaiter().GetResult(); - } - - /// - /// Returns a list of metric definitions for a storage share. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The cancellation token. - /// - public static async Task> ListMetricDefinitionsNextAsync(this ISharesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListMetricDefinitionsNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/StorageAccountsOperations.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/StorageAccountsOperations.cs index d60a518a5c01..49c714533d31 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/StorageAccountsOperations.cs +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/StorageAccountsOperations.cs @@ -53,11 +53,11 @@ internal StorageAccountsOperations(StorageAdminClient client) /// /// Returns a list of storage accounts. /// - /// - /// Resource group name. + /// + /// Resource location. /// - /// - /// Farm Id. + /// + /// Filter string /// /// /// Switch for whether summary or detailed information is returned. @@ -68,7 +68,7 @@ internal StorageAccountsOperations(StorageAdminClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -83,19 +83,15 @@ internal StorageAccountsOperations(StorageAdminClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string farmId, bool summary, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(string location, string filter = default(string), bool? summary = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (resourceGroupName == null) + if (location == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (farmId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "farmId"); + throw new ValidationException(ValidationRules.CannotBeNull, "location"); } if (Client.ApiVersion == null) { @@ -108,24 +104,30 @@ internal StorageAccountsOperations(StorageAdminClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("farmId", farmId); + tracingParameters.Add("location", location); + tracingParameters.Add("filter", filter); tracingParameters.Add("summary", summary); 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("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Storage.Admin/farms/{farmId}/storageaccounts").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Storage.Admin/locations/{location}/storageaccounts").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{farmId}", System.Uri.EscapeDataString(farmId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); List _queryParameters = new List(); if (Client.ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } - _queryParameters.Add(string.Format("summary={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(summary, Client.SerializationSettings).Trim('"')))); + if (filter != null) + { + _queryParameters.Add(string.Format("$filter={0}", System.Uri.EscapeDataString(filter))); + } + if (summary != null) + { + _queryParameters.Add(string.Format("summary={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(summary, Client.SerializationSettings).Trim('"')))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -162,6 +164,13 @@ internal StorageAccountsOperations(StorageAdminClient client) } } + // add Prefer: odata.maxpagesize=1000 for paging + if (_httpRequest.Headers.Contains("Prefer")) + { + _httpRequest.Headers.Remove("Prefer"); + } + _httpRequest.Headers.TryAddWithoutValidation("Prefer", "odata.maxpagesize=1000"); + // Serialize Request string _requestContent = null; // Set Credentials @@ -184,16 +193,15 @@ internal StorageAccountsOperations(StorageAdminClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 404) + if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(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); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -203,10 +211,6 @@ internal StorageAccountsOperations(StorageAdminClient client) } 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); @@ -254,11 +258,8 @@ internal StorageAccountsOperations(StorageAdminClient client) /// /// Returns the requested storage account. /// - /// - /// Resource group name. - /// - /// - /// Farm Id. + /// + /// Resource location. /// /// /// Internal storage account ID, which is not visible to tenant. @@ -269,7 +270,7 @@ internal StorageAccountsOperations(StorageAdminClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -284,19 +285,15 @@ internal StorageAccountsOperations(StorageAdminClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string farmId, string accountId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string location, string accountId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (farmId == null) + if (location == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "farmId"); + throw new ValidationException(ValidationRules.CannotBeNull, "location"); } if (accountId == null) { @@ -313,18 +310,16 @@ internal StorageAccountsOperations(StorageAdminClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("farmId", farmId); + tracingParameters.Add("location", location); tracingParameters.Add("accountId", accountId); 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.Storage.Admin/farms/{farmId}/storageaccounts/{accountId}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Storage.Admin/locations/{location}/storageaccounts/{accountId}").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{farmId}", System.Uri.EscapeDataString(farmId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); _url = _url.Replace("{accountId}", System.Uri.EscapeDataString(accountId)); List _queryParameters = new List(); if (Client.ApiVersion != null) @@ -389,16 +384,15 @@ internal StorageAccountsOperations(StorageAdminClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 404) + if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(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); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -408,10 +402,6 @@ internal StorageAccountsOperations(StorageAdminClient client) } 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); @@ -457,26 +447,75 @@ internal StorageAccountsOperations(StorageAdminClient client) } /// - /// Undelete a deleted storage account. + /// Undelete a deleted storage account with new account name if the a new name + /// is provided. + /// + /// + /// Resource location. + /// + /// + /// Internal storage account ID, which is not visible to tenant. + /// + /// + /// New storage account name when doing undelete storage account operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UndeleteWithHttpMessagesAsync(string location, string accountId, string newAccountName = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginUndeleteWithHttpMessagesAsync(location, accountId, newAccountName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Start reclaim storage capacity on deleted storage objects. /// - /// - /// Resource group name. + /// + /// Resource location. + /// + /// + /// The headers that will be added to request. /// - /// - /// Farm Id. + /// + /// The cancellation token. + /// + public async Task ReclaimStorageCapacityWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginReclaimStorageCapacityWithHttpMessagesAsync(location, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Undelete a deleted storage account with new account name if the a new name + /// is provided. + /// + /// + /// Resource location. /// /// /// Internal storage account ID, which is not visible to tenant. /// + /// + /// New storage account name when doing undelete storage account 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 /// @@ -486,19 +525,15 @@ internal StorageAccountsOperations(StorageAdminClient client) /// /// A response object containing the response body and response headers. /// - public async Task UndeleteWithHttpMessagesAsync(string resourceGroupName, string farmId, string accountId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginUndeleteWithHttpMessagesAsync(string location, string accountId, string newAccountName = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (farmId == null) + if (location == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "farmId"); + throw new ValidationException(ValidationRules.CannotBeNull, "location"); } if (accountId == null) { @@ -515,24 +550,27 @@ internal StorageAccountsOperations(StorageAdminClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("farmId", farmId); + tracingParameters.Add("location", location); tracingParameters.Add("accountId", accountId); + tracingParameters.Add("newAccountName", newAccountName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Undelete", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginUndelete", 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.Storage.Admin/farms/{farmId}/storageaccounts/{accountId}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Storage.Admin/locations/{location}/storageaccounts/{accountId}/undelete").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{farmId}", System.Uri.EscapeDataString(farmId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); _url = _url.Replace("{accountId}", System.Uri.EscapeDataString(accountId)); List _queryParameters = new List(); if (Client.ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } + if (newAccountName != null) + { + _queryParameters.Add(string.Format("newAccountName={0}", System.Uri.EscapeDataString(newAccountName))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -591,16 +629,15 @@ internal StorageAccountsOperations(StorageAdminClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 202) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(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); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -610,10 +647,185 @@ internal StorageAccountsOperations(StorageAdminClient client) } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); - if (_httpResponse.Headers.Contains("x-ms-request-id")) + if (_shouldTrace) { - ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + 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; + } + + /// + /// Start reclaim storage capacity on deleted storage objects. + /// + /// + /// Resource location. + /// + /// + /// 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 BeginReclaimStorageCapacityWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "location"); + } + 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("location", location); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginReclaimStorageCapacity", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Storage.Admin/locations/{location}/reclaimStorageCapacity").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + 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 && (int)_statusCode != 202) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); if (_shouldTrace) { ServiceClientTracing.Error(_invocationId, ex); @@ -652,7 +864,7 @@ internal StorageAccountsOperations(StorageAdminClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -674,6 +886,7 @@ internal StorageAccountsOperations(StorageAdminClient client) throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing + var _baseUrl = Client.BaseUri.AbsoluteUri; bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; if (_shouldTrace) @@ -696,7 +909,7 @@ internal StorageAccountsOperations(StorageAdminClient client) var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new System.Uri(_url); + _httpRequest.RequestUri = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), _url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) { @@ -724,6 +937,13 @@ internal StorageAccountsOperations(StorageAdminClient client) } } + // add Prefer: odata.maxpagesize=1000 for paging + if (_httpRequest.Headers.Contains("Prefer")) + { + _httpRequest.Headers.Remove("Prefer"); + } + _httpRequest.Headers.TryAddWithoutValidation("Prefer", "odata.maxpagesize=1000"); + // Serialize Request string _requestContent = null; // Set Credentials @@ -746,16 +966,15 @@ internal StorageAccountsOperations(StorageAdminClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 404) + if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(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); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -765,10 +984,6 @@ internal StorageAccountsOperations(StorageAdminClient client) } 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); diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/StorageAccountsOperationsExtensions.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/StorageAccountsOperationsExtensions.cs index 15acaaca4d83..014a41ba67df 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/StorageAccountsOperationsExtensions.cs +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/StorageAccountsOperationsExtensions.cs @@ -27,18 +27,18 @@ public static partial class StorageAccountsOperationsExtensions /// /// The operations group for this extension method. /// - /// - /// Resource group name. + /// + /// Resource location. /// - /// - /// Farm Id. + /// + /// Filter string /// /// /// Switch for whether summary or detailed information is returned. /// - public static IPage List(this IStorageAccountsOperations operations, string resourceGroupName, string farmId, bool summary) + public static IPage List(this IStorageAccountsOperations operations, string location, string filter = default(string), bool? summary = default(bool?)) { - return operations.ListAsync(resourceGroupName, farmId, summary).GetAwaiter().GetResult(); + return operations.ListAsync(location, filter, summary).GetAwaiter().GetResult(); } /// @@ -47,11 +47,11 @@ public static IPage List(this IStorageAccountsOperations operati /// /// The operations group for this extension method. /// - /// - /// Resource group name. + /// + /// Resource location. /// - /// - /// Farm Id. + /// + /// Filter string /// /// /// Switch for whether summary or detailed information is returned. @@ -59,9 +59,9 @@ public static IPage List(this IStorageAccountsOperations operati /// /// The cancellation token. /// - public static async Task> ListAsync(this IStorageAccountsOperations operations, string resourceGroupName, string farmId, bool summary, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAsync(this IStorageAccountsOperations operations, string location, string filter = default(string), bool? summary = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, farmId, summary, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListWithHttpMessagesAsync(location, filter, summary, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -73,18 +73,15 @@ public static IPage List(this IStorageAccountsOperations operati /// /// The operations group for this extension method. /// - /// - /// Resource group name. - /// - /// - /// Farm Id. + /// + /// Resource location. /// /// /// Internal storage account ID, which is not visible to tenant. /// - public static StorageAccount Get(this IStorageAccountsOperations operations, string resourceGroupName, string farmId, string accountId) + public static StorageAccount Get(this IStorageAccountsOperations operations, string location, string accountId) { - return operations.GetAsync(resourceGroupName, farmId, accountId).GetAwaiter().GetResult(); + return operations.GetAsync(location, accountId).GetAwaiter().GetResult(); } /// @@ -93,11 +90,8 @@ public static StorageAccount Get(this IStorageAccountsOperations operations, str /// /// The operations group for this extension method. /// - /// - /// Resource group name. - /// - /// - /// Farm Id. + /// + /// Resource location. /// /// /// Internal storage account ID, which is not visible to tenant. @@ -105,55 +99,170 @@ public static StorageAccount Get(this IStorageAccountsOperations operations, str /// /// The cancellation token. /// - public static async Task GetAsync(this IStorageAccountsOperations operations, string resourceGroupName, string farmId, string accountId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IStorageAccountsOperations operations, string location, string accountId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, farmId, accountId, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(location, accountId, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Undelete a deleted storage account. + /// Undelete a deleted storage account with new account name if the a new name + /// is provided. /// /// /// The operations group for this extension method. /// - /// - /// Resource group name. + /// + /// Resource location. + /// + /// + /// Internal storage account ID, which is not visible to tenant. + /// + /// + /// New storage account name when doing undelete storage account operation. + /// + public static UndeleteStorageAccount Undelete(this IStorageAccountsOperations operations, string location, string accountId, string newAccountName = default(string)) + { + return operations.UndeleteAsync(location, accountId, newAccountName).GetAwaiter().GetResult(); + } + + /// + /// Undelete a deleted storage account with new account name if the a new name + /// is provided. + /// + /// + /// The operations group for this extension method. /// - /// - /// Farm Id. + /// + /// Resource location. /// /// /// Internal storage account ID, which is not visible to tenant. /// - public static void Undelete(this IStorageAccountsOperations operations, string resourceGroupName, string farmId, string accountId) + /// + /// New storage account name when doing undelete storage account operation. + /// + /// + /// The cancellation token. + /// + public static async Task UndeleteAsync(this IStorageAccountsOperations operations, string location, string accountId, string newAccountName = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.UndeleteWithHttpMessagesAsync(location, accountId, newAccountName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Start reclaim storage capacity on deleted storage objects. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + public static void ReclaimStorageCapacity(this IStorageAccountsOperations operations, string location) { - operations.UndeleteAsync(resourceGroupName, farmId, accountId).GetAwaiter().GetResult(); + operations.ReclaimStorageCapacityAsync(location).GetAwaiter().GetResult(); } /// - /// Undelete a deleted storage account. + /// Start reclaim storage capacity on deleted storage objects. /// /// /// The operations group for this extension method. /// - /// - /// Resource group name. + /// + /// Resource location. /// - /// - /// Farm Id. + /// + /// The cancellation token. + /// + public static async Task ReclaimStorageCapacityAsync(this IStorageAccountsOperations operations, string location, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.ReclaimStorageCapacityWithHttpMessagesAsync(location, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Undelete a deleted storage account with new account name if the a new name + /// is provided. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + /// + /// Internal storage account ID, which is not visible to tenant. + /// + /// + /// New storage account name when doing undelete storage account operation. + /// + public static UndeleteStorageAccount BeginUndelete(this IStorageAccountsOperations operations, string location, string accountId, string newAccountName = default(string)) + { + return operations.BeginUndeleteAsync(location, accountId, newAccountName).GetAwaiter().GetResult(); + } + + /// + /// Undelete a deleted storage account with new account name if the a new name + /// is provided. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. /// /// /// Internal storage account ID, which is not visible to tenant. /// + /// + /// New storage account name when doing undelete storage account operation. + /// + /// + /// The cancellation token. + /// + public static async Task BeginUndeleteAsync(this IStorageAccountsOperations operations, string location, string accountId, string newAccountName = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginUndeleteWithHttpMessagesAsync(location, accountId, newAccountName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Start reclaim storage capacity on deleted storage objects. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + public static void BeginReclaimStorageCapacity(this IStorageAccountsOperations operations, string location) + { + operations.BeginReclaimStorageCapacityAsync(location).GetAwaiter().GetResult(); + } + + /// + /// Start reclaim storage capacity on deleted storage objects. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// /// /// The cancellation token. /// - public static async Task UndeleteAsync(this IStorageAccountsOperations operations, string resourceGroupName, string farmId, string accountId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BeginReclaimStorageCapacityAsync(this IStorageAccountsOperations operations, string location, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.UndeleteWithHttpMessagesAsync(resourceGroupName, farmId, accountId, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.BeginReclaimStorageCapacityWithHttpMessagesAsync(location, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/StorageAdminClient.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/StorageAdminClient.cs index 3aea3ec72fbe..81e5f5d7b39e 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/StorageAdminClient.cs +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/StorageAdminClient.cs @@ -22,7 +22,7 @@ namespace Microsoft.AzureStack.Management.Storage.Admin using System.Net.Http; /// - /// Storag Admin Client + /// Storage Admin Client /// public partial class StorageAdminClient : ServiceClient, IStorageAdminClient, IAzureClient { @@ -47,81 +47,70 @@ public partial class StorageAdminClient : ServiceClient, ISt public ServiceClientCredentials Credentials { get; private set; } /// - /// Subscription Id. + /// REST Api Version. /// - public string SubscriptionId { get; set; } + public string ApiVersion { get; private set; } /// - /// REST Api Version. + /// Subscription Id. /// - public string ApiVersion { get; private set; } + public string SubscriptionId { get; set; } /// - /// Gets or sets the preferred language for the response. + /// The preferred language for the response. /// public string AcceptLanguage { get; set; } /// - /// Gets or sets the retry timeout in seconds for Long Running Operations. - /// Default value is 30. + /// The retry timeout in seconds for Long Running Operations. Default value is + /// 30. /// public int? LongRunningOperationRetryTimeout { get; set; } /// - /// When set to true a unique x-ms-client-request-id value is generated and - /// included in each request. Default is true. + /// Whether a unique x-ms-client-request-id should be generated. When set to + /// true a unique x-ms-client-request-id value is generated and included in + /// each request. Default is true. /// public bool? GenerateClientRequestId { get; set; } /// - /// Gets the IOperations. - /// - public virtual IOperations Operations { get; private set; } - - /// - /// Gets the IAcquisitionsOperations. - /// - public virtual IAcquisitionsOperations Acquisitions { get; private set; } - - /// - /// Gets the IBlobServicesOperations. - /// - public virtual IBlobServicesOperations BlobServices { get; private set; } - - /// - /// Gets the IContainersOperations. - /// - public virtual IContainersOperations Containers { get; private set; } - - /// - /// Gets the IFarmsOperations. + /// Gets the IStorageAccountsOperations. /// - public virtual IFarmsOperations Farms { get; private set; } + public virtual IStorageAccountsOperations StorageAccounts { get; private set; } /// - /// Gets the IQueueServicesOperations. + /// Gets the IStorageQuotasOperations. /// - public virtual IQueueServicesOperations QueueServices { get; private set; } + public virtual IStorageQuotasOperations StorageQuotas { get; private set; } /// - /// Gets the IStorageQuotasOperations. + /// Gets the IStorageSettingsOperations. /// - public virtual IStorageQuotasOperations StorageQuotas { get; private set; } + public virtual IStorageSettingsOperations StorageSettings { get; private set; } /// - /// Gets the ISharesOperations. + /// Gets the IOperations. /// - public virtual ISharesOperations Shares { get; private set; } + public virtual IOperations Operations { get; private set; } /// - /// Gets the IStorageAccountsOperations. + /// Gets the IAcquisitionsOperations. /// - public virtual IStorageAccountsOperations StorageAccounts { get; private set; } + public virtual IAcquisitionsOperations Acquisitions { get; private set; } /// - /// Gets the ITableServicesOperations. + /// Initializes a new instance of the StorageAdminClient class. /// - public virtual ITableServicesOperations TableServices { get; private set; } + /// + /// HttpClient to be used + /// + /// + /// True: will dispose the provided httpClient on calling StorageAdminClient.Dispose(). False: will not dispose provided httpClient + protected StorageAdminClient(HttpClient httpClient, bool disposeHttpClient) : base(httpClient, disposeHttpClient) + { + Initialize(); + } /// /// Initializes a new instance of the StorageAdminClient class. @@ -218,6 +207,33 @@ public StorageAdminClient(ServiceClientCredentials credentials, params Delegatin } } + /// + /// Initializes a new instance of the StorageAdminClient class. + /// + /// + /// Required. Credentials needed for the client to connect to Azure. + /// + /// + /// HttpClient to be used + /// + /// + /// True: will dispose the provided httpClient on calling StorageAdminClient.Dispose(). False: will not dispose provided httpClient + /// + /// Thrown when a required parameter is null + /// + public StorageAdminClient(ServiceClientCredentials credentials, HttpClient httpClient, bool disposeHttpClient) : this(httpClient, disposeHttpClient) + { + if (credentials == null) + { + throw new System.ArgumentNullException("credentials"); + } + Credentials = credentials; + if (Credentials != null) + { + Credentials.InitializeServiceClient(this); + } + } + /// /// Initializes a new instance of the StorageAdminClient class. /// @@ -324,18 +340,13 @@ public StorageAdminClient(System.Uri baseUri, ServiceClientCredentials credentia /// private void Initialize() { + StorageAccounts = new StorageAccountsOperations(this); + StorageQuotas = new StorageQuotasOperations(this); + StorageSettings = new StorageSettingsOperations(this); Operations = new Operations(this); Acquisitions = new AcquisitionsOperations(this); - BlobServices = new BlobServicesOperations(this); - Containers = new ContainersOperations(this); - Farms = new FarmsOperations(this); - QueueServices = new QueueServicesOperations(this); - StorageQuotas = new StorageQuotasOperations(this); - Shares = new SharesOperations(this); - StorageAccounts = new StorageAccountsOperations(this); - TableServices = new TableServicesOperations(this); BaseUri = new System.Uri("https://adminmanagement.local.azurestack.external"); - ApiVersion = "2015-12-01-preview"; + ApiVersion = "2019-08-08-preview"; AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; GenerateClientRequestId = true; diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/StorageQuotasOperations.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/StorageQuotasOperations.cs index 1ae0e8542c5c..b0890d5a10ae 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/StorageQuotasOperations.cs +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/StorageQuotasOperations.cs @@ -68,7 +68,7 @@ internal StorageQuotasOperations(StorageAdminClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -193,16 +193,15 @@ internal StorageQuotasOperations(StorageAdminClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 404) + if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(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); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -212,10 +211,6 @@ internal StorageQuotasOperations(StorageAdminClient client) } 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); @@ -275,7 +270,7 @@ internal StorageQuotasOperations(StorageAdminClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -386,16 +381,15 @@ internal StorageQuotasOperations(StorageAdminClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 404) + if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(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); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -405,10 +399,6 @@ internal StorageQuotasOperations(StorageAdminClient client) } 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); @@ -450,7 +440,7 @@ internal StorageQuotasOperations(StorageAdminClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -564,16 +554,15 @@ internal StorageQuotasOperations(StorageAdminClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 404) + if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(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); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -583,10 +572,6 @@ internal StorageQuotasOperations(StorageAdminClient client) } 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); @@ -643,7 +628,7 @@ internal StorageQuotasOperations(StorageAdminClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -658,7 +643,7 @@ internal StorageQuotasOperations(StorageAdminClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -751,16 +736,15 @@ internal StorageQuotasOperations(StorageAdminClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 404) + if ((int)_statusCode != 200) { - var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + var ex = new ErrorResponseException(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); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); if (_errorBody != null) { - ex = new CloudException(_errorBody.Message); ex.Body = _errorBody; } } @@ -770,183 +754,6 @@ internal StorageQuotasOperations(StorageAdminClient client) } 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; - } - - /// - /// Returns a list of storage quotas at the given location. - /// - /// - /// 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 && (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); @@ -959,7 +766,7 @@ internal StorageQuotasOperations(StorageAdminClient 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")) @@ -972,7 +779,7 @@ internal StorageQuotasOperations(StorageAdminClient 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) { diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/StorageQuotasOperationsExtensions.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/StorageQuotasOperationsExtensions.cs index 43575119da6d..7379116f2390 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/StorageQuotasOperationsExtensions.cs +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/StorageQuotasOperationsExtensions.cs @@ -153,7 +153,7 @@ public static StorageQuota Get(this IStorageQuotasOperations operations, string /// /// Resource location. /// - public static IPage List(this IStorageQuotasOperations operations, string location) + public static StorageQuotaList List(this IStorageQuotasOperations operations, string location) { return operations.ListAsync(location).GetAwaiter().GetResult(); } @@ -170,7 +170,7 @@ public static IPage List(this IStorageQuotasOperations operations, /// /// The cancellation token. /// - public static async Task> ListAsync(this IStorageQuotasOperations operations, string location, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListAsync(this IStorageQuotasOperations operations, string location, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListWithHttpMessagesAsync(location, null, cancellationToken).ConfigureAwait(false)) { @@ -178,39 +178,5 @@ public static IPage List(this IStorageQuotasOperations operations, } } - /// - /// Returns a list of storage quotas at the given location. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - public static IPage ListNext(this IStorageQuotasOperations operations, string nextPageLink) - { - return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); - } - - /// - /// Returns a list of storage quotas at the given location. - /// - /// - /// 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 IStorageQuotasOperations 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/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/StorageSettingsOperations.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/StorageSettingsOperations.cs new file mode 100644 index 000000000000..980a40fafdd4 --- /dev/null +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/StorageSettingsOperations.cs @@ -0,0 +1,434 @@ +// +// 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.AzureStack.Management.Storage.Admin +{ + 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; + + /// + /// StorageSettingsOperations operations. + /// + internal partial class StorageSettingsOperations : IServiceOperations, IStorageSettingsOperations + { + /// + /// Initializes a new instance of the StorageSettingsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal StorageSettingsOperations(StorageAdminClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the StorageAdminClient + /// + public StorageAdminClient Client { get; private set; } + + /// + /// Update storage resource provider settings. + /// + /// + /// Resource location. + /// + /// + /// The number of days a deleted storage account is kept before being + /// permanently deleted. + /// + /// + /// 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> UpdateWithHttpMessagesAsync(string location, int? retentionPeriodForDeletedStorageAccountsInDays = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "location"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + Settings settingsObject = new Settings(); + if (retentionPeriodForDeletedStorageAccountsInDays != null) + { + settingsObject.RetentionPeriodForDeletedStorageAccountsInDays = retentionPeriodForDeletedStorageAccountsInDays; + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("location", location); + tracingParameters.Add("settingsObject", settingsObject); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Storage.Admin/locations/{location}/settings").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + 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("PUT"); + _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(settingsObject != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(settingsObject, 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) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Returns the storage resource provider settings. + /// + /// + /// Resource location. + /// + /// + /// 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 location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "location"); + } + 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("location", location); + 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}/providers/Microsoft.Storage.Admin/locations/{location}/settings").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + 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 ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/StorageSettingsOperationsExtensions.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/StorageSettingsOperationsExtensions.cs new file mode 100644 index 000000000000..52b338e12909 --- /dev/null +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/StorageSettingsOperationsExtensions.cs @@ -0,0 +1,101 @@ +// +// 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.AzureStack.Management.Storage.Admin +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for StorageSettingsOperations. + /// + public static partial class StorageSettingsOperationsExtensions + { + /// + /// Update storage resource provider settings. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + /// + /// The number of days a deleted storage account is kept before being + /// permanently deleted. + /// + public static Settings Update(this IStorageSettingsOperations operations, string location, int? retentionPeriodForDeletedStorageAccountsInDays = default(int?)) + { + return operations.UpdateAsync(location, retentionPeriodForDeletedStorageAccountsInDays).GetAwaiter().GetResult(); + } + + /// + /// Update storage resource provider settings. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + /// + /// The number of days a deleted storage account is kept before being + /// permanently deleted. + /// + /// + /// The cancellation token. + /// + public static async Task UpdateAsync(this IStorageSettingsOperations operations, string location, int? retentionPeriodForDeletedStorageAccountsInDays = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.UpdateWithHttpMessagesAsync(location, retentionPeriodForDeletedStorageAccountsInDays, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Returns the storage resource provider settings. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + public static Settings Get(this IStorageSettingsOperations operations, string location) + { + return operations.GetAsync(location).GetAwaiter().GetResult(); + } + + /// + /// Returns the storage resource provider settings. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Resource location. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IStorageSettingsOperations operations, string location, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(location, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/TableServicesOperations.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/TableServicesOperations.cs deleted file mode 100644 index f010f64149da..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/TableServicesOperations.cs +++ /dev/null @@ -1,997 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin -{ - 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; - - /// - /// TableServicesOperations operations. - /// - internal partial class TableServicesOperations : IServiceOperations, ITableServicesOperations - { - /// - /// Initializes a new instance of the TableServicesOperations class. - /// - /// - /// Reference to the service client. - /// - /// - /// Thrown when a required parameter is null - /// - internal TableServicesOperations(StorageAdminClient client) - { - if (client == null) - { - throw new System.ArgumentNullException("client"); - } - Client = client; - } - - /// - /// Gets a reference to the StorageAdminClient - /// - public StorageAdminClient Client { get; private set; } - - /// - /// Returns the table servie. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// 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 farmId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (farmId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "farmId"); - } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - string serviceType = "default"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("farmId", farmId); - tracingParameters.Add("serviceType", serviceType); - 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.Storage.Admin/farms/{farmId}/tableservices/{serviceType}").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{farmId}", System.Uri.EscapeDataString(farmId)); - _url = _url.Replace("{serviceType}", System.Uri.EscapeDataString(serviceType)); - 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 && (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; - 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; - } - - /// - /// Returns a list of metric definitions for table service. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// 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>> ListMetricDefinitionsWithHttpMessagesAsync(string resourceGroupName, string farmId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (farmId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "farmId"); - } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - string serviceType = "default"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("farmId", farmId); - tracingParameters.Add("serviceType", serviceType); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListMetricDefinitions", 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.Storage.Admin/farms/{farmId}/tableservices/{serviceType}/metricdefinitions").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{farmId}", System.Uri.EscapeDataString(farmId)); - _url = _url.Replace("{serviceType}", System.Uri.EscapeDataString(serviceType)); - 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 && (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; - 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; - } - - /// - /// Returns a list of metrics for table service. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// 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>> ListMetricsWithHttpMessagesAsync(string resourceGroupName, string farmId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (farmId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "farmId"); - } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - string serviceType = "default"; - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("farmId", farmId); - tracingParameters.Add("serviceType", serviceType); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListMetrics", 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.Storage.Admin/farms/{farmId}/tableservices/{serviceType}/metrics").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{farmId}", System.Uri.EscapeDataString(farmId)); - _url = _url.Replace("{serviceType}", System.Uri.EscapeDataString(serviceType)); - 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 && (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; - 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; - } - - /// - /// Returns a list of metric definitions for table service. - /// - /// - /// 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>> ListMetricDefinitionsNextWithHttpMessagesAsync(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, "ListMetricDefinitionsNext", 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 && (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; - 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; - } - - /// - /// Returns a list of metrics for table service. - /// - /// - /// 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>> ListMetricsNextWithHttpMessagesAsync(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, "ListMetricsNext", 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 && (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; - 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/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/TableServicesOperationsExtensions.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/TableServicesOperationsExtensions.cs deleted file mode 100644 index e932a10a264a..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Generated/TableServicesOperationsExtensions.cs +++ /dev/null @@ -1,213 +0,0 @@ -// -// 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.AzureStack.Management.Storage.Admin -{ - using Microsoft.Rest; - using Microsoft.Rest.Azure; - using Models; - using System.Threading; - using System.Threading.Tasks; - - /// - /// Extension methods for TableServicesOperations. - /// - public static partial class TableServicesOperationsExtensions - { - /// - /// Returns the table servie. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - public static TableService Get(this ITableServicesOperations operations, string resourceGroupName, string farmId) - { - return operations.GetAsync(resourceGroupName, farmId).GetAwaiter().GetResult(); - } - - /// - /// Returns the table servie. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// The cancellation token. - /// - public static async Task GetAsync(this ITableServicesOperations operations, string resourceGroupName, string farmId, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, farmId, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Returns a list of metric definitions for table service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - public static IPage ListMetricDefinitions(this ITableServicesOperations operations, string resourceGroupName, string farmId) - { - return operations.ListMetricDefinitionsAsync(resourceGroupName, farmId).GetAwaiter().GetResult(); - } - - /// - /// Returns a list of metric definitions for table service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// The cancellation token. - /// - public static async Task> ListMetricDefinitionsAsync(this ITableServicesOperations operations, string resourceGroupName, string farmId, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListMetricDefinitionsWithHttpMessagesAsync(resourceGroupName, farmId, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Returns a list of metrics for table service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - public static IPage ListMetrics(this ITableServicesOperations operations, string resourceGroupName, string farmId) - { - return operations.ListMetricsAsync(resourceGroupName, farmId).GetAwaiter().GetResult(); - } - - /// - /// Returns a list of metrics for table service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Resource group name. - /// - /// - /// Farm Id. - /// - /// - /// The cancellation token. - /// - public static async Task> ListMetricsAsync(this ITableServicesOperations operations, string resourceGroupName, string farmId, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListMetricsWithHttpMessagesAsync(resourceGroupName, farmId, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Returns a list of metric definitions for table service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - public static IPage ListMetricDefinitionsNext(this ITableServicesOperations operations, string nextPageLink) - { - return operations.ListMetricDefinitionsNextAsync(nextPageLink).GetAwaiter().GetResult(); - } - - /// - /// Returns a list of metric definitions for table service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The cancellation token. - /// - public static async Task> ListMetricDefinitionsNextAsync(this ITableServicesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListMetricDefinitionsNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Returns a list of metrics for table service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - public static IPage ListMetricsNext(this ITableServicesOperations operations, string nextPageLink) - { - return operations.ListMetricsNextAsync(nextPageLink).GetAwaiter().GetResult(); - } - - /// - /// Returns a list of metrics for table service. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The NextLink from the previous successful call to List operation. - /// - /// - /// The cancellation token. - /// - public static async Task> ListMetricsNextAsync(this ITableServicesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListMetricsNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Microsoft.AzureStack.Management.Storage.Admin.csproj b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Microsoft.AzureStack.Management.Storage.Admin.csproj index fc3b2afee8c2..8b389f4d9b8c 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Microsoft.AzureStack.Management.Storage.Admin.csproj +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Microsoft.AzureStack.Management.Storage.Admin.csproj @@ -7,18 +7,12 @@ Microsoft.AzureStack.Management.Storage.Admin Provides developers with libraries for the Storage admin under AzureStack to manage Storage infrastructure. - 0.1.0-preview + 1.9.0-preview Microsoft.AzureStack.Management.Storage.Admin Microsoft Azure Stack;Storage;REST HTTP client;azureostackfficial;netcore451511 diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Properties/AssemblyInfo.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Properties/AssemblyInfo.cs index 8c13a49e8d7a..b502496aa1bb 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Properties/AssemblyInfo.cs +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/src/Properties/AssemblyInfo.cs @@ -22,5 +22,5 @@ // The following GUID is for the ID of the typelib if this project is exposed to COM [assembly: Guid("5f30ad46-8f37-4416-8eae-5b56a1471926")] -[assembly: AssemblyVersion("0.1.0.0")] -[assembly: AssemblyFileVersion("0.1.0.0")] +[assembly: AssemblyVersion("1.9.0.0")] +[assembly: AssemblyFileVersion("1.9.0.0")] diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/Properties/AssemblyInfo.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/Properties/AssemblyInfo.cs index fb7d9ad6b1c9..7133ae695b7d 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/Properties/AssemblyInfo.cs +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -using System.Reflection; +using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; @@ -15,5 +15,5 @@ [assembly: Guid("1b24bc4a-6e4d-4feb-b5d5-c9684c60a308")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: AssemblyVersion("2.0.0.0")] +[assembly: AssemblyFileVersion("2.0.0.0")] diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/CreateQuota.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/CreateQuota.json index 5e265cf4aebb..760510288993 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/CreateQuota.json +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/CreateQuota.json @@ -1,264 +1,278 @@ { "Entries": [ { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/providers/Microsoft.Storage.Admin/locations/local/quotas/TestCreateQuota?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1Rlc3RDcmVhdGVRdW90YT9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/TestCreateQuota?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1Rlc3RDcmVhdGVRdW90YT9hcGktdmVyc2lvbj0yMDE5LTA4LTA4LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4db9207-2b3e-436c-992d-7a0c67c83582" + "465f8b4c-c825-4c6b-af7d-6b8a62300a00" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:26 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "b99e6908-a999-48a5-8fea-dff73d4d8aea" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEbIhJy5H3FWS/Y258NidZwRk/dLbgqsMehEc42MV971Er3Nivr+Ds/p8mVxQ62fWvYl1Z+kEFpfVh42lRC7or4EsmRqjHboOyCwOr31Xgb2M8DU9kehm4V83256yzP6O3kGFWKBKD40ixwxBWfzK" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv52qewj+kyupkupzP3bfU212mMM8QMTsZ78D+lkIALSbtQNN5pJOPPq7srgl88GP9zay0E5ldV0J059+OsgoeYHXxD7ZOpbuJ4gE6kSh2tdRXWbu1w3VPB4iY/XkUkLRSueuoL9Mi7FxfQ7SVQswv" ], - "x-ms-correlation-request-id": [ - "acd9e849-99e2-4925-a6cd-4219bcfcad7c" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14993" ], "x-ms-request-id": [ - "acd9e849-99e2-4925-a6cd-4219bcfcad7c" + "b99e6908-a999-48a5-8fea-dff73d4d8aea" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193126Z:acd9e849-99e2-4925-a6cd-4219bcfcad7c" + "LOCAL:20190917T022927Z:b99e6908-a999-48a5-8fea-dff73d4d8aea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:27 GMT" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/providers/Microsoft.Storage.Admin/locations/local/quotas/TestCreateQuota?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1Rlc3RDcmVhdGVRdW90YT9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/TestCreateQuota?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1Rlc3RDcmVhdGVRdW90YT9hcGktdmVyc2lvbj0yMDE5LTA4LTA4LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18611f32-404e-4f5c-9825-4d6d080b90fe" + "4519ed51-697a-40ba-9339-cb6f52f0d23c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:26 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "b2618483-abd7-4c44-bbb4-c0acae7087a8" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRveRKwxxFi+/WhfA33bihU7LybRd17k6JNUAj55FTfK8Qm3IM0NrwyOrSFJgg+t3kPTYct/LJ5471hW4C/TpWCIQj9h5kX7XWdoL/nIyYa67e94OG42w7MIpLXYSjeXiYSQB6Boda/0yVCgxVH4aqV" - ], - "x-ms-correlation-request-id": [ - "07d35474-742a-484c-b109-8edb6ad7b3ed" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvpCoqtx3urTy8hyNiigHKYgwwrDWZMw65sLXfT3X/rIoWz8/R5+OPTlEhg5E6TcvPGSLdD3YBpGNp2Bfn77zNODnvbByxbz+sz9a1nL6VZ978d38HsuGz/zEMlvUnFIQIRqfTZY+uPUZZqWUsx8Q9" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14992" ], "x-ms-request-id": [ - "07d35474-742a-484c-b109-8edb6ad7b3ed" + "b2618483-abd7-4c44-bbb4-c0acae7087a8" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193126Z:07d35474-742a-484c-b109-8edb6ad7b3ed" + "LOCAL:20190917T022927Z:b2618483-abd7-4c44-bbb4-c0acae7087a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:27 GMT" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/providers/Microsoft.Storage.Admin/locations/local/quotas/TestCreateQuota?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1Rlc3RDcmVhdGVRdW90YT9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/TestCreateQuota?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1Rlc3RDcmVhdGVRdW90YT9hcGktdmVyc2lvbj0yMDE5LTA4LTA4LXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": -1000000000,\r\n \"capacityInGb\": -100000000\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 1000000000,\r\n \"capacityInGb\": 100000000\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "105" - ], "x-ms-client-request-id": [ - "56e8338b-8207-4a4c-837f-4fa397cd4dd7" + "5ec485a6-b664-4c89-b43c-274e7f1ecadf" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/providers/Microsoft.Storage.Admin/locations/local/quotas/TestCreateQuota\",\r\n \"name\": \"local/TestCreateQuota\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": -1000000000,\r\n \"capacityInGb\": -100000000\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "357" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "103" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:26 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "4a8472bb-32b2-4cef-82e7-08e6e4a704b9" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxHiDMXH5QKkb5WwDCa6lz7qs6Fxkgkn4n1XLZA3g9mD31UiBZjSFpgykNJuBgDrvG1yQr4OqPYLhzEjdSNdpARIUukQJkUlbWRJK+QeuOnROyAMdQxZ+lZK6Kxk1tmI5o9xsycmnyPojzyn2UfYl" - ], - "x-ms-request-id": [ - "4a2fed3e-02c3-4825-9a60-2d28510b0065" - ], - "x-ms-correlation-request-id": [ - "edf8987e-2ab8-47e0-bf3e-a90e63a20fd4" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcOAoosPV0h/0LSt5JQgIsihv/7ZRHRh4vO+c6og5kpYi1L0tmfvNjgQ4HIkOtgsejEA5cH8jKe8En44TNIEF08Pc+SETMdgidysgdt+YB4OoA5qYaVxOinQ0ab28F0ion8YqIy8+1uxqu6JJU9I7" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" + ], + "x-ms-request-id": [ + "4a8472bb-32b2-4cef-82e7-08e6e4a704b9" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193126Z:edf8987e-2ab8-47e0-bf3e-a90e63a20fd4" + "LOCAL:20190917T022927Z:4a8472bb-32b2-4cef-82e7-08e6e4a704b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:27 GMT" + ], + "Content-Length": [ + "355" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/TestCreateQuota\",\r\n \"name\": \"local/TestCreateQuota\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 1000000000,\r\n \"capacityInGb\": 100000000\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/providers/Microsoft.Storage.Admin/locations/local/quotas/TestCreateQuota?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1Rlc3RDcmVhdGVRdW90YT9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/TestCreateQuota?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1Rlc3RDcmVhdGVRdW90YT9hcGktdmVyc2lvbj0yMDE5LTA4LTA4LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4b162de-7363-44ee-82f9-9615d5709ecc" + "5862a7b9-3053-4f2c-b6bf-c18c3e23e98e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/providers/Microsoft.Storage.Admin/locations/local/quotas/TestCreateQuota\",\r\n \"name\": \"local/TestCreateQuota\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": -1000000000,\r\n \"capacityInGb\": -100000000\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "357" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:26 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "f61d5120-1ea6-4b33-94c9-64b03f2e30bb" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3KUtNFrU22JbNtP5H4ggz60zgVewlpBsC19tndPLrXo6FTOs0D0wD/E6FZ6kHBtTZsgimSnJSfRp5KZ511LbXEt30gNdLRbuLkdeCXuaVLfVJcBwcx/41rNDobH+nnTznAMV7LjpvyHUjGDOjZMp" - ], - "x-ms-request-id": [ - "802d799f-e91f-4d35-8c28-e88525b02e2c" - ], - "x-ms-correlation-request-id": [ - "1a53266f-b950-4b0a-8007-86ffafbc154c" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvlRN01jYBk0p1yBNHDuO0L+QNzpAY/XihwQZFZs1+ux3J7JDv7xFv6MaoNU642m2EhhzYomaRiK6C9JbP4n/UxOZIhsClusrZ02Oi0Dk/ndg56uHz+oqEusB1xSOqvKTEO+KwuYYW7PcoyNNodAmY" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14808" + "14762" + ], + "x-ms-request-id": [ + "f61d5120-1ea6-4b33-94c9-64b03f2e30bb" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193126Z:1a53266f-b950-4b0a-8007-86ffafbc154c" + "LOCAL:20190917T022927Z:f61d5120-1ea6-4b33-94c9-64b03f2e30bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:27 GMT" + ], + "Content-Length": [ + "355" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/TestCreateQuota\",\r\n \"name\": \"local/TestCreateQuota\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 1000000000,\r\n \"capacityInGb\": 100000000\r\n }\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "9ad61516-995c-4873-a21f-7e44904f0ed2" + "SubscriptionId": "047e87e6-327f-4c44-8184-fb6bc35e8b38" } } \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/DeleteQuota.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/DeleteQuota.json index af1dc0192cd3..dd751ce8bcf2 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/DeleteQuota.json +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/DeleteQuota.json @@ -1,200 +1,212 @@ { "Entries": [ { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/providers/Microsoft.Storage.Admin/locations/local/quotas/TestDeleteQuota?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1Rlc3REZWxldGVRdW90YT9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/TestDeleteQuota?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1Rlc3REZWxldGVRdW90YT9hcGktdmVyc2lvbj0yMDE5LTA4LTA4LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2fc96837-5cd1-416d-98be-6ade8de69871" + "e19cfaa4-82c9-4f82-b223-50b14c6fa974" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:26 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "8bf8626e-a6f2-4a1e-9168-ad382d552952" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvEVSx2aTcGbRzhth4abg1eDfN4CqGA6v6pNbszHjLcLBSARS+mUb7ceqLNR8osqjUoM6DHGcNUBdhsc0A93SUEUfh1nWF61FgZbAXJxBpGec1PIdYA38M+g59rubKstJjlCsEs5kJxDm44Vye7if" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv6m6zHExHiahZ0IKEm7baBfq4ekBmqq3grJPiWsBhcRyLsrr6VslAj28jxoJq5WTyKc3JigdLurY4KZkNIjLnzDxV3nUXBZoIYbASNNCr2TnqwG0p3/2DydLJcx97/NDj6axi+D6hJiqIUcFpK99V" ], - "x-ms-correlation-request-id": [ - "965bf12d-0637-4059-9c0d-5a4ba4fa079d" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14991" ], "x-ms-request-id": [ - "965bf12d-0637-4059-9c0d-5a4ba4fa079d" + "8bf8626e-a6f2-4a1e-9168-ad382d552952" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193127Z:965bf12d-0637-4059-9c0d-5a4ba4fa079d" + "LOCAL:20190917T022929Z:8bf8626e-a6f2-4a1e-9168-ad382d552952" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:28 GMT" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/providers/Microsoft.Storage.Admin/locations/local/quotas/TestDeleteQuota?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1Rlc3REZWxldGVRdW90YT9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/TestDeleteQuota?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1Rlc3REZWxldGVRdW90YT9hcGktdmVyc2lvbj0yMDE5LTA4LTA4LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "79e5aeb0-6951-48d9-b0b8-212de1a7188b" + "ca3f9916-14c9-4eed-8d31-946f931593ca" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:26 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "0c505e9e-130a-407a-8b69-121c7372576f" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvq7Fp80/GlEXk/gHOEy6/QDnalC1U4lvSWAaBsjR8JxkZ/Azla2GM3AAPigD/MgfKquQIvnjA2Y5XFy5XsKVDaLrkJsk5l5kvNDdZ0733e47F6SV7vhIaFObEWWu71xDsZNEBJPDGOy8e34T8koyl" - ], - "x-ms-correlation-request-id": [ - "64bbd206-76b7-4199-aa2e-a0f3fd76bf77" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvbMF5FBGyidQ9EcKEClgKCA+vUytm6ecu5YOTj8Q0FBqYq9wTa+dEB9OLYoSdIYqubq1xmJlWjk3b8Abn7xZ8s7BKC3HXZQ1S7OhqCZaWJJhKYaOUCvj8nwpeOTpPgK8cgXtZzAOBuspjP+6TBlL3" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14990" ], "x-ms-request-id": [ - "64bbd206-76b7-4199-aa2e-a0f3fd76bf77" + "0c505e9e-130a-407a-8b69-121c7372576f" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193127Z:64bbd206-76b7-4199-aa2e-a0f3fd76bf77" + "LOCAL:20190917T022929Z:0c505e9e-130a-407a-8b69-121c7372576f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:28 GMT" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/providers/Microsoft.Storage.Admin/locations/local/quotas/TestDeleteQuota?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1Rlc3REZWxldGVRdW90YT9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/TestDeleteQuota?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1Rlc3REZWxldGVRdW90YT9hcGktdmVyc2lvbj0yMDE5LTA4LTA4LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": -1,\r\n \"capacityInGb\": 0\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "87" - ], "x-ms-client-request-id": [ - "80483c12-790b-46d7-bd23-06285508ed8c" + "eb415afd-511f-4b3c-9b54-8bc44b0bd095" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/providers/Microsoft.Storage.Admin/locations/local/quotas/TestDeleteQuota\",\r\n \"name\": \"local/TestDeleteQuota\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": -1,\r\n \"capacityInGb\": 0\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "339" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "87" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:26 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "59beb495-a472-4d82-8ca4-4840c25c0c53" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQp+8gy0TmGgZOW/QQghDk0BeUCburip2WJBvmXqf2HF8tFyxtwqYZKiQ7LzSwFslhT6GtcdILlT8AJGI2cjMuhsyuUjHZlB3J4qHHxNbN5iBxqBDbs0gn2fYuZ96qiuLZRQjN0TYDAZZUXIEBFQ5" - ], - "x-ms-request-id": [ - "2fd4defa-0f81-46d1-b3d8-fc88b95da95d" - ], - "x-ms-correlation-request-id": [ - "ce28d7a9-8c5a-4b7f-8941-4fe681480e79" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvgBTwYGh24TXIryFURIvr5wn3735Fl9vgVVLO79PW7FZbDtug0bosrQPz9wf4LEppQmPmfGnTXL1rQZQXolBpi6J9hGAJ9UmWMdVDBti/qgqYeLsBHPhySrbkFUfcBGVsh6rxC6HNzgxQ91LsZYoZ" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1193" + ], + "x-ms-request-id": [ + "59beb495-a472-4d82-8ca4-4840c25c0c53" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193127Z:ce28d7a9-8c5a-4b7f-8941-4fe681480e79" + "LOCAL:20190917T022929Z:59beb495-a472-4d82-8ca4-4840c25c0c53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:28 GMT" + ], + "Content-Length": [ + "185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"code\": \"InvalidParameter\",\r\n \"message\": \"Parameter quota.properties.numberOfStorageAccounts is not valid in the request\",\r\n \"target\": \"quota.properties.numberOfStorageAccounts\",\r\n \"details\": null\r\n}", + "StatusCode": 400 } ], "Names": {}, "Variables": { - "SubscriptionId": "9ad61516-995c-4873-a21f-7e44904f0ed2" + "SubscriptionId": "047e87e6-327f-4c44-8184-fb6bc35e8b38" } } \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ForAllFarmsStartGarbageCollection.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ForAllFarmsStartGarbageCollection.json deleted file mode 100644 index 432a9b7dcd2f..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ForAllFarmsStartGarbageCollection.json +++ /dev/null @@ -1,200 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "207c79c5-e1d5-43ff-8376-69991ce48094" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"type\": \"Microsoft.Storage.Admin/farms\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"version\": \"2015-12-01-preview\",\r\n \"settingsStore\": \"AzS-ACS01.azurestack.local:19000\",\r\n \"settings\": {\r\n \"settingsPollingIntervalInSecond\": 60,\r\n \"retentionPeriodForDeletedStorageAccountsInDays\": 0,\r\n \"hostStyleHttpPort\": 0,\r\n \"hostStyleHttpsPort\": 0,\r\n \"corsAllowedOriginsList\": \"https://adminportal.local.azurestack.external/;https://adminportal.local.azurestack.external:12649/;https://portal.local.azurestack.external/;https://portal.local.azurestack.external:12649/\",\r\n \"dataCenterUriHostSuffixes\": \"local.azurestack.external\",\r\n \"bandwidthThrottleIsEnabled\": false,\r\n \"usageCollectionIntervalInSeconds\": 10,\r\n \"feedbackRefreshIntervalInSeconds\": 10,\r\n \"numberOfAccountsToSync\": 20,\r\n \"defaultThrottleProbabilityDecayIntervalInSeconds\": 240,\r\n \"gracePeriodForFullThrottlingInRefreshIntervals\": 3,\r\n \"gracePeriodMaxThrottleProbability\": 0.9,\r\n \"overallRequestThresholdInTps\": 10000.0,\r\n \"defaultRequestThresholdInTps\": 200.0,\r\n \"minimumRequestThresholdInTps\": 1.0,\r\n \"toleranceFactorForTps\": 2.0,\r\n \"overallIngressThresholdInGbps\": 25.0,\r\n \"defaultIngressThresholdInGbps\": 2.0,\r\n \"minimumIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIngress\": 2.0,\r\n \"overallIntranetIngressThresholdInGbps\": 25.0,\r\n \"defaultIntranetIngressThresholdInGbps\": 2.0,\r\n \"minimumIntranetIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetIngress\": 2.0,\r\n \"overallEgressThresholdInGbps\": 30.0,\r\n \"defaultEgressThresholdInGbps\": 3.0,\r\n \"minimumEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForEgress\": 2.0,\r\n \"overallIntranetEgressThresholdInGbps\": 30.0,\r\n \"defaultIntranetEgressThresholdInGbps\": 3.0,\r\n \"minimumIntranetEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetEgress\": 2.0,\r\n \"overallTotalIngressThresholdInGbps\": 50.0,\r\n \"defaultTotalIngressThresholdInGbps\": 5.0,\r\n \"minimumTotalIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalIngress\": 2.0,\r\n \"overallTotalEgressThresholdInGbps\": 50.0,\r\n \"defaultTotalEgressThresholdInGbps\": 5.0,\r\n \"minimumTotalEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalEgress\": 2.0\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2888" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:03 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3E6rOt2et3BQPritgZT+bFwomkKV5LccdUpiUIWbWJW6KhhL3w1OK+1zz2hfjh0wJEr6nTLIjhKb2EYxpOvAjE6wGiT6dIAKGMP367Qsn0tR761WuA0dnXgpnTKFl9WdUdGYStLyGyNnCdHsJb5v" - ], - "x-ms-request-id": [ - "6ce84ad2-d00d-4a5c-bd6b-75d9e233cbd9" - ], - "x-ms-correlation-request-id": [ - "2a9390e7-ec01-419a-888d-de2cbb59490d" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14916" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193103Z:2a9390e7-ec01-419a-888d-de2cbb59490d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/ondemandgc?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL29uZGVtYW5kZ2M/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4377146b-aaec-45c4-85de-28e49c61864b" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:03 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://adminmanagement.local.azurestack.external/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/operationresults/cbef31ce-07df-4853-a847-90b219d22454?api-version=2015-12-01-preview" - ], - "Retry-After": [ - "5" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9BnOC0bDL2ieW0wBrNxoEiIdBnTtKoHyefRVRAUhho+iNfTX8tyv4GNbGtxo/s+e54ZkJSn/j25WV0gkPClo6KAtN9m1t7IY8MdoOB6AVXE1yPY5Wo1x/7+BaH6xOYU3o9bv/JHmSftYGfyWjYuT" - ], - "x-ms-request-id": [ - "07c1ee75-a95f-4466-ae56-6c93fa81462c" - ], - "x-ms-correlation-request-id": [ - "c85365b9-8689-4149-8761-e5205818cfdb" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193104Z:c85365b9-8689-4149-8761-e5205818cfdb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/operationresults/cbef31ce-07df-4853-a847-90b219d22454?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL29wZXJhdGlvbnJlc3VsdHMvY2JlZjMxY2UtMDdkZi00ODUzLWE4NDctOTBiMjE5ZDIyNDU0P2FwaS12ZXJzaW9uPTIwMTUtMTItMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{}", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:14 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5LNQdflWTijyzkpZtVxs2EYlxGihXpcKMxsa1z/585U9nCEcnkEtjUhF8PH4sE88d7CmynprzEMf5EE/nsARNeYRteMek5zrbVf+gnc9dmU782ebdHJ8aI4tuHn5Sh248VUBwLi5n+q+0JO7GHFU" - ], - "x-ms-request-id": [ - "ff1fbecc-5e13-4c6d-b843-05f441438efc" - ], - "x-ms-correlation-request-id": [ - "39d57aa7-0d19-4352-b28b-07f413f9f1bf" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14915" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193114Z:39d57aa7-0d19-4352-b28b-07f413f9f1bf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "SubscriptionId": "9ad61516-995c-4873-a21f-7e44904f0ed2" - } -} \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetAcquisition.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetAcquisition.json deleted file mode 100644 index c086775b5d91..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetAcquisition.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d893134c-57ec-40d2-a5d8-39ecf2b2a0d6" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"type\": \"Microsoft.Storage.Admin/farms\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"version\": \"2015-12-01-preview\",\r\n \"settingsStore\": \"AzS-ACS01.azurestack.local:19000\",\r\n \"settings\": {\r\n \"settingsPollingIntervalInSecond\": 60,\r\n \"retentionPeriodForDeletedStorageAccountsInDays\": 0,\r\n \"hostStyleHttpPort\": 0,\r\n \"hostStyleHttpsPort\": 0,\r\n \"corsAllowedOriginsList\": \"https://adminportal.local.azurestack.external/;https://adminportal.local.azurestack.external:12649/;https://portal.local.azurestack.external/;https://portal.local.azurestack.external:12649/\",\r\n \"dataCenterUriHostSuffixes\": \"local.azurestack.external\",\r\n \"bandwidthThrottleIsEnabled\": false,\r\n \"usageCollectionIntervalInSeconds\": 10,\r\n \"feedbackRefreshIntervalInSeconds\": 10,\r\n \"numberOfAccountsToSync\": 20,\r\n \"defaultThrottleProbabilityDecayIntervalInSeconds\": 240,\r\n \"gracePeriodForFullThrottlingInRefreshIntervals\": 3,\r\n \"gracePeriodMaxThrottleProbability\": 0.9,\r\n \"overallRequestThresholdInTps\": 10000.0,\r\n \"defaultRequestThresholdInTps\": 200.0,\r\n \"minimumRequestThresholdInTps\": 1.0,\r\n \"toleranceFactorForTps\": 2.0,\r\n \"overallIngressThresholdInGbps\": 25.0,\r\n \"defaultIngressThresholdInGbps\": 2.0,\r\n \"minimumIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIngress\": 2.0,\r\n \"overallIntranetIngressThresholdInGbps\": 25.0,\r\n \"defaultIntranetIngressThresholdInGbps\": 2.0,\r\n \"minimumIntranetIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetIngress\": 2.0,\r\n \"overallEgressThresholdInGbps\": 30.0,\r\n \"defaultEgressThresholdInGbps\": 3.0,\r\n \"minimumEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForEgress\": 2.0,\r\n \"overallIntranetEgressThresholdInGbps\": 30.0,\r\n \"defaultIntranetEgressThresholdInGbps\": 3.0,\r\n \"minimumIntranetEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetEgress\": 2.0,\r\n \"overallTotalIngressThresholdInGbps\": 50.0,\r\n \"defaultTotalIngressThresholdInGbps\": 5.0,\r\n \"minimumTotalIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalIngress\": 2.0,\r\n \"overallTotalEgressThresholdInGbps\": 50.0,\r\n \"defaultTotalEgressThresholdInGbps\": 5.0,\r\n \"minimumTotalEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalEgress\": 2.0\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2888" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:22 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5gb2XWLABjZPHTBiVrnVuG3pkUue3ndq3Am7doOzwWxM2fJZoy97/efca7Fs0EarsotFWAhQ7pYOpzIlH93JqS8iQhrd3alnq+hVrGJG5BE1cnhcVPek4Gm7KevS9mym68KsSGbuURUPHqsO3kFu" - ], - "x-ms-request-id": [ - "00a61cc4-7a5b-4d46-9dfa-e60debbef302" - ], - "x-ms-correlation-request-id": [ - "fabfacd9-5125-4ec7-b529-a6b40ae31b59" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14840" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193123Z:fabfacd9-5125-4ec7-b529-a6b40ae31b59" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/acquisitions?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL2FjcXVpc2l0aW9ucz9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "91dae1d7-7e3d-4af4-8e84-a1aba3374e98" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "[]", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:22 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJijnROl7abDH+E/bYqI7w/HNv+Cak6qv0fMYOTLyTdzUS+7+y3R4zFg3+zHT8+pnKxcZLiPPQKb5lPqJubvgkG6SCQOIulE6Wc/ESjVShCkruYyYETNW16w3Ffb+9kLbwXtSVwqpuzk1yzZshssZ" - ], - "x-ms-request-id": [ - "ead4d21f-f65c-4fb2-81d2-de23d1aae5d2" - ], - "x-ms-correlation-request-id": [ - "a0f97a93-c0d7-4519-b8dc-fa35155f9500" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14839" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193123Z:a0f97a93-c0d7-4519-b8dc-fa35155f9500" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "SubscriptionId": "9ad61516-995c-4873-a21f-7e44904f0ed2" - } -} \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetAllAcquisitions.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetAllAcquisitions.json deleted file mode 100644 index 597475bf617a..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetAllAcquisitions.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7c8beeb8-0d57-4f13-9313-264fe72c5785" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"type\": \"Microsoft.Storage.Admin/farms\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"version\": \"2015-12-01-preview\",\r\n \"settingsStore\": \"AzS-ACS01.azurestack.local:19000\",\r\n \"settings\": {\r\n \"settingsPollingIntervalInSecond\": 60,\r\n \"retentionPeriodForDeletedStorageAccountsInDays\": 0,\r\n \"hostStyleHttpPort\": 0,\r\n \"hostStyleHttpsPort\": 0,\r\n \"corsAllowedOriginsList\": \"https://adminportal.local.azurestack.external/;https://adminportal.local.azurestack.external:12649/;https://portal.local.azurestack.external/;https://portal.local.azurestack.external:12649/\",\r\n \"dataCenterUriHostSuffixes\": \"local.azurestack.external\",\r\n \"bandwidthThrottleIsEnabled\": false,\r\n \"usageCollectionIntervalInSeconds\": 10,\r\n \"feedbackRefreshIntervalInSeconds\": 10,\r\n \"numberOfAccountsToSync\": 20,\r\n \"defaultThrottleProbabilityDecayIntervalInSeconds\": 240,\r\n \"gracePeriodForFullThrottlingInRefreshIntervals\": 3,\r\n \"gracePeriodMaxThrottleProbability\": 0.9,\r\n \"overallRequestThresholdInTps\": 10000.0,\r\n \"defaultRequestThresholdInTps\": 200.0,\r\n \"minimumRequestThresholdInTps\": 1.0,\r\n \"toleranceFactorForTps\": 2.0,\r\n \"overallIngressThresholdInGbps\": 25.0,\r\n \"defaultIngressThresholdInGbps\": 2.0,\r\n \"minimumIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIngress\": 2.0,\r\n \"overallIntranetIngressThresholdInGbps\": 25.0,\r\n \"defaultIntranetIngressThresholdInGbps\": 2.0,\r\n \"minimumIntranetIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetIngress\": 2.0,\r\n \"overallEgressThresholdInGbps\": 30.0,\r\n \"defaultEgressThresholdInGbps\": 3.0,\r\n \"minimumEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForEgress\": 2.0,\r\n \"overallIntranetEgressThresholdInGbps\": 30.0,\r\n \"defaultIntranetEgressThresholdInGbps\": 3.0,\r\n \"minimumIntranetEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetEgress\": 2.0,\r\n \"overallTotalIngressThresholdInGbps\": 50.0,\r\n \"defaultTotalIngressThresholdInGbps\": 5.0,\r\n \"minimumTotalIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalIngress\": 2.0,\r\n \"overallTotalEgressThresholdInGbps\": 50.0,\r\n \"defaultTotalEgressThresholdInGbps\": 5.0,\r\n \"minimumTotalEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalEgress\": 2.0\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2888" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:22 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvuabaCS1LLsUvLpqR0JO0wlrL4LEX+p/tjyV3bdJt9luJF75I/kL1LEws0hxHasPb0d9UwVzNdPHJu2PQwM6X6C8i/R47FE0Z04zwM8LvmJdt3zjTv6jpeNbR5gl+RJ4683W/a01Ac/v8uAlgiA8u" - ], - "x-ms-request-id": [ - "70041e59-067d-4e4d-86fb-eee134b2825b" - ], - "x-ms-correlation-request-id": [ - "90d26e3a-bcda-48c2-8ee7-565dc8dd0771" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14838" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193123Z:90d26e3a-bcda-48c2-8ee7-565dc8dd0771" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/acquisitions?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL2FjcXVpc2l0aW9ucz9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e11f11de-f831-4339-9b9f-e8e1d85b63b2" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "[]", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:22 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxpIktegESHa9YMfEIrvw0HG4XBd6fVBJLM3JmTZzpQQ5Oi3rE3gLN4lQHAPoCQqHoVnD+sU6J+nDfIcmohA5Bpda6YX5GUp/H8yhsl0pkVuj9ikSjq7geQgQhkM2oYhT9G/C4Z6hqMGwRq41F5zt" - ], - "x-ms-request-id": [ - "9297e11e-1f43-4b7c-ab37-c34629577c1b" - ], - "x-ms-correlation-request-id": [ - "3b4b64a1-edba-4a22-808b-428276f08aff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14837" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193123Z:3b4b64a1-edba-4a22-808b-428276f08aff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "SubscriptionId": "9ad61516-995c-4873-a21f-7e44904f0ed2" - } -} \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetAllFarms.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetAllFarms.json deleted file mode 100644 index 327e9ecd7052..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetAllFarms.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c1e9f24b-8d4f-47df-84f2-a48b8be07ef2" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"type\": \"Microsoft.Storage.Admin/farms\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"version\": \"2015-12-01-preview\",\r\n \"settingsStore\": \"AzS-ACS01.azurestack.local:19000\",\r\n \"settings\": {\r\n \"settingsPollingIntervalInSecond\": 60,\r\n \"retentionPeriodForDeletedStorageAccountsInDays\": 0,\r\n \"hostStyleHttpPort\": 0,\r\n \"hostStyleHttpsPort\": 0,\r\n \"corsAllowedOriginsList\": \"https://adminportal.local.azurestack.external/;https://adminportal.local.azurestack.external:12649/;https://portal.local.azurestack.external/;https://portal.local.azurestack.external:12649/\",\r\n \"dataCenterUriHostSuffixes\": \"local.azurestack.external\",\r\n \"bandwidthThrottleIsEnabled\": false,\r\n \"usageCollectionIntervalInSeconds\": 10,\r\n \"feedbackRefreshIntervalInSeconds\": 10,\r\n \"numberOfAccountsToSync\": 20,\r\n \"defaultThrottleProbabilityDecayIntervalInSeconds\": 240,\r\n \"gracePeriodForFullThrottlingInRefreshIntervals\": 3,\r\n \"gracePeriodMaxThrottleProbability\": 0.9,\r\n \"overallRequestThresholdInTps\": 10000.0,\r\n \"defaultRequestThresholdInTps\": 200.0,\r\n \"minimumRequestThresholdInTps\": 1.0,\r\n \"toleranceFactorForTps\": 2.0,\r\n \"overallIngressThresholdInGbps\": 25.0,\r\n \"defaultIngressThresholdInGbps\": 2.0,\r\n \"minimumIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIngress\": 2.0,\r\n \"overallIntranetIngressThresholdInGbps\": 25.0,\r\n \"defaultIntranetIngressThresholdInGbps\": 2.0,\r\n \"minimumIntranetIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetIngress\": 2.0,\r\n \"overallEgressThresholdInGbps\": 30.0,\r\n \"defaultEgressThresholdInGbps\": 3.0,\r\n \"minimumEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForEgress\": 2.0,\r\n \"overallIntranetEgressThresholdInGbps\": 30.0,\r\n \"defaultIntranetEgressThresholdInGbps\": 3.0,\r\n \"minimumIntranetEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetEgress\": 2.0,\r\n \"overallTotalIngressThresholdInGbps\": 50.0,\r\n \"defaultTotalIngressThresholdInGbps\": 5.0,\r\n \"minimumTotalIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalIngress\": 2.0,\r\n \"overallTotalEgressThresholdInGbps\": 50.0,\r\n \"defaultTotalEgressThresholdInGbps\": 5.0,\r\n \"minimumTotalEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalEgress\": 2.0\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2888" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:03 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvlfUZxaMeeEx6jCfV6cK3PN01BVS7uv4lWX0FCbj5SXEAgaPQA/6h1fcGqIJfw93pL42QCwdrc8PRCKvJZjnyjrmbwoc16msefKnMqemLo4o8kH+V9p2ueN0WKR+7Y31otBO1fq9KNe6yssZ5KzYh" - ], - "x-ms-request-id": [ - "a1700f74-44c1-4229-a184-a02b1a11b579" - ], - "x-ms-correlation-request-id": [ - "6c487116-9738-4b26-9a75-255ba2f0b586" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193103Z:6c487116-9738-4b26-9a75-255ba2f0b586" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmP2FwaS12ZXJzaW9uPTIwMTUtMTItMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "23a9ad63-a841-4336-af9e-98de8fe12ff2" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"type\": \"Microsoft.Storage.Admin/farms\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"version\": \"2015-12-01-preview\",\r\n \"settingsStore\": \"AzS-ACS01.azurestack.local:19000\",\r\n \"settings\": {\r\n \"settingsPollingIntervalInSecond\": 60,\r\n \"retentionPeriodForDeletedStorageAccountsInDays\": 0,\r\n \"hostStyleHttpPort\": 0,\r\n \"hostStyleHttpsPort\": 0,\r\n \"corsAllowedOriginsList\": \"https://adminportal.local.azurestack.external/;https://adminportal.local.azurestack.external:12649/;https://portal.local.azurestack.external/;https://portal.local.azurestack.external:12649/\",\r\n \"dataCenterUriHostSuffixes\": \"local.azurestack.external\",\r\n \"bandwidthThrottleIsEnabled\": false,\r\n \"usageCollectionIntervalInSeconds\": 10,\r\n \"feedbackRefreshIntervalInSeconds\": 10,\r\n \"numberOfAccountsToSync\": 20,\r\n \"defaultThrottleProbabilityDecayIntervalInSeconds\": 240,\r\n \"gracePeriodForFullThrottlingInRefreshIntervals\": 3,\r\n \"gracePeriodMaxThrottleProbability\": 0.9,\r\n \"overallRequestThresholdInTps\": 10000.0,\r\n \"defaultRequestThresholdInTps\": 200.0,\r\n \"minimumRequestThresholdInTps\": 1.0,\r\n \"toleranceFactorForTps\": 2.0,\r\n \"overallIngressThresholdInGbps\": 25.0,\r\n \"defaultIngressThresholdInGbps\": 2.0,\r\n \"minimumIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIngress\": 2.0,\r\n \"overallIntranetIngressThresholdInGbps\": 25.0,\r\n \"defaultIntranetIngressThresholdInGbps\": 2.0,\r\n \"minimumIntranetIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetIngress\": 2.0,\r\n \"overallEgressThresholdInGbps\": 30.0,\r\n \"defaultEgressThresholdInGbps\": 3.0,\r\n \"minimumEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForEgress\": 2.0,\r\n \"overallIntranetEgressThresholdInGbps\": 30.0,\r\n \"defaultIntranetEgressThresholdInGbps\": 3.0,\r\n \"minimumIntranetEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetEgress\": 2.0,\r\n \"overallTotalIngressThresholdInGbps\": 50.0,\r\n \"defaultTotalIngressThresholdInGbps\": 5.0,\r\n \"minimumTotalIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalIngress\": 2.0,\r\n \"overallTotalEgressThresholdInGbps\": 50.0,\r\n \"defaultTotalEgressThresholdInGbps\": 5.0,\r\n \"minimumTotalEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalEgress\": 2.0\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2647" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:03 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvZk0E4Cs1dmswWgvfw358JO6dSAtNsF7KHwUgQI4ntIXSpvj8jDiYrMj9wgXcb5UBPPOWBL7dAVlB4awo73YMGUN0x4oi0dE7IFhSVK3lgbbHRY7dy4ySevx2UV795czgxmuIXhpxnspOU1COmhwV" - ], - "x-ms-request-id": [ - "726166b7-6adf-4fb0-ab56-ba9253dedacf" - ], - "x-ms-correlation-request-id": [ - "4cd72994-bc93-418b-a2eb-20c78a3c5a90" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14917" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193103Z:4cd72994-bc93-418b-a2eb-20c78a3c5a90" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "SubscriptionId": "9ad61516-995c-4873-a21f-7e44904f0ed2" - } -} \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetAllShares.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetAllShares.json deleted file mode 100644 index b7848f53ce8a..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetAllShares.json +++ /dev/null @@ -1,200 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "71c2f0e3-31b4-4755-be66-b439b179dbd3" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"type\": \"Microsoft.Storage.Admin/farms\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"version\": \"2015-12-01-preview\",\r\n \"settingsStore\": \"AzS-ACS01.azurestack.local:19000\",\r\n \"settings\": {\r\n \"settingsPollingIntervalInSecond\": 60,\r\n \"retentionPeriodForDeletedStorageAccountsInDays\": 0,\r\n \"hostStyleHttpPort\": 0,\r\n \"hostStyleHttpsPort\": 0,\r\n \"corsAllowedOriginsList\": \"https://adminportal.local.azurestack.external/;https://adminportal.local.azurestack.external:12649/;https://portal.local.azurestack.external/;https://portal.local.azurestack.external:12649/\",\r\n \"dataCenterUriHostSuffixes\": \"local.azurestack.external\",\r\n \"bandwidthThrottleIsEnabled\": false,\r\n \"usageCollectionIntervalInSeconds\": 10,\r\n \"feedbackRefreshIntervalInSeconds\": 10,\r\n \"numberOfAccountsToSync\": 20,\r\n \"defaultThrottleProbabilityDecayIntervalInSeconds\": 240,\r\n \"gracePeriodForFullThrottlingInRefreshIntervals\": 3,\r\n \"gracePeriodMaxThrottleProbability\": 0.9,\r\n \"overallRequestThresholdInTps\": 10000.0,\r\n \"defaultRequestThresholdInTps\": 200.0,\r\n \"minimumRequestThresholdInTps\": 1.0,\r\n \"toleranceFactorForTps\": 2.0,\r\n \"overallIngressThresholdInGbps\": 25.0,\r\n \"defaultIngressThresholdInGbps\": 2.0,\r\n \"minimumIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIngress\": 2.0,\r\n \"overallIntranetIngressThresholdInGbps\": 25.0,\r\n \"defaultIntranetIngressThresholdInGbps\": 2.0,\r\n \"minimumIntranetIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetIngress\": 2.0,\r\n \"overallEgressThresholdInGbps\": 30.0,\r\n \"defaultEgressThresholdInGbps\": 3.0,\r\n \"minimumEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForEgress\": 2.0,\r\n \"overallIntranetEgressThresholdInGbps\": 30.0,\r\n \"defaultIntranetEgressThresholdInGbps\": 3.0,\r\n \"minimumIntranetEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetEgress\": 2.0,\r\n \"overallTotalIngressThresholdInGbps\": 50.0,\r\n \"defaultTotalIngressThresholdInGbps\": 5.0,\r\n \"minimumTotalIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalIngress\": 2.0,\r\n \"overallTotalEgressThresholdInGbps\": 50.0,\r\n \"defaultTotalEgressThresholdInGbps\": 5.0,\r\n \"minimumTotalEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalEgress\": 2.0\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2888" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:24 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/wAIxWSS8ze1OSfGihHDOvkpE60HaXi8pHe9/76C/PyzONI/wRRyxWJlKCXLp2HBp41wUaoDu+Uf+pcjPAePVrJdBJK4WkOROLNw0Bt2rcALugoGzmwgEgoBgvy55V+kp8QyoOyyMufZQPx+s9Ma" - ], - "x-ms-request-id": [ - "a3014f7c-1c55-4f58-b343-68edabcce5eb" - ], - "x-ms-correlation-request-id": [ - "1c20dae3-7159-4173-9994-22151e8e74b5" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14822" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193125Z:1c20dae3-7159-4173-9994-22151e8e74b5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/shares?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3NoYXJlcz9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "04db0ae8-1ba8-4261-926a-cc4f4cf9a115" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "[\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/shares/||SU1FileServer.azurestack.local|SU1_ObjStore\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af/||SU1FileServer.azurestack.local|SU1_ObjStore\",\r\n \"type\": \"Microsoft.Storage.Admin/farms/shares\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"shareName\": \"||SU1FileServer.azurestack.local|SU1_ObjStore\",\r\n \"uncPath\": \"\\\\\\\\SU1FileServer.azurestack.local\\\\SU1_ObjStore\",\r\n \"totalCapacity\": 2728176648192,\r\n \"usedCapacity\": 400509059072,\r\n \"freeCapacity\": 2327667589120,\r\n \"healthStatus\": \"Healthy\"\r\n }\r\n }\r\n]", - "ResponseHeaders": { - "Content-Length": [ - "730" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:24 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5nw0g3pjIrass0Kt1kqR8W+mNEOeY9ozmWN70TFUSphZZApjjuEQhQbF+0lrjnhtB2oMFW/lulGTjBHAyae3py/P4KK50Tk2AjggIUnllR73tJiSv+5axPwV4KFvRV0NyBn6sMfJlZs+SNEaU1W2" - ], - "x-ms-request-id": [ - "37840ca7-b483-4870-92ac-f5e7d2582461" - ], - "x-ms-correlation-request-id": [ - "39bd0d8e-553d-4579-b9cd-d89dc3ea23f7" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14821" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193125Z:39bd0d8e-553d-4579-b9cd-d89dc3ea23f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/shares/%7C%7CSU1FileServer.azurestack.local%7CSU1_ObjStore?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3NoYXJlcy8lN0MlN0NTVTFGaWxlU2VydmVyLmF6dXJlc3RhY2subG9jYWwlN0NTVTFfT2JqU3RvcmU/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5bcf80d8-f67e-4e23-82e3-4cbd555f1371" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/shares/||SU1FileServer.azurestack.local|SU1_ObjStore\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af/||SU1FileServer.azurestack.local|SU1_ObjStore\",\r\n \"type\": \"Microsoft.Storage.Admin/farms/shares\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"shareName\": \"||SU1FileServer.azurestack.local|SU1_ObjStore\",\r\n \"uncPath\": \"\\\\\\\\SU1FileServer.azurestack.local\\\\SU1_ObjStore\",\r\n \"totalCapacity\": 2728176648192,\r\n \"usedCapacity\": 400509059072,\r\n \"freeCapacity\": 2327667589120,\r\n \"healthStatus\": \"Healthy\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "696" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:24 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzBW/TxI6lPAS4UeBI8JYROKwN5fzwlPgHUpudnows6WPKMlytTOsXAQJU/j6GeiHIl5fWdQ/6jyclJyJfzZ6E2zr2SXzXbfkrZBIpCxmMzOttvPFZnO29NH4TwZ/tv5XayslyTK1pobzRTZe8aP1" - ], - "x-ms-request-id": [ - "9273d655-5bed-48c4-95af-f1de412ece58" - ], - "x-ms-correlation-request-id": [ - "dbeec30d-1b1f-4cd5-8571-518c0e064765" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14820" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193125Z:dbeec30d-1b1f-4cd5-8571-518c0e064765" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "SubscriptionId": "9ad61516-995c-4873-a21f-7e44904f0ed2" - } -} \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetAllStorageAccounts.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetAllStorageAccounts.json index 273d0d59218d..6aa3fcbbc38a 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetAllStorageAccounts.json +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetAllStorageAccounts.json @@ -1,3208 +1,6413 @@ { "Entries": [ { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts?api-version=2019-08-08-preview&summary=false", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldyZzdW1tYXJ5PWZhbHNl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "04cfb58c-6115-40a2-9a3e-be1cfb1692ae" + "7007c895-6831-489b-83da-796896fe9e4c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "Prefer": [ + "odata.maxpagesize=1000" + ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"type\": \"Microsoft.Storage.Admin/farms\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"version\": \"2015-12-01-preview\",\r\n \"settingsStore\": \"AzS-ACS01.azurestack.local:19000\",\r\n \"settings\": {\r\n \"settingsPollingIntervalInSecond\": 60,\r\n \"retentionPeriodForDeletedStorageAccountsInDays\": 0,\r\n \"hostStyleHttpPort\": 0,\r\n \"hostStyleHttpsPort\": 0,\r\n \"corsAllowedOriginsList\": \"https://adminportal.local.azurestack.external/;https://adminportal.local.azurestack.external:12649/;https://portal.local.azurestack.external/;https://portal.local.azurestack.external:12649/\",\r\n \"dataCenterUriHostSuffixes\": \"local.azurestack.external\",\r\n \"bandwidthThrottleIsEnabled\": false,\r\n \"usageCollectionIntervalInSeconds\": 10,\r\n \"feedbackRefreshIntervalInSeconds\": 10,\r\n \"numberOfAccountsToSync\": 20,\r\n \"defaultThrottleProbabilityDecayIntervalInSeconds\": 240,\r\n \"gracePeriodForFullThrottlingInRefreshIntervals\": 3,\r\n \"gracePeriodMaxThrottleProbability\": 0.9,\r\n \"overallRequestThresholdInTps\": 10000.0,\r\n \"defaultRequestThresholdInTps\": 200.0,\r\n \"minimumRequestThresholdInTps\": 1.0,\r\n \"toleranceFactorForTps\": 2.0,\r\n \"overallIngressThresholdInGbps\": 25.0,\r\n \"defaultIngressThresholdInGbps\": 2.0,\r\n \"minimumIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIngress\": 2.0,\r\n \"overallIntranetIngressThresholdInGbps\": 25.0,\r\n \"defaultIntranetIngressThresholdInGbps\": 2.0,\r\n \"minimumIntranetIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetIngress\": 2.0,\r\n \"overallEgressThresholdInGbps\": 30.0,\r\n \"defaultEgressThresholdInGbps\": 3.0,\r\n \"minimumEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForEgress\": 2.0,\r\n \"overallIntranetEgressThresholdInGbps\": 30.0,\r\n \"defaultIntranetEgressThresholdInGbps\": 3.0,\r\n \"minimumIntranetEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetEgress\": 2.0,\r\n \"overallTotalIngressThresholdInGbps\": 50.0,\r\n \"defaultTotalIngressThresholdInGbps\": 5.0,\r\n \"minimumTotalIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalIngress\": 2.0,\r\n \"overallTotalEgressThresholdInGbps\": 50.0,\r\n \"defaultTotalEgressThresholdInGbps\": 5.0,\r\n \"minimumTotalEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalEgress\": 2.0\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "2888" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:14 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "573503ef-2ad4-4ef5-a285-97090197aaf7" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvbM/2z3OSsEFmWSp1rH7IHQewPhIfrS6p/aoJwAHWQ1oHR3vlFSvrS7eDW5iRLpCKfP0daUEWTHHKfeN1f3fNTdIKCeC/wIi4/Y5elHmCmdfCzqTFp+chT6k2V8vRE0nBYpa5veeB1bu4s1JIk/xG" - ], - "x-ms-request-id": [ - "c80cbbc8-7850-49a4-980e-08b1eb87c745" - ], - "x-ms-correlation-request-id": [ - "746b4e2d-2051-4169-b5c9-ebb44e1bf6d0" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxh71alVUg8z30NXv68dO5Vi/pn8wRP2+0f63GRVWFotOSa3sSwO+56poaSOjprdPAOBJQowDuEwDL9xe36ZgKPAkunoaK5mYVkANPEE0hj9SMVB6zycDzvvibipefkw0+NimpwGM9l/kSLmgUn8/" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14914" + "14751" + ], + "x-ms-request-id": [ + "573503ef-2ad4-4ef5-a285-97090197aaf7" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193114Z:746b4e2d-2051-4169-b5c9-ebb44e1bf6d0" + "LOCAL:20190917T022930Z:573503ef-2ad4-4ef5-a285-97090197aaf7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:29 GMT" + ], + "Content-Length": [ + "176674" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"161d2969192b4330afd8c50ec70be923\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://112srp02test112.blob.local.azurestack.external/\",\r\n \"queue\": \"https://112srp02test112.queue.local.azurestack.external/\",\r\n \"table\": \"https://112srp02test112.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 7:43:30 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 7:43:30 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 7:43:30 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/112srp02test112\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"112srp02test112\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"161d2969192b4330afd8c50ec70be923\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/6/2019 7:43:30 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/161d2969192b4330afd8c50ec70be923\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"3cca152472c84ce58d24546fa28670f7\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://505srp02test505.blob.local.azurestack.external/\",\r\n \"queue\": \"https://505srp02test505.queue.local.azurestack.external/\",\r\n \"table\": \"https://505srp02test505.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 7:11:09 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 7:11:09 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 7:11:09 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/505srp02test505\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"505srp02test505\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"3cca152472c84ce58d24546fa28670f7\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/6/2019 7:11:09 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/3cca152472c84ce58d24546fa28670f7\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"a34ab1167f1e4cb5b45865bc761ad5af\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://972srp02test972.blob.local.azurestack.external/\",\r\n \"queue\": \"https://972srp02test972.queue.local.azurestack.external/\",\r\n \"table\": \"https://972srp02test972.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 6:52:55 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 6:52:55 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 6:52:55 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/972srp02test972\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"972srp02test972\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"a34ab1167f1e4cb5b45865bc761ad5af\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/6/2019 6:52:55 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/a34ab1167f1e4cb5b45865bc761ad5af\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"287904ee8f424b8cb33774793b628d37\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://account0b5e0e0c5543418.blob.local.azurestack.external/\",\r\n \"queue\": \"https://account0b5e0e0c5543418.queue.local.azurestack.external/\",\r\n \"table\": \"https://account0b5e0e0c5543418.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:48:40 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:48:40 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:48:40 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/xrprgtestggoqug/providers/Microsoft.Storage/storageAccounts/account0b5e0e0c5543418\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"account0b5e0e0c5543418\",\r\n \"tenantResourceGroupName\": \"xrprgtestggoqug\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"287904ee8f424b8cb33774793b628d37\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:48:40 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/287904ee8f424b8cb33774793b628d37\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"57dbe5ba426f421f8af4f70b03f8b83a\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://account39a28a838e4d454.blob.local.azurestack.external/\",\r\n \"queue\": \"https://account39a28a838e4d454.queue.local.azurestack.external/\",\r\n \"table\": \"https://account39a28a838e4d454.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:25:44 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:25:44 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:25:44 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/xrprgtestapexrs/providers/Microsoft.Storage/storageAccounts/account39a28a838e4d454\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"account39a28a838e4d454\",\r\n \"tenantResourceGroupName\": \"xrprgtestapexrs\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"57dbe5ba426f421f8af4f70b03f8b83a\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:25:44 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/57dbe5ba426f421f8af4f70b03f8b83a\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"7186b489ab9f42cd8c3b278c72abfb30\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://accountb5eafb70c159445b9.blob.local.azurestack.external/\",\r\n \"queue\": \"https://accountb5eafb70c159445b9.queue.local.azurestack.external/\",\r\n \"table\": \"https://accountb5eafb70c159445b9.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:51:28 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:51:28 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:51:28 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/xrprgtestggoqug/providers/Microsoft.Storage/storageAccounts/accountb5eafb70c159445b9\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"accountb5eafb70c159445b9\",\r\n \"tenantResourceGroupName\": \"xrprgtestggoqug\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"7186b489ab9f42cd8c3b278c72abfb30\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:51:28 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/7186b489ab9f42cd8c3b278c72abfb30\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"5c4bbb40093549f08e0ff1e8190a6bb5\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://accountec581e1d0dba4b2.blob.local.azurestack.external/\",\r\n \"queue\": \"https://accountec581e1d0dba4b2.queue.local.azurestack.external/\",\r\n \"table\": \"https://accountec581e1d0dba4b2.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:51:33 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:51:33 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:51:33 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/xrprgtestgwmeqg/providers/Microsoft.Storage/storageAccounts/accountec581e1d0dba4b2\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"accountec581e1d0dba4b2\",\r\n \"tenantResourceGroupName\": \"xrprgtestgwmeqg\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"5c4bbb40093549f08e0ff1e8190a6bb5\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:51:33 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/5c4bbb40093549f08e0ff1e8190a6bb5\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"a3cb304128304b2984406244ac1c0734\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclprodbackup.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclprodbackup.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclprodbackup.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:30 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:30 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:30 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageAccounts/adminkvlclprodbackup\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"adminkvlclprodbackup\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"a3cb304128304b2984406244ac1c0734\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:30 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/a3cb304128304b2984406244ac1c0734\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"0939bebf584c4aaeaf32f2ff1510f010\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata001.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata001.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata001.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:52 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:52 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:52 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageAccounts/adminkvlclproddata001\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata001\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"0939bebf584c4aaeaf32f2ff1510f010\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:52 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/0939bebf584c4aaeaf32f2ff1510f010\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"80369ee57bd04f7787319a6637fc5606\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata002.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata002.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata002.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:55 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:55 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:55 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageAccounts/adminkvlclproddata002\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata002\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"80369ee57bd04f7787319a6637fc5606\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:55 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/80369ee57bd04f7787319a6637fc5606\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"f872844aae664f18a67eace8a7dc3736\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata003.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata003.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata003.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:56 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:56 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:56 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageAccounts/adminkvlclproddata003\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata003\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"f872844aae664f18a67eace8a7dc3736\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:56 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/f872844aae664f18a67eace8a7dc3736\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"4d7e9ada2c6a4858bd9adb2fe1274412\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata004.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata004.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata004.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:57 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:57 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:57 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageAccounts/adminkvlclproddata004\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata004\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"4d7e9ada2c6a4858bd9adb2fe1274412\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:57 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/4d7e9ada2c6a4858bd9adb2fe1274412\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"e3744b99afb74ac6b555a7c954252744\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata005.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata005.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata005.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:57 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:57 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:57 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageAccounts/adminkvlclproddata005\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata005\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"e3744b99afb74ac6b555a7c954252744\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:57 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/e3744b99afb74ac6b555a7c954252744\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"5e025d6176d446d39cda464dc750edcb\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvstoreprodlcl.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvstoreprodlcl.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvstoreprodlcl.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:29 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:29 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:29 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageAccounts/adminkvstoreprodlcl\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"adminkvstoreprodlcl\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"5e025d6176d446d39cda464dc750edcb\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:29 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/5e025d6176d446d39cda464dc750edcb\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"14d24a720da64b378ce945cb1de4f6a9\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvusage.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvusage.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvusage.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:30 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:30 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:30 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageAccounts/adminkvusage\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"adminkvusage\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"14d24a720da64b378ce945cb1de4f6a9\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:30 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/14d24a720da64b378ce945cb1de4f6a9\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"ce7c53b5a4dc4124988748ac9ebd3846\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://armadminprod.blob.local.azurestack.external/\",\r\n \"queue\": \"https://armadminprod.queue.local.azurestack.external/\",\r\n \"table\": \"https://armadminprod.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/armadminprod\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"armadminprod\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"ce7c53b5a4dc4124988748ac9ebd3846\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/ce7c53b5a4dc4124988748ac9ebd3846\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"64fbb5fc13fc4463b5467e6f18e3dcf0\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://armprod.blob.local.azurestack.external/\",\r\n \"queue\": \"https://armprod.queue.local.azurestack.external/\",\r\n \"table\": \"https://armprod.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/armprod\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"armprod\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"64fbb5fc13fc4463b5467e6f18e3dcf0\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/64fbb5fc13fc4463b5467e6f18e3dcf0\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"338890ebeee84074bd1f61b41b471c16\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://authadminprod.blob.local.azurestack.external/\",\r\n \"queue\": \"https://authadminprod.queue.local.azurestack.external/\",\r\n \"table\": \"https://authadminprod.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:33 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:33 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:33 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/authadminprod\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"authadminprod\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"338890ebeee84074bd1f61b41b471c16\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:33 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/338890ebeee84074bd1f61b41b471c16\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"f12c40fd5b6c45e6b62abe9b32d49ca0\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://authprod.blob.local.azurestack.external/\",\r\n \"queue\": \"https://authprod.queue.local.azurestack.external/\",\r\n \"table\": \"https://authprod.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/authprod\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"authprod\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"f12c40fd5b6c45e6b62abe9b32d49ca0\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/f12c40fd5b6c45e6b62abe9b32d49ca0\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"c5694dbdc21047828f206a7a1821aaae\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://azurebridgerp.blob.local.azurestack.external/\",\r\n \"queue\": \"https://azurebridgerp.queue.local.azurestack.external/\",\r\n \"table\": \"https://azurebridgerp.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/azurebridgerp\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"azurebridgerp\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"c5694dbdc21047828f206a7a1821aaae\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/c5694dbdc21047828f206a7a1821aaae\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"feedde92f4bb4a96a7fabf54498bcc00\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://bcdrbvtsa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://bcdrbvtsa.queue.local.azurestack.external/\",\r\n \"table\": \"https://bcdrbvtsa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 3:57:16 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 3:57:16 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 3:57:16 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/bcdrbvtsa\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"bcdrbvtsa\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"feedde92f4bb4a96a7fabf54498bcc00\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 3:57:16 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/feedde92f4bb4a96a7fabf54498bcc00\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"6aa9acaf71864043a1e332c0863a6e32\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://brphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://brphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://brphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:29 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:29 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:29 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/brphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"brphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"6aa9acaf71864043a1e332c0863a6e32\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:29 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/6aa9acaf71864043a1e332c0863a6e32\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"c25e6613c3494ebf877e0c83847a2114\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cnur72654921sa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://cnur72654921sa.queue.local.azurestack.external/\",\r\n \"table\": \"https://cnur72654921sa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:41:13 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:41:13 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:41:13 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/e9f9bfc4-adfa-4082-ae8b-144b186ab1a1/resourcegroups/cnur7265/providers/Microsoft.Storage/storageAccounts/cnur72654921sa\",\r\n \"tenantSubscriptionId\": \"e9f9bfc4-adfa-4082-ae8b-144b186ab1a1\",\r\n \"tenantStorageAccountName\": \"cnur72654921sa\",\r\n \"tenantResourceGroupName\": \"cnur7265\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"c25e6613c3494ebf877e0c83847a2114\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:41:13 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/c25e6613c3494ebf877e0c83847a2114\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"650d0726cbbd4ebcb76c03c6c6d957c7\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cnvr91sa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://cnvr91sa.queue.local.azurestack.external/\",\r\n \"table\": \"https://cnvr91sa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:15 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:15 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:15 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/e9f9bfc4-adfa-4082-ae8b-144b186ab1a1/resourcegroups/cnvr9/providers/Microsoft.Storage/storageAccounts/cnvr91sa\",\r\n \"tenantSubscriptionId\": \"e9f9bfc4-adfa-4082-ae8b-144b186ab1a1\",\r\n \"tenantStorageAccountName\": \"cnvr91sa\",\r\n \"tenantResourceGroupName\": \"cnvr9\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"650d0726cbbd4ebcb76c03c6c6d957c7\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:47:15 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/650d0726cbbd4ebcb76c03c6c6d957c7\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"bed148cdd2524f8da9c3788cce3cc023\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cnvr92sa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://cnvr92sa.queue.local.azurestack.external/\",\r\n \"table\": \"https://cnvr92sa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:20 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:20 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:20 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/e9f9bfc4-adfa-4082-ae8b-144b186ab1a1/resourcegroups/cnvr9/providers/Microsoft.Storage/storageAccounts/cnvr92sa\",\r\n \"tenantSubscriptionId\": \"e9f9bfc4-adfa-4082-ae8b-144b186ab1a1\",\r\n \"tenantStorageAccountName\": \"cnvr92sa\",\r\n \"tenantResourceGroupName\": \"cnvr9\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"bed148cdd2524f8da9c3788cce3cc023\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:47:20 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/bed148cdd2524f8da9c3788cce3cc023\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"dc8cb1efbc144b1abee3ccf21f876d8a\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cnvr93sa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://cnvr93sa.queue.local.azurestack.external/\",\r\n \"table\": \"https://cnvr93sa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:19 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:19 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:19 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/e9f9bfc4-adfa-4082-ae8b-144b186ab1a1/resourcegroups/cnvr9/providers/Microsoft.Storage/storageAccounts/cnvr93sa\",\r\n \"tenantSubscriptionId\": \"e9f9bfc4-adfa-4082-ae8b-144b186ab1a1\",\r\n \"tenantStorageAccountName\": \"cnvr93sa\",\r\n \"tenantResourceGroupName\": \"cnvr9\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"dc8cb1efbc144b1abee3ccf21f876d8a\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:47:19 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/dc8cb1efbc144b1abee3ccf21f876d8a\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"6516f1d584a34d3e944e8bd5d01fa732\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cnvr94sa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://cnvr94sa.queue.local.azurestack.external/\",\r\n \"table\": \"https://cnvr94sa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:16 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:16 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:16 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/e9f9bfc4-adfa-4082-ae8b-144b186ab1a1/resourcegroups/cnvr9/providers/Microsoft.Storage/storageAccounts/cnvr94sa\",\r\n \"tenantSubscriptionId\": \"e9f9bfc4-adfa-4082-ae8b-144b186ab1a1\",\r\n \"tenantStorageAccountName\": \"cnvr94sa\",\r\n \"tenantResourceGroupName\": \"cnvr9\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"6516f1d584a34d3e944e8bd5d01fa732\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:47:16 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/6516f1d584a34d3e944e8bd5d01fa732\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"6857c879a31c4ff48956748881efbd40\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crpeventsaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://crpeventsaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://crpeventsaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:41 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:41 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:41 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/crpeventsaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"crpeventsaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"6857c879a31c4ff48956748881efbd40\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:41 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/6857c879a31c4ff48956748881efbd40\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"9953cac373334354828e593e62c66b8d\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://crphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://crphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:41 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:41 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:41 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/crphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"crphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"9953cac373334354828e593e62c66b8d\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:41 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/9953cac373334354828e593e62c66b8d\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"851a1e1e996045298d59a35ad29a8582\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crpusageaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://crpusageaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://crpusageaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:42 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:42 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:42 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/crpusageaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"crpusageaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"851a1e1e996045298d59a35ad29a8582\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:42 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/851a1e1e996045298d59a35ad29a8582\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"d6eae104e11f43129aaf8950619d8b72\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://deploymentrp.blob.local.azurestack.external/\",\r\n \"queue\": \"https://deploymentrp.queue.local.azurestack.external/\",\r\n \"table\": \"https://deploymentrp.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/deploymentrp\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"deploymentrp\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"d6eae104e11f43129aaf8950619d8b72\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/d6eae104e11f43129aaf8950619d8b72\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"064454e138b446cba667db3fde601772\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://diagsetsaprimary.blob.local.azurestack.external/\",\r\n \"queue\": \"https://diagsetsaprimary.queue.local.azurestack.external/\",\r\n \"table\": \"https://diagsetsaprimary.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:49 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:49 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:49 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.AzureMonitor/providers/Microsoft.Storage/storageAccounts/diagsetsaprimary\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"diagsetsaprimary\",\r\n \"tenantResourceGroupName\": \"system.local.AzureMonitor\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"064454e138b446cba667db3fde601772\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:49 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/064454e138b446cba667db3fde601772\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"df9af90cffe54fbd904bb6df4699fb8f\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://diagsetsaprimaryadmin.blob.local.azurestack.external/\",\r\n \"queue\": \"https://diagsetsaprimaryadmin.queue.local.azurestack.external/\",\r\n \"table\": \"https://diagsetsaprimaryadmin.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:31 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:31 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:31 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.AzureMonitor/providers/Microsoft.Storage/storageAccounts/diagsetsaprimaryadmin\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"diagsetsaprimaryadmin\",\r\n \"tenantResourceGroupName\": \"system.local.AzureMonitor\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"df9af90cffe54fbd904bb6df4699fb8f\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:31 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/df9af90cffe54fbd904bb6df4699fb8f\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"66343e89738549388f9678fb3604e579\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://diskhealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://diskhealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://diskhealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:33 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:33 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:33 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/diskhealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"diskhealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"66343e89738549388f9678fb3604e579\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:33 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/66343e89738549388f9678fb3604e579\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"2ac24401adaf4197803f847628138250\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://diskusageaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://diskusageaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://diskusageaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:34 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:34 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:34 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/diskusageaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"diskusageaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"2ac24401adaf4197803f847628138250\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:34 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/2ac24401adaf4197803f847628138250\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"f3e01aa9fe0541e79cf7c9fa9240906f\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://extensionpackages.blob.local.azurestack.external/\",\r\n \"queue\": \"https://extensionpackages.queue.local.azurestack.external/\",\r\n \"table\": \"https://extensionpackages.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/extensionpackages\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"extensionpackages\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"f3e01aa9fe0541e79cf7c9fa9240906f\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/f3e01aa9fe0541e79cf7c9fa9240906f\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"77bec2066b084c5a9b976fd040de93b2\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://frphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://frphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://frphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:02 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:02 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:02 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/frphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"frphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"77bec2066b084c5a9b976fd040de93b2\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:02 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/77bec2066b084c5a9b976fd040de93b2\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"5982e4d694354b39ac0b938f89a868c0\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://hintserviceacc.blob.local.azurestack.external/\",\r\n \"queue\": \"https://hintserviceacc.queue.local.azurestack.external/\",\r\n \"table\": \"https://hintserviceacc.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:22 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:22 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:22 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/hintserviceacc\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"hintserviceacc\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"5982e4d694354b39ac0b938f89a868c0\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:22 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/5982e4d694354b39ac0b938f89a868c0\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"c6af7a075fe64d35adf34651cee28960\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://hrphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://hrphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://hrphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:22 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:22 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:22 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/hrphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"hrphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"c6af7a075fe64d35adf34651cee28960\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:22 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/c6af7a075fe64d35adf34651cee28960\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"740b452ed8c94dc581edca12a19fad2c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ibcstaging.blob.local.azurestack.external/\",\r\n \"queue\": \"https://ibcstaging.queue.local.azurestack.external/\",\r\n \"table\": \"https://ibcstaging.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:00 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:00 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:00 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/ibcstaging\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"ibcstaging\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"740b452ed8c94dc581edca12a19fad2c\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:00 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/740b452ed8c94dc581edca12a19fad2c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"62b7f44913704d53bddeee884dfd57bf\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclprodbackup.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclprodbackup.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclprodbackup.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:40 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:40 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:40 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageAccounts/kvlclprodbackup\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvlclprodbackup\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"62b7f44913704d53bddeee884dfd57bf\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:40 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/62b7f44913704d53bddeee884dfd57bf\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"df99cdb4bf4e4900ad0b755d81ea182b\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata001.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata001.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata001.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:10 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:10 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:10 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageAccounts/kvlclproddata001\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvlclproddata001\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"df99cdb4bf4e4900ad0b755d81ea182b\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:10 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/df99cdb4bf4e4900ad0b755d81ea182b\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"02cfd6e2e9c84a70ba5c56d7c1955457\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata002.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata002.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata002.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:11 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:11 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:11 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageAccounts/kvlclproddata002\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvlclproddata002\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"02cfd6e2e9c84a70ba5c56d7c1955457\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:11 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/02cfd6e2e9c84a70ba5c56d7c1955457\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"1db4b47714aa413ca5946906b1b35753\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata003.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata003.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata003.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:12 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:12 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:12 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageAccounts/kvlclproddata003\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvlclproddata003\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"1db4b47714aa413ca5946906b1b35753\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:12 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/1db4b47714aa413ca5946906b1b35753\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"a5ab43038ead4b579fa4893f3620df51\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata004.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata004.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata004.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:12 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:12 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:12 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageAccounts/kvlclproddata004\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvlclproddata004\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"a5ab43038ead4b579fa4893f3620df51\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:12 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/a5ab43038ead4b579fa4893f3620df51\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"430bef19e7a6481e896d42d8b6acd18e\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata005.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata005.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata005.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:13 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:13 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:13 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageAccounts/kvlclproddata005\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvlclproddata005\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"430bef19e7a6481e896d42d8b6acd18e\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:13 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/430bef19e7a6481e896d42d8b6acd18e\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"51d83b74202a45bf92be8d1fe4b62d7c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvrphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvrphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvrphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:14 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:14 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:14 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/kvrphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvrphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"51d83b74202a45bf92be8d1fe4b62d7c\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:14 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/51d83b74202a45bf92be8d1fe4b62d7c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"ac2089a9551a481aaea1f9f567f68dec\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvstoreprodlcl.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvstoreprodlcl.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvstoreprodlcl.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:39 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:39 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:39 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageAccounts/kvstoreprodlcl\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvstoreprodlcl\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"ac2089a9551a481aaea1f9f567f68dec\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:39 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/ac2089a9551a481aaea1f9f567f68dec\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"5142147549c14b38a69edfe80eda0ddb\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvusage.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvusage.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvusage.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:41 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:41 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:41 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageAccounts/kvusage\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvusage\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"5142147549c14b38a69edfe80eda0ddb\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:41 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/5142147549c14b38a69edfe80eda0ddb\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"94120346959148b6bbb646280f395561\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvvnsproddata.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvvnsproddata.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvvnsproddata.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:04 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:04 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:04 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.keyvault/providers/Microsoft.Storage/storageAccounts/kvvnsproddata\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvvnsproddata\",\r\n \"tenantResourceGroupName\": \"system.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"94120346959148b6bbb646280f395561\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:04 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/94120346959148b6bbb646280f395561\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"3f7056fa43f34153bbccf3c424dc8419\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://md-000bvzpxsyogq4.blob.local.azurestack.external/\",\r\n \"queue\": \"https://md-000bvzpxsyogq4.queue.local.azurestack.external/\",\r\n \"table\": \"https://md-000bvzpxsyogq4.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:32:36 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:32:36 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:32:36 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/System.local/providers/Microsoft.Storage/storageAccounts/md-000bvzpxsyogq4\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"md-000bvzpxsyogq4\",\r\n \"tenantResourceGroupName\": \"System.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"3f7056fa43f34153bbccf3c424dc8419\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:32:36 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/3f7056fa43f34153bbccf3c424dc8419\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"7b7d6df983f0474d8a2929b62c6043db\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://md-000ti1db.blob.local.azurestack.external/\",\r\n \"queue\": \"https://md-000ti1db.queue.local.azurestack.external/\",\r\n \"table\": \"https://md-000ti1db.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:48:54 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:48:54 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:48:54 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/System.local/providers/Microsoft.Storage/storageAccounts/md-000ti1db\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"md-000ti1db\",\r\n \"tenantResourceGroupName\": \"System.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"7b7d6df983f0474d8a2929b62c6043db\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:48:54 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/7b7d6df983f0474d8a2929b62c6043db\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"ed4532a3330d41758a3e8b90bda208d9\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://mdmcachesvcacc00.blob.local.azurestack.external/\",\r\n \"queue\": \"https://mdmcachesvcacc00.queue.local.azurestack.external/\",\r\n \"table\": \"https://mdmcachesvcacc00.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:16 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:16 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:16 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/mdmcachesvcacc00\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"mdmcachesvcacc00\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"ed4532a3330d41758a3e8b90bda208d9\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:16 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/ed4532a3330d41758a3e8b90bda208d9\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"944148a44cbd4b34856689c2508e7c37\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://mdmcachesvcacc01.blob.local.azurestack.external/\",\r\n \"queue\": \"https://mdmcachesvcacc01.queue.local.azurestack.external/\",\r\n \"table\": \"https://mdmcachesvcacc01.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:17 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:17 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:17 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/mdmcachesvcacc01\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"mdmcachesvcacc01\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"944148a44cbd4b34856689c2508e7c37\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:17 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/944148a44cbd4b34856689c2508e7c37\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"3524ef087be34c7595c4ed54bc196b2b\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://mdmcachesvcacc02.blob.local.azurestack.external/\",\r\n \"queue\": \"https://mdmcachesvcacc02.queue.local.azurestack.external/\",\r\n \"table\": \"https://mdmcachesvcacc02.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:17 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:17 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:17 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/mdmcachesvcacc02\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"mdmcachesvcacc02\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"3524ef087be34c7595c4ed54bc196b2b\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:17 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/3524ef087be34c7595c4ed54bc196b2b\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"30cebc847e884d6da43ee24b1ef3f4f7\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://mdmcachesvcacc03.blob.local.azurestack.external/\",\r\n \"queue\": \"https://mdmcachesvcacc03.queue.local.azurestack.external/\",\r\n \"table\": \"https://mdmcachesvcacc03.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:18 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:18 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:18 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/mdmcachesvcacc03\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"mdmcachesvcacc03\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"30cebc847e884d6da43ee24b1ef3f4f7\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:18 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/30cebc847e884d6da43ee24b1ef3f4f7\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"f5362a7ac8da4678a21176809b2e577d\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://mdmcachesvcacc04.blob.local.azurestack.external/\",\r\n \"queue\": \"https://mdmcachesvcacc04.queue.local.azurestack.external/\",\r\n \"table\": \"https://mdmcachesvcacc04.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:21 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:21 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:21 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/mdmcachesvcacc04\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"mdmcachesvcacc04\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"f5362a7ac8da4678a21176809b2e577d\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:21 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/f5362a7ac8da4678a21176809b2e577d\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"598f7339cc4a4713979f317a4c0c7467\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://mdmconfigacc.blob.local.azurestack.external/\",\r\n \"queue\": \"https://mdmconfigacc.queue.local.azurestack.external/\",\r\n \"table\": \"https://mdmconfigacc.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:27 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:27 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:27 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/mdmconfigacc\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"mdmconfigacc\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"598f7339cc4a4713979f317a4c0c7467\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:27 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/598f7339cc4a4713979f317a4c0c7467\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"c2f733330d144c308afe6d477cac04c8\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://metricsrpsa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://metricsrpsa.queue.local.azurestack.external/\",\r\n \"table\": \"https://metricsrpsa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:06 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:06 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:06 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.AzureMonitor/providers/Microsoft.Storage/storageAccounts/metricsrpsa\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"metricsrpsa\",\r\n \"tenantResourceGroupName\": \"system.local.AzureMonitor\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"c2f733330d144c308afe6d477cac04c8\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:06 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/c2f733330d144c308afe6d477cac04c8\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"b4003b09031f4779973792ee578bd9d7\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://metricsrpsaadmin.blob.local.azurestack.external/\",\r\n \"queue\": \"https://metricsrpsaadmin.queue.local.azurestack.external/\",\r\n \"table\": \"https://metricsrpsaadmin.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:08 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:08 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:08 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.AzureMonitor/providers/Microsoft.Storage/storageAccounts/metricsrpsaadmin\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"metricsrpsaadmin\",\r\n \"tenantResourceGroupName\": \"system.local.AzureMonitor\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"b4003b09031f4779973792ee578bd9d7\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:08 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/b4003b09031f4779973792ee578bd9d7\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"9ea9d696319f40c4bce8e74ae1714ae6\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://metricsstoreacc0.blob.local.azurestack.external/\",\r\n \"queue\": \"https://metricsstoreacc0.queue.local.azurestack.external/\",\r\n \"table\": \"https://metricsstoreacc0.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:23 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:23 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:23 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/metricsstoreacc0\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"metricsstoreacc0\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"9ea9d696319f40c4bce8e74ae1714ae6\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:23 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/9ea9d696319f40c4bce8e74ae1714ae6\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"8e83e5950cea4d8c980a24735861a11e\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://metricsstoreacc1.blob.local.azurestack.external/\",\r\n \"queue\": \"https://metricsstoreacc1.queue.local.azurestack.external/\",\r\n \"table\": \"https://metricsstoreacc1.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:24 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:24 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:24 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/metricsstoreacc1\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"metricsstoreacc1\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"8e83e5950cea4d8c980a24735861a11e\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:24 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/8e83e5950cea4d8c980a24735861a11e\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"703dc2d6c3fa434a9dc230fb87096826\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://metricsstoreacc2.blob.local.azurestack.external/\",\r\n \"queue\": \"https://metricsstoreacc2.queue.local.azurestack.external/\",\r\n \"table\": \"https://metricsstoreacc2.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:25 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:25 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:25 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/metricsstoreacc2\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"metricsstoreacc2\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"703dc2d6c3fa434a9dc230fb87096826\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:25 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/703dc2d6c3fa434a9dc230fb87096826\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"d2ad82d81a1342a6b9705a83792733a8\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://metricsstoreacc3.blob.local.azurestack.external/\",\r\n \"queue\": \"https://metricsstoreacc3.queue.local.azurestack.external/\",\r\n \"table\": \"https://metricsstoreacc3.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:25 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:25 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:25 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/metricsstoreacc3\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"metricsstoreacc3\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"d2ad82d81a1342a6b9705a83792733a8\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:25 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/d2ad82d81a1342a6b9705a83792733a8\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"1ab19101400a40488404bd16bea8e5d0\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://metricsstoreacc4.blob.local.azurestack.external/\",\r\n \"queue\": \"https://metricsstoreacc4.queue.local.azurestack.external/\",\r\n \"table\": \"https://metricsstoreacc4.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:26 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:26 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:26 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/metricsstoreacc4\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"metricsstoreacc4\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"1ab19101400a40488404bd16bea8e5d0\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:26 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/1ab19101400a40488404bd16bea8e5d0\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"2170af5ed61a4069b57f18e6a9a29cd2\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://monitoringrepositorysa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://monitoringrepositorysa.queue.local.azurestack.external/\",\r\n \"table\": \"https://monitoringrepositorysa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:49 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:49 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:49 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.AzureMonitor/providers/Microsoft.Storage/storageAccounts/monitoringrepositorysa\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"monitoringrepositorysa\",\r\n \"tenantResourceGroupName\": \"system.local.AzureMonitor\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"2170af5ed61a4069b57f18e6a9a29cd2\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:49 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/2170af5ed61a4069b57f18e6a9a29cd2\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"645c6b03d5cf41d98bbd2f39c41b036f\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://nrpeventsaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://nrpeventsaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://nrpeventsaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:05 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:05 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:05 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/nrpeventsaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"nrpeventsaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"645c6b03d5cf41d98bbd2f39c41b036f\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:05 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/645c6b03d5cf41d98bbd2f39c41b036f\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"4f42cba0545947218bb90e724f826eff\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://nrphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://nrphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://nrphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:05 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:05 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:05 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/nrphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"nrphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"4f42cba0545947218bb90e724f826eff\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:05 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/4f42cba0545947218bb90e724f826eff\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"8c857a44ac7b4e269fad63b294ee62b2\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://nrpusageaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://nrpusageaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://nrpusageaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:06 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:06 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:06 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/nrpusageaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"nrpusageaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"8c857a44ac7b4e269fad63b294ee62b2\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:06 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/8c857a44ac7b4e269fad63b294ee62b2\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"c4b9ab7014904681bee02c34bd751d7a\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://obometadata.blob.local.azurestack.external/\",\r\n \"queue\": \"https://obometadata.queue.local.azurestack.external/\",\r\n \"table\": \"https://obometadata.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:36 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:36 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:36 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.AzureMonitor/providers/Microsoft.Storage/storageAccounts/obometadata\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"obometadata\",\r\n \"tenantResourceGroupName\": \"system.local.AzureMonitor\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"c4b9ab7014904681bee02c34bd751d7a\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:36 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/c4b9ab7014904681bee02c34bd751d7a\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"2e4b8c28f8f747daa81cc57e8a7a1726\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://obometadataadmin.blob.local.azurestack.external/\",\r\n \"queue\": \"https://obometadataadmin.queue.local.azurestack.external/\",\r\n \"table\": \"https://obometadataadmin.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:37 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:37 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:37 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.AzureMonitor/providers/Microsoft.Storage/storageAccounts/obometadataadmin\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"obometadataadmin\",\r\n \"tenantResourceGroupName\": \"system.local.AzureMonitor\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"2e4b8c28f8f747daa81cc57e8a7a1726\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:37 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/2e4b8c28f8f747daa81cc57e8a7a1726\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"4d6d4612160d49eeafddc5d58badcadb\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://onboardrpdatasa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://onboardrpdatasa.queue.local.azurestack.external/\",\r\n \"table\": \"https://onboardrpdatasa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:44 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:44 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:44 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.AzureMonitor/providers/Microsoft.Storage/storageAccounts/onboardrpdatasa\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"onboardrpdatasa\",\r\n \"tenantResourceGroupName\": \"system.local.AzureMonitor\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"4d6d4612160d49eeafddc5d58badcadb\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:44 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/4d6d4612160d49eeafddc5d58badcadb\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"55e0c73a2365487e94cba8225fd85b8c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://portalhostingrp.blob.local.azurestack.external/\",\r\n \"queue\": \"https://portalhostingrp.queue.local.azurestack.external/\",\r\n \"table\": \"https://portalhostingrp.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:29 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:29 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:29 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/portalhostingrp\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"portalhostingrp\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"55e0c73a2365487e94cba8225fd85b8c\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:29 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/55e0c73a2365487e94cba8225fd85b8c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"64c8d5e5df6a42c694dbd61262b52191\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://publicportalhostingrp.blob.local.azurestack.external/\",\r\n \"queue\": \"https://publicportalhostingrp.queue.local.azurestack.external/\",\r\n \"table\": \"https://publicportalhostingrp.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/publicportalhostingrp\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"publicportalhostingrp\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"64c8d5e5df6a42c694dbd61262b52191\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/64c8d5e5df6a42c694dbd61262b52191\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"8501902ca0cd4e63a0da28da03e02f4c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://publicsystemevents.blob.local.azurestack.external/\",\r\n \"queue\": \"https://publicsystemevents.queue.local.azurestack.external/\",\r\n \"table\": \"https://publicsystemevents.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:27 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:27 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:27 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/publicsystemevents\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"publicsystemevents\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"8501902ca0cd4e63a0da28da03e02f4c\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:27 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/8501902ca0cd4e63a0da28da03e02f4c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"b06d2f9e795041a5b8038f964392fd51\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://publicsystemportal.blob.local.azurestack.external/\",\r\n \"queue\": \"https://publicsystemportal.queue.local.azurestack.external/\",\r\n \"table\": \"https://publicsystemportal.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/publicsystemportal\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"publicsystemportal\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"b06d2f9e795041a5b8038f964392fd51\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/b06d2f9e795041a5b8038f964392fd51\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"9c22af53e46244699a2f8187ae4c5e76\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sbrphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://sbrphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://sbrphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:02 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:02 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:02 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/sbrphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"sbrphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"9c22af53e46244699a2f8187ae4c5e76\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:02 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/9c22af53e46244699a2f8187ae4c5e76\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"2f1daa81bc224ed68b556593d3b5b5df\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://secondhintserviceacc.blob.local.azurestack.external/\",\r\n \"queue\": \"https://secondhintserviceacc.queue.local.azurestack.external/\",\r\n \"table\": \"https://secondhintserviceacc.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:23 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:23 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:23 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/secondhintserviceacc\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"secondhintserviceacc\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"2f1daa81bc224ed68b556593d3b5b5df\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:23 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/2f1daa81bc224ed68b556593d3b5b5df\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"51068b684780438ca233303c1969dede\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sfphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://sfphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://sfphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:46 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:46 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:46 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/sfphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"sfphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"51068b684780438ca233303c1969dede\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:46 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/51068b684780438ca233303c1969dede\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"05db89bad35341c6ae0748c814cb5fca\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srpeventsaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srpeventsaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srpeventsaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:33 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:33 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:33 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/srpeventsaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"srpeventsaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"05db89bad35341c6ae0748c814cb5fca\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:33 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/05db89bad35341c6ae0748c814cb5fca\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"874ac5b42e9d4c9b9c8c1ca4adc15adf\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:32 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:32 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:32 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/srphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"srphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"874ac5b42e9d4c9b9c8c1ca4adc15adf\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:32 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/874ac5b42e9d4c9b9c8c1ca4adc15adf\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"36c7de49f5a94efd9dc2fff290e4f92f\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srphyadmaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srphyadmaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srphyadmaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:38 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:38 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:38 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/srphyadmaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"srphyadmaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"36c7de49f5a94efd9dc2fff290e4f92f\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:38 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/36c7de49f5a94efd9dc2fff290e4f92f\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"1500aae54fa64b66bb994e8b6e09c9c1\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srphytenaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srphytenaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srphytenaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:38 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:38 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:38 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/srphytenaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"srphytenaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"1500aae54fa64b66bb994e8b6e09c9c1\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:38 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/1500aae54fa64b66bb994e8b6e09c9c1\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"81c8020224744cdc83905cf9b60d7859\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srpusageaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srpusageaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srpusageaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:37 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:37 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:37 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/srpusageaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"srpusageaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"81c8020224744cdc83905cf9b60d7859\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:37 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/81c8020224744cdc83905cf9b60d7859\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"263c3a055c2f48d0a99703739ace8142\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://systemevents.blob.local.azurestack.external/\",\r\n \"queue\": \"https://systemevents.queue.local.azurestack.external/\",\r\n \"table\": \"https://systemevents.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:43 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:43 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:43 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/systemevents\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"systemevents\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"263c3a055c2f48d0a99703739ace8142\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:43 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/263c3a055c2f48d0a99703739ace8142\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"ca8b593ba5374c3082ab0ed50bb81a41\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://systemgallery.blob.local.azurestack.external/\",\r\n \"queue\": \"https://systemgallery.queue.local.azurestack.external/\",\r\n \"table\": \"https://systemgallery.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/systemgallery\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"systemgallery\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"ca8b593ba5374c3082ab0ed50bb81a41\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/ca8b593ba5374c3082ab0ed50bb81a41\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"eb3455a164b941939a508671b4b642a5\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://systemportal.blob.local.azurestack.external/\",\r\n \"queue\": \"https://systemportal.queue.local.azurestack.external/\",\r\n \"table\": \"https://systemportal.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:33 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:33 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:33 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/systemportal\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"systemportal\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"eb3455a164b941939a508671b4b642a5\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:33 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/eb3455a164b941939a508671b4b642a5\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"eb9c63f8fa9c427084c8e5d00d27ded3\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://systemtemp.blob.local.azurestack.external/\",\r\n \"queue\": \"https://systemtemp.queue.local.azurestack.external/\",\r\n \"table\": \"https://systemtemp.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:24 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:24 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:24 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/systemtemp\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"systemtemp\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"eb9c63f8fa9c427084c8e5d00d27ded3\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:24 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/eb9c63f8fa9c427084c8e5d00d27ded3\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"2b55957ef12143b5a0d9fb79d74229fd\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://tenantextaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://tenantextaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://tenantextaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/tenantextaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"tenantextaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"2b55957ef12143b5a0d9fb79d74229fd\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/2b55957ef12143b5a0d9fb79d74229fd\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"2a194b24858443e39e23ebf319931d01\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://tenantextadminaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://tenantextadminaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://tenantextadminaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/tenantextadminaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"tenantextadminaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"2a194b24858443e39e23ebf319931d01\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/2a194b24858443e39e23ebf319931d01\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"b742f01b2f4b426b9323c3e11007abf9\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://updateadminaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://updateadminaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://updateadminaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:50:59 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:50:59 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:50:59 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/updateadminaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"updateadminaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"b742f01b2f4b426b9323c3e11007abf9\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:50:59 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/b742f01b2f4b426b9323c3e11007abf9\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"8b64694a95ae4b30ab1aec8b83bfa9e1\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://urphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://urphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://urphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:50:57 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:50:57 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:50:57 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/urphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"urphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"8b64694a95ae4b30ab1aec8b83bfa9e1\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:50:57 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/8b64694a95ae4b30ab1aec8b83bfa9e1\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"0a20e097132d4e5195f7a60f95da344b\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vhdsto2e4caea5.blob.local.azurestack.external/\",\r\n \"queue\": \"https://vhdsto2e4caea5.queue.local.azurestack.external/\",\r\n \"table\": \"https://vhdsto2e4caea5.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:27:02 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:27:02 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:27:02 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/vhdrgb378517a/providers/Microsoft.Storage/storageAccounts/vhdsto2e4caea5\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"vhdsto2e4caea5\",\r\n \"tenantResourceGroupName\": \"vhdrgb378517a\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"0a20e097132d4e5195f7a60f95da344b\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:27:02 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/0a20e097132d4e5195f7a60f95da344b\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"98acf4fd7ea34d8ea3317df65d63d25d\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vhdstod2b8b431.blob.local.azurestack.external/\",\r\n \"queue\": \"https://vhdstod2b8b431.queue.local.azurestack.external/\",\r\n \"table\": \"https://vhdstod2b8b431.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:26:35 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:26:35 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:26:35 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/vhdrgc2fedfc7/providers/Microsoft.Storage/storageAccounts/vhdstod2b8b431\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"vhdstod2b8b431\",\r\n \"tenantResourceGroupName\": \"vhdrgc2fedfc7\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"98acf4fd7ea34d8ea3317df65d63d25d\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:26:35 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/98acf4fd7ea34d8ea3317df65d63d25d\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"8130056ffeee44abbbd26af6ef5d6778\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vhdstoebddd5a1.blob.local.azurestack.external/\",\r\n \"queue\": \"https://vhdstoebddd5a1.queue.local.azurestack.external/\",\r\n \"table\": \"https://vhdstoebddd5a1.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:27:00 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:27:00 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:27:00 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/vhdrg2d8dca5e/providers/Microsoft.Storage/storageAccounts/vhdstoebddd5a1\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"vhdstoebddd5a1\",\r\n \"tenantResourceGroupName\": \"vhdrg2d8dca5e\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"8130056ffeee44abbbd26af6ef5d6778\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:27:00 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/8130056ffeee44abbbd26af6ef5d6778\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"3473c8d4b609420281c06539af72e25b\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://wasphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://wasphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://wasphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:20 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:20 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:20 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/wasphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"wasphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"3473c8d4b609420281c06539af72e25b\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:20 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/3473c8d4b609420281c06539af72e25b\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts?api-version=2015-12-01-preview&summary=false", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXcmc3VtbWFyeT1mYWxzZQ==", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/161d2969192b4330afd8c50ec70be923?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzE2MWQyOTY5MTkyYjQzMzBhZmQ4YzUwZWM3MGJlOTIzP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ad5ee92-e9fe-4ea5-b529-5ed25f2b8ebd" + "fef26a15-67a3-43e1-8071-486d134d3054" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/0180624c67694706a4066782d83057a5\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"0180624c67694706a4066782d83057a5\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata004.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata004.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata004.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageaccounts/adminkvlclproddata004\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata004\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"0180624c67694706a4066782d83057a5\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:27.41\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/04106a84393f4a12ab8efdbc0a69bb65\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"04106a84393f4a12ab8efdbc0a69bb65\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata005.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata005.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata005.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageaccounts/adminkvlclproddata005\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata005\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"04106a84393f4a12ab8efdbc0a69bb65\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:27.847\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/06e296e00b284f5cb5708dfabd6ad74c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"06e296e00b284f5cb5708dfabd6ad74c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://wasphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://wasphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://wasphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/wasphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"wasphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"06e296e00b284f5cb5708dfabd6ad74c\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:12.47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/0a6b4f6b1de14cc08aa1fefadcc481eb\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"0a6b4f6b1de14cc08aa1fefadcc481eb\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://frphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://frphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://frphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/frphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"frphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"0a6b4f6b1de14cc08aa1fefadcc481eb\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:02.527\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/0d724e3f75004e48948c1bfa0b4a964a\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"0d724e3f75004e48948c1bfa0b4a964a\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://systemgallery.blob.local.azurestack.external/\",\r\n \"queue\": \"https://systemgallery.queue.local.azurestack.external/\",\r\n \"table\": \"https://systemgallery.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/systemgallery\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"systemgallery\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"0d724e3f75004e48948c1bfa0b4a964a\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:29.467\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/0dda0879146341178603ba151d7da010\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"0dda0879146341178603ba151d7da010\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://nrpeventsaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://nrpeventsaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://nrpeventsaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/nrpeventsaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"nrpeventsaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"0dda0879146341178603ba151d7da010\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:23.84\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/15612011f6094654abcb6031a4394ef5\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"15612011f6094654abcb6031a4394ef5\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvrphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvrphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvrphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/kvrphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvrphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"15612011f6094654abcb6031a4394ef5\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:36.193\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/17829fa81c154239ad8a6fae05f44793\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"17829fa81c154239ad8a6fae05f44793\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srpusageaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srpusageaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srpusageaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/srpusageaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"srpusageaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"17829fa81c154239ad8a6fae05f44793\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:15.38\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/1db56fd5982f4c7289df85965988ff19\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"1db56fd5982f4c7289df85965988ff19\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://systemtemp.blob.local.azurestack.external/\",\r\n \"queue\": \"https://systemtemp.queue.local.azurestack.external/\",\r\n \"table\": \"https://systemtemp.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/systemtemp\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"systemtemp\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"1db56fd5982f4c7289df85965988ff19\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:43.66\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/224b73ac66fb409ba83db3d26ac4ec7c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"224b73ac66fb409ba83db3d26ac4ec7c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://tenantextadminaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://tenantextadminaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://tenantextadminaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/tenantextadminaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"tenantextadminaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"224b73ac66fb409ba83db3d26ac4ec7c\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:24.32\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/2ff57b811ca04500a68c4e68daf76823\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"2ff57b811ca04500a68c4e68daf76823\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclprodbackup.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclprodbackup.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclprodbackup.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageaccounts/adminkvlclprodbackup\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"adminkvlclprodbackup\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"2ff57b811ca04500a68c4e68daf76823\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:19.163\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/35340422c5c64cb3ae510e262aaed591\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"35340422c5c64cb3ae510e262aaed591\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://nrphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://nrphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://nrphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/nrphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"nrphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"35340422c5c64cb3ae510e262aaed591\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:23.45\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/36be42f131ae4852b035ccba24f529c0\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"36be42f131ae4852b035ccba24f529c0\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvusage.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvusage.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvusage.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageaccounts/adminkvusage\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"adminkvusage\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"36be42f131ae4852b035ccba24f529c0\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:19.543\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/37ed7aabf28347eca9d03509aa6a4ae7\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"37ed7aabf28347eca9d03509aa6a4ae7\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://nrpusageaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://nrpusageaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://nrpusageaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/nrpusageaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"nrpusageaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"37ed7aabf28347eca9d03509aa6a4ae7\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:24.25\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/38f227dcf5314aa18c97cc4b4e0b72a8\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"38f227dcf5314aa18c97cc4b4e0b72a8\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srphyadmaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srphyadmaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srphyadmaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/srphyadmaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"srphyadmaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"38f227dcf5314aa18c97cc4b4e0b72a8\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:16.853\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/3fe86317cc0d40e0a0d4833641a64fdb\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"3fe86317cc0d40e0a0d4833641a64fdb\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/srphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"srphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"3fe86317cc0d40e0a0d4833641a64fdb\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:14.473\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/4639bcee762c46b493fe4d611f79504b\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"4639bcee762c46b493fe4d611f79504b\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata001.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata001.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata001.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageaccounts/adminkvlclproddata001\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata001\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"4639bcee762c46b493fe4d611f79504b\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:26.23\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/5018238804f74d69abd13279fee118ba\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"5018238804f74d69abd13279fee118ba\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srphytenaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srphytenaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srphytenaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/srphytenaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"srphytenaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"5018238804f74d69abd13279fee118ba\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:16.39\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/61dd00ce90ba432a97aa66565c61abd0\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"61dd00ce90ba432a97aa66565c61abd0\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://publicsystemevents.blob.local.azurestack.external/\",\r\n \"queue\": \"https://publicsystemevents.queue.local.azurestack.external/\",\r\n \"table\": \"https://publicsystemevents.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/publicsystemevents\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"publicsystemevents\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"61dd00ce90ba432a97aa66565c61abd0\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:29.997\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/651d470800ab4633a1ac7361d243202c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"651d470800ab4633a1ac7361d243202c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://authadminprod.blob.local.azurestack.external/\",\r\n \"queue\": \"https://authadminprod.queue.local.azurestack.external/\",\r\n \"table\": \"https://authadminprod.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/authadminprod\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"authadminprod\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"651d470800ab4633a1ac7361d243202c\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:30.37\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/6941dfa7916c43d68ccf8c022b8f0446\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"6941dfa7916c43d68ccf8c022b8f0446\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://tenantextaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://tenantextaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://tenantextaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/tenantextaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"tenantextaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"6941dfa7916c43d68ccf8c022b8f0446\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:29.293\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/7acc15fcd147499a880921a074adb5de\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"7acc15fcd147499a880921a074adb5de\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvstoreprodlcl.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvstoreprodlcl.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvstoreprodlcl.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageaccounts/adminkvstoreprodlcl\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"adminkvstoreprodlcl\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"7acc15fcd147499a880921a074adb5de\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:18.777\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/7c8133ff973d4032b564dd5e34e10398\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"7c8133ff973d4032b564dd5e34e10398\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://systemportal.blob.local.azurestack.external/\",\r\n \"queue\": \"https://systemportal.queue.local.azurestack.external/\",\r\n \"table\": \"https://systemportal.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/systemportal\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"systemportal\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"7c8133ff973d4032b564dd5e34e10398\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:29.64\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/8dbaecbea3354e4cbdb89631684b612d\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"8dbaecbea3354e4cbdb89631684b612d\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://armprod.blob.local.azurestack.external/\",\r\n \"queue\": \"https://armprod.queue.local.azurestack.external/\",\r\n \"table\": \"https://armprod.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/armprod\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"armprod\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"8dbaecbea3354e4cbdb89631684b612d\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:31.17\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/8f8be5bef33f44e3a1354f2822e3165d\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"8f8be5bef33f44e3a1354f2822e3165d\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata002.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata002.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata002.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageaccounts/adminkvlclproddata002\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata002\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"8f8be5bef33f44e3a1354f2822e3165d\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:26.617\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/916252a6959543229fa45122b23f6d40\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"916252a6959543229fa45122b23f6d40\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata002.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata002.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata002.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageaccounts/kvlclproddata002\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvlclproddata002\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"916252a6959543229fa45122b23f6d40\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:34.667\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/9576f47167b644e6a0895ad0e4627a95\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"9576f47167b644e6a0895ad0e4627a95\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crpusageaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://crpusageaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://crpusageaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/crpusageaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"crpusageaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"9576f47167b644e6a0895ad0e4627a95\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:38.963\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/990c6816faa644fdb72933dc4ea77cc7\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"990c6816faa644fdb72933dc4ea77cc7\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://systemevents.blob.local.azurestack.external/\",\r\n \"queue\": \"https://systemevents.queue.local.azurestack.external/\",\r\n \"table\": \"https://systemevents.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/systemevents\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"systemevents\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"990c6816faa644fdb72933dc4ea77cc7\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:30.577\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/996281397eab4405a1575151c1d4b573\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"996281397eab4405a1575151c1d4b573\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclprodbackup.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclprodbackup.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclprodbackup.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageaccounts/kvlclprodbackup\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvlclprodbackup\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"996281397eab4405a1575151c1d4b573\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:41.333\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/9f70a4f764be465ca2434ff43c7c5be4\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"9f70a4f764be465ca2434ff43c7c5be4\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata005.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata005.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata005.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageaccounts/kvlclproddata005\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvlclproddata005\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"9f70a4f764be465ca2434ff43c7c5be4\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:35.803\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/ab9e6c77f96d42af9068ae8527214f36\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"ab9e6c77f96d42af9068ae8527214f36\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvusage.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvusage.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvusage.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageaccounts/kvusage\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvusage\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"ab9e6c77f96d42af9068ae8527214f36\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:41.713\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/ad28eb5b219f4ab6b7a5b62a3d7ca90c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"ad28eb5b219f4ab6b7a5b62a3d7ca90c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srpeventsaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srpeventsaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srpeventsaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/srpeventsaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"srpeventsaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"ad28eb5b219f4ab6b7a5b62a3d7ca90c\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:14.93\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/b27b21524dda4256876a7ee404c39183\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"b27b21524dda4256876a7ee404c39183\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata004.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata004.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata004.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageaccounts/kvlclproddata004\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvlclproddata004\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"b27b21524dda4256876a7ee404c39183\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:35.427\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/b37939f0ab67457080efbed73a12a322\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"b37939f0ab67457080efbed73a12a322\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://updateadminaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://updateadminaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://updateadminaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/updateadminaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"updateadminaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"b37939f0ab67457080efbed73a12a322\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:46.06\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/b619a28863294abab5a865e9d0fb7a7c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"b619a28863294abab5a865e9d0fb7a7c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata001.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata001.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata001.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageaccounts/kvlclproddata001\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvlclproddata001\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"b619a28863294abab5a865e9d0fb7a7c\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:34.287\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/b83acb181ff84c3e98679849c5aaa742\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"b83acb181ff84c3e98679849c5aaa742\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata003.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata003.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata003.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageaccounts/kvlclproddata003\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvlclproddata003\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"b83acb181ff84c3e98679849c5aaa742\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:35.037\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/bad37ca8583341658074db993999a8cc\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"bad37ca8583341658074db993999a8cc\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://armadminprod.blob.local.azurestack.external/\",\r\n \"queue\": \"https://armadminprod.queue.local.azurestack.external/\",\r\n \"table\": \"https://armadminprod.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/armadminprod\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"armadminprod\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"bad37ca8583341658074db993999a8cc\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:29.817\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/bd326c553a4a4914adaab93be8536269\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"bd326c553a4a4914adaab93be8536269\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvstoreprodlcl.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvstoreprodlcl.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvstoreprodlcl.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageaccounts/kvstoreprodlcl\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvstoreprodlcl\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"bd326c553a4a4914adaab93be8536269\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:40.953\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/be57c92cec0d4c268b00b70fc3c64023\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"be57c92cec0d4c268b00b70fc3c64023\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata003.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata003.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata003.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageaccounts/adminkvlclproddata003\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata003\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"be57c92cec0d4c268b00b70fc3c64023\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:26.997\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/c2a6bdd19e404154afe27e2637e64ee1\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"c2a6bdd19e404154afe27e2637e64ee1\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://hrphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://hrphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://hrphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/hrphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"hrphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"c2a6bdd19e404154afe27e2637e64ee1\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:29.983\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/c7cf2e4007614bf79741482ae435964a\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"c7cf2e4007614bf79741482ae435964a\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvvnsproddata.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvvnsproddata.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvvnsproddata.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.keyvault/providers/Microsoft.Storage/storageaccounts/kvvnsproddata\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvvnsproddata\",\r\n \"tenantResourceGroupName\": \"system.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"c7cf2e4007614bf79741482ae435964a\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:32.52\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/d5ab5566744f4480b7d891e214c208f6\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"d5ab5566744f4480b7d891e214c208f6\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://publicsystemportal.blob.local.azurestack.external/\",\r\n \"queue\": \"https://publicsystemportal.queue.local.azurestack.external/\",\r\n \"table\": \"https://publicsystemportal.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/publicsystemportal\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"publicsystemportal\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"d5ab5566744f4480b7d891e214c208f6\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:30.18\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/d927ac58d8154ff18a7834a368cf1442\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"d927ac58d8154ff18a7834a368cf1442\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crpeventsaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://crpeventsaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://crpeventsaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/crpeventsaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"crpeventsaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"d927ac58d8154ff18a7834a368cf1442\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:38.573\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/df790261d6794180ae2b22387f05e3ee\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"df790261d6794180ae2b22387f05e3ee\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://urphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://urphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://urphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/urphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"urphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"df790261d6794180ae2b22387f05e3ee\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:45.627\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/e2ee913734b040e392b1d0b2969bd098\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"e2ee913734b040e392b1d0b2969bd098\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://azurebridgerp.blob.local.azurestack.external/\",\r\n \"queue\": \"https://azurebridgerp.queue.local.azurestack.external/\",\r\n \"table\": \"https://azurebridgerp.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/azurebridgerp\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"azurebridgerp\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"e2ee913734b040e392b1d0b2969bd098\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:30.767\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/ede6aaff1e6247d99da14ec11b512c3f\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"ede6aaff1e6247d99da14ec11b512c3f\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://brphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://brphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://brphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/brphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"brphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"ede6aaff1e6247d99da14ec11b512c3f\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:21.627\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/f2e9a98feb57479880b2c66bae1c9745\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"f2e9a98feb57479880b2c66bae1c9745\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://crphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://crphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/crphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"crphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"f2e9a98feb57479880b2c66bae1c9745\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:38.157\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/f93c9df9e7af487fbda484a9201d9c18\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"f93c9df9e7af487fbda484a9201d9c18\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://authprod.blob.local.azurestack.external/\",\r\n \"queue\": \"https://authprod.queue.local.azurestack.external/\",\r\n \"table\": \"https://authprod.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/authprod\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"authprod\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"f93c9df9e7af487fbda484a9201d9c18\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:30.983\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "74969" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:14 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "d03bbddb-878d-4a72-b403-717156105669" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv7n96FCkE0zXTBLFON7FzOHpbCqddaBXKX1mto7AF6kFJYXazgoxqRDw9eeeoOh8Q0UNV7z3H/ILGNj6dF8R8eBkw7vQS3EGmOEkek6q2lJky8PtK9w7BFWC/eZ1UdZdFuTsn3qNPb4cAhISE8izG" - ], - "x-ms-request-id": [ - "ae8c5cd6-b012-4de4-9181-92f31b5b07d4" - ], - "x-ms-correlation-request-id": [ - "8f68bc11-8de7-42cf-b579-e445a0b2898d" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDqSUvKwDN0k04NW3IeVQW227wtPx+6Avs+kZ7DORATHBFmWPXbLdPfvloOYuza2OwqWj+1Oz8LYVMWjTjeOPIU5U7LojYz5ydR6GVGXW48LI3slRsIs3eR7N+35wh9PpusxXtM9WSpN9CNbDy6ba" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14913" + "14750" + ], + "x-ms-request-id": [ + "d03bbddb-878d-4a72-b403-717156105669" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193114Z:8f68bc11-8de7-42cf-b579-e445a0b2898d" + "LOCAL:20190917T022930Z:d03bbddb-878d-4a72-b403-717156105669" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:29 GMT" + ], + "Content-Length": [ + "1657" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"161d2969192b4330afd8c50ec70be923\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://112srp02test112.blob.local.azurestack.external/\",\r\n \"queue\": \"https://112srp02test112.queue.local.azurestack.external/\",\r\n \"table\": \"https://112srp02test112.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 7:43:30 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 7:43:30 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 7:43:30 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/112srp02test112\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"112srp02test112\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"161d2969192b4330afd8c50ec70be923\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/6/2019 7:43:30 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/161d2969192b4330afd8c50ec70be923\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/0180624c67694706a4066782d83057a5?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy8wMTgwNjI0YzY3Njk0NzA2YTQwNjY3ODJkODMwNTdhNT9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/3cca152472c84ce58d24546fa28670f7?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzNjY2ExNTI0NzJjODRjZTU4ZDI0NTQ2ZmEyODY3MGY3P2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81e34a8c-3880-42f1-8828-d1423a2fb653" + "8495101e-186d-4822-aec8-1f995b8c5cfa" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/0180624c67694706a4066782d83057a5\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"0180624c67694706a4066782d83057a5\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata004.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata004.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata004.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageaccounts/adminkvlclproddata004\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata004\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"0180624c67694706a4066782d83057a5\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:27.41\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1490" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:15 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "e9e6a121-e364-4eff-9b59-2a63904626c9" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvM6jan0ayK8RptxHI31oLyAgD1OeNrV5K5Zdqj9roBZUNJBrtbZu42AlKdvfTKkzck7e4M9oxBuDaZsanCJW6tiXtbL1SacfrhGGFWlEVw8IFmjgX/5sNIN9P6QH8F/mFmTusuPXKtjrEaZ+CM12r" - ], - "x-ms-request-id": [ - "9a661ebc-4b10-41ef-b09f-89a986c2ad65" - ], - "x-ms-correlation-request-id": [ - "68086db9-9d32-4048-8625-603b27c4949f" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvTme5QiHVi99oJEacywapHolfEOKq03UHe4/N5bNnZNT1+pnXlnCatqZ0m2JP3o+/zVoiHbKS54bDm8/kr361pCBYjRGlkbmQONVCQA9ncncIRrdFQUP1c57EgM3ASuxwM5NCAmyL+nq2+gHCbbDy" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14912" + "14749" + ], + "x-ms-request-id": [ + "e9e6a121-e364-4eff-9b59-2a63904626c9" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193115Z:68086db9-9d32-4048-8625-603b27c4949f" + "LOCAL:20190917T022930Z:e9e6a121-e364-4eff-9b59-2a63904626c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:30 GMT" + ], + "Content-Length": [ + "1657" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"3cca152472c84ce58d24546fa28670f7\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://505srp02test505.blob.local.azurestack.external/\",\r\n \"queue\": \"https://505srp02test505.queue.local.azurestack.external/\",\r\n \"table\": \"https://505srp02test505.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 7:11:09 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 7:11:09 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 7:11:09 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/505srp02test505\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"505srp02test505\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"3cca152472c84ce58d24546fa28670f7\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/6/2019 7:11:09 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/3cca152472c84ce58d24546fa28670f7\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/04106a84393f4a12ab8efdbc0a69bb65?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy8wNDEwNmE4NDM5M2Y0YTEyYWI4ZWZkYmMwYTY5YmI2NT9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/a34ab1167f1e4cb5b45865bc761ad5af?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzL2EzNGFiMTE2N2YxZTRjYjViNDU4NjViYzc2MWFkNWFmP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e03ad41f-254b-43d7-97e0-0c8d52498ba9" + "359591fd-8bc7-4e3a-98c4-b3a72de34d3c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/04106a84393f4a12ab8efdbc0a69bb65\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"04106a84393f4a12ab8efdbc0a69bb65\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata005.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata005.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata005.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageaccounts/adminkvlclproddata005\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata005\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"04106a84393f4a12ab8efdbc0a69bb65\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:27.847\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1490" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:15 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "00c13837-c65a-4d3c-bed6-a9c1af4756ac" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvCwTjerpf37iSEj8NDNG3PsGzvTW37CM3a1C40Lm46Quw7u8HKDoIKWjgz7ygJe5xba94WsXo9zVCLyZd/53844ssiaaBGbdLXj5axqJwY7RY09ZUalNNguaoAiIQfW4jaVNs0tnlJHTFdivjGDfU" - ], - "x-ms-request-id": [ - "b0c45873-fba5-44c8-8baf-9a806fdbe110" - ], - "x-ms-correlation-request-id": [ - "3b7e86bb-014e-4e1d-9af3-24b7146b4644" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvkzGqYNKu0qz2Y1LZzQBR5neJrl8v8Rm2Aaj8a0Zk6rYEyNEtyvftp88vB9IB2IED8WlbVA/DGb2aAEOV2RsKMe48Cd1vEsdx7HJHtgIw/iIi2szqNx3uCAHkhXuQEpZwl+dZxj1qb1WvZC1i3vSy" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14911" + "14748" + ], + "x-ms-request-id": [ + "00c13837-c65a-4d3c-bed6-a9c1af4756ac" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193115Z:3b7e86bb-014e-4e1d-9af3-24b7146b4644" + "LOCAL:20190917T022930Z:00c13837-c65a-4d3c-bed6-a9c1af4756ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:30 GMT" + ], + "Content-Length": [ + "1657" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"a34ab1167f1e4cb5b45865bc761ad5af\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://972srp02test972.blob.local.azurestack.external/\",\r\n \"queue\": \"https://972srp02test972.queue.local.azurestack.external/\",\r\n \"table\": \"https://972srp02test972.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 6:52:55 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 6:52:55 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 6:52:55 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/972srp02test972\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"972srp02test972\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"a34ab1167f1e4cb5b45865bc761ad5af\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/6/2019 6:52:55 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/a34ab1167f1e4cb5b45865bc761ad5af\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/06e296e00b284f5cb5708dfabd6ad74c?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy8wNmUyOTZlMDBiMjg0ZjVjYjU3MDhkZmFiZDZhZDc0Yz9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/287904ee8f424b8cb33774793b628d37?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzI4NzkwNGVlOGY0MjRiOGNiMzM3NzQ3OTNiNjI4ZDM3P2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5800e4f9-6366-4668-83b7-7c120218d218" + "2d8bb549-a613-4a43-af39-d870e5717b25" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/06e296e00b284f5cb5708dfabd6ad74c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"06e296e00b284f5cb5708dfabd6ad74c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://wasphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://wasphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://wasphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/wasphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"wasphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"06e296e00b284f5cb5708dfabd6ad74c\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:12.47\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1442" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:15 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "328fa13d-8ed4-4982-8d3c-ca8b35621051" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvgHpULEuiEMxJF+COUdx4s6D5eNQSXp2sAb8Uv3bgjnf9A1Fj3fXiACE3zLSoze2KYkfHzCh+wjY3nfsRNdKvZ2MLLvjMVWyOiYW+C7r0PwixP9b7Q4pCtgNCwpAV9FZ936rmCgAlatDaU4jLNJUs" - ], - "x-ms-request-id": [ - "e9edafc8-d2d0-4fc4-8216-b06ca4c9062c" - ], - "x-ms-correlation-request-id": [ - "46cddbfd-6266-4b13-90e5-b8df933b3d8a" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvIB3QBJcT//7WT8dO83BJnP1h9LOnLgt4XoQqt2m326n8HzLsR1c8WzqMV/yh7qj61IVCTSCwvduAPFm/Zksd1OqxB5IXJpEJhy4i2G1959OhLqfB24FKuWk1ZnXYBHKXRwQwuuCZRmEXyxuGsLtU" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14910" + "14747" + ], + "x-ms-request-id": [ + "328fa13d-8ed4-4982-8d3c-ca8b35621051" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193115Z:46cddbfd-6266-4b13-90e5-b8df933b3d8a" + "LOCAL:20190917T022931Z:328fa13d-8ed4-4982-8d3c-ca8b35621051" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:30 GMT" + ], + "Content-Length": [ + "1698" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"287904ee8f424b8cb33774793b628d37\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://account0b5e0e0c5543418.blob.local.azurestack.external/\",\r\n \"queue\": \"https://account0b5e0e0c5543418.queue.local.azurestack.external/\",\r\n \"table\": \"https://account0b5e0e0c5543418.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:48:40 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:48:40 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:48:40 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/xrprgtestggoqug/providers/Microsoft.Storage/storageAccounts/account0b5e0e0c5543418\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"account0b5e0e0c5543418\",\r\n \"tenantResourceGroupName\": \"xrprgtestggoqug\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"287904ee8f424b8cb33774793b628d37\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:48:40 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/287904ee8f424b8cb33774793b628d37\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/0a6b4f6b1de14cc08aa1fefadcc481eb?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy8wYTZiNGY2YjFkZTE0Y2MwOGFhMWZlZmFkY2M0ODFlYj9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/57dbe5ba426f421f8af4f70b03f8b83a?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzU3ZGJlNWJhNDI2ZjQyMWY4YWY0ZjcwYjAzZjhiODNhP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3667416a-1c72-433a-b29f-ee01441833ef" + "e59418aa-db40-4767-ba75-7650cbca60f2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/0a6b4f6b1de14cc08aa1fefadcc481eb\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"0a6b4f6b1de14cc08aa1fefadcc481eb\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://frphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://frphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://frphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/frphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"frphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"0a6b4f6b1de14cc08aa1fefadcc481eb\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:02.527\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1437" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:15 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "906fe46c-aecd-47bd-a3ca-8506e846fb3e" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJS3wYldgQ1/w0aS8oqSyUHkR5dAom8iEKfP3iwZrDhigrvI8adXX9vCJhJ+/2vGfXcE2x0C++uumfYzxMlKXPcBjJn6Z+ChApqg8v0u+gnntt7AfI1qDYwOxZih7jQPHj1nWkqvvPHp+h9ZaB/Q9" - ], - "x-ms-request-id": [ - "3eb19b34-d8c1-4386-ad60-4634dc6e18d0" - ], - "x-ms-correlation-request-id": [ - "000fb040-07f5-4b87-9d9b-4c40bd396166" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOUhvLR8h4RkMHJUrItdpBPBEML7ceGBUTGZF0hF9RSVv80OsjwNeGvX0Uy2c4edTkHUgg6cEDhhGliOGU/1jepa+wcbl1ZpMv7dkgsTNwTDbSpet5/AO8xZ35l+ABFzJxxrJVa7wrfMbntnUFKP/" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14909" + "14746" + ], + "x-ms-request-id": [ + "906fe46c-aecd-47bd-a3ca-8506e846fb3e" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193115Z:000fb040-07f5-4b87-9d9b-4c40bd396166" + "LOCAL:20190917T022931Z:906fe46c-aecd-47bd-a3ca-8506e846fb3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:30 GMT" + ], + "Content-Length": [ + "1698" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"57dbe5ba426f421f8af4f70b03f8b83a\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://account39a28a838e4d454.blob.local.azurestack.external/\",\r\n \"queue\": \"https://account39a28a838e4d454.queue.local.azurestack.external/\",\r\n \"table\": \"https://account39a28a838e4d454.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:25:44 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:25:44 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:25:44 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/xrprgtestapexrs/providers/Microsoft.Storage/storageAccounts/account39a28a838e4d454\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"account39a28a838e4d454\",\r\n \"tenantResourceGroupName\": \"xrprgtestapexrs\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"57dbe5ba426f421f8af4f70b03f8b83a\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:25:44 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/57dbe5ba426f421f8af4f70b03f8b83a\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/0d724e3f75004e48948c1bfa0b4a964a?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy8wZDcyNGUzZjc1MDA0ZTQ4OTQ4YzFiZmEwYjRhOTY0YT9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/7186b489ab9f42cd8c3b278c72abfb30?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzcxODZiNDg5YWI5ZjQyY2Q4YzNiMjc4YzcyYWJmYjMwP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1e803c1-a3a7-4abb-9d74-f86b62613858" + "b2a4022e-f286-4269-b0b0-cd0a5556beac" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/0d724e3f75004e48948c1bfa0b4a964a\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"0d724e3f75004e48948c1bfa0b4a964a\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://systemgallery.blob.local.azurestack.external/\",\r\n \"queue\": \"https://systemgallery.queue.local.azurestack.external/\",\r\n \"table\": \"https://systemgallery.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/systemgallery\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"systemgallery\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"0d724e3f75004e48948c1bfa0b4a964a\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:29.467\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1422" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:15 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "78d19683-ee53-4efc-95c2-fa7299e20f4a" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv76vNUzwyFKuySII5YSdtvYNrupDCzDWPFSI1NQB69u9dRpT/od1XaahMHsWwU6ARhVVepCjscnMOelZMWBVZQjfDls1Q0iP6N6wORzv/Oe+7NgTYKur/32NFV8/AnGsAHbOFnMibG8VRsjOLC2iT" - ], - "x-ms-request-id": [ - "c885c75e-c141-47ec-997e-b107a842ef7f" - ], - "x-ms-correlation-request-id": [ - "e028c062-6ed5-4904-bc90-e7c1e2aa34b6" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRviQAllSwDnmZTLSeT9e2Pjy2zt4fp/LQTiLVelXjemmxt7O1xKsE6qubm24Gqd7uRT7j+5aCW47GLmIIUpp4LiClo8yMSZR+LFEyFcLuSaZdJvaHJXvJKDOOvUhdzp7HpNhxsnHJCtKlp4ZzALDWe" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14908" + "14745" + ], + "x-ms-request-id": [ + "78d19683-ee53-4efc-95c2-fa7299e20f4a" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193115Z:e028c062-6ed5-4904-bc90-e7c1e2aa34b6" + "LOCAL:20190917T022931Z:78d19683-ee53-4efc-95c2-fa7299e20f4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:30 GMT" + ], + "Content-Length": [ + "1708" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"7186b489ab9f42cd8c3b278c72abfb30\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://accountb5eafb70c159445b9.blob.local.azurestack.external/\",\r\n \"queue\": \"https://accountb5eafb70c159445b9.queue.local.azurestack.external/\",\r\n \"table\": \"https://accountb5eafb70c159445b9.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:51:28 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:51:28 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:51:28 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/xrprgtestggoqug/providers/Microsoft.Storage/storageAccounts/accountb5eafb70c159445b9\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"accountb5eafb70c159445b9\",\r\n \"tenantResourceGroupName\": \"xrprgtestggoqug\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"7186b489ab9f42cd8c3b278c72abfb30\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:51:28 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/7186b489ab9f42cd8c3b278c72abfb30\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/0dda0879146341178603ba151d7da010?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy8wZGRhMDg3OTE0NjM0MTE3ODYwM2JhMTUxZDdkYTAxMD9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/5c4bbb40093549f08e0ff1e8190a6bb5?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzVjNGJiYjQwMDkzNTQ5ZjA4ZTBmZjFlODE5MGE2YmI1P2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf7c43e0-378a-40aa-919c-bf2889d01e1c" + "e6f962d6-92c7-428b-91cd-2bfc846fce2b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/0dda0879146341178603ba151d7da010\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"0dda0879146341178603ba151d7da010\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://nrpeventsaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://nrpeventsaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://nrpeventsaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/nrpeventsaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"nrpeventsaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"0dda0879146341178603ba151d7da010\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:23.84\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1437" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:15 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "f1818b1b-c05a-4a12-a623-a11216928c9a" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxUi2V8oRB9OlBb9K1CW1GWjjcEKVvD69fKIwnQ9c0topH1LaXwxLK4vy+zMV1XLbm9RtP8iuCuly2Zohc7fH44cSo34x/xcc+Sf6bFaMg4XNzVxk37LcBvR7vQ8XId1fLHNAKfNRpegWvSIEJXlJ" - ], - "x-ms-request-id": [ - "25344d29-85b8-4847-a756-e51a317b1744" - ], - "x-ms-correlation-request-id": [ - "755a3b25-588b-4a21-8f44-155d63edaf15" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvF2l0qrZid45I74uS8INKpyPwOtglokt5aH50Z02eX5JirP570lqDJKLkdjYXxn4l4IU3qPGNrCN3Q7aMHdzxgKpVwy1/ltKs37R+z5lblnQx07rhYIyHr5HzBhSt/YLCpmBb7noHIDK/S7AU1EAu" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14907" + "14744" + ], + "x-ms-request-id": [ + "f1818b1b-c05a-4a12-a623-a11216928c9a" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193115Z:755a3b25-588b-4a21-8f44-155d63edaf15" + "LOCAL:20190917T022931Z:f1818b1b-c05a-4a12-a623-a11216928c9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:30 GMT" + ], + "Content-Length": [ + "1698" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"5c4bbb40093549f08e0ff1e8190a6bb5\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://accountec581e1d0dba4b2.blob.local.azurestack.external/\",\r\n \"queue\": \"https://accountec581e1d0dba4b2.queue.local.azurestack.external/\",\r\n \"table\": \"https://accountec581e1d0dba4b2.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:51:33 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:51:33 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:51:33 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/xrprgtestgwmeqg/providers/Microsoft.Storage/storageAccounts/accountec581e1d0dba4b2\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"accountec581e1d0dba4b2\",\r\n \"tenantResourceGroupName\": \"xrprgtestgwmeqg\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"5c4bbb40093549f08e0ff1e8190a6bb5\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:51:33 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/5c4bbb40093549f08e0ff1e8190a6bb5\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/15612011f6094654abcb6031a4394ef5?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy8xNTYxMjAxMWY2MDk0NjU0YWJjYjYwMzFhNDM5NGVmNT9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/a3cb304128304b2984406244ac1c0734?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzL2EzY2IzMDQxMjgzMDRiMjk4NDQwNjI0NGFjMWMwNzM0P2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0dcfaab-ebdf-4842-a613-b8a2c0b4d934" + "eb71bbca-3240-4e21-9524-814a16119ea8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/15612011f6094654abcb6031a4394ef5\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"15612011f6094654abcb6031a4394ef5\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvrphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvrphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvrphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/kvrphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvrphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"15612011f6094654abcb6031a4394ef5\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:36.193\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1442" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:15 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "9ef90d36-2eb4-4272-9201-928e5e0ebd98" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvaVfMKVoOYJ3UoMVy8fnp56ybgDBHtkF+PVA9ScrbqBBtl5rDOnLLD4BqXhO9ybYG1wz5rG1zotcYNP1kLm8jxwP+l2bxTaKJiHsxo8W1q9gP7APwglNBldeNIyD1Jaggvp+glqQElwVnvvWtghiT" - ], - "x-ms-request-id": [ - "de4c2100-8852-4ba0-9e0c-c0ec055cad2f" - ], - "x-ms-correlation-request-id": [ - "22fe8be4-f946-4fb4-86fc-4dcc4ce92558" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvRPycvsR8LwcTJT6457nfWsF9F+RZRoOsKXwUWs6kgG/4L+8PEJW2QJyN9PIvEl1/awue2j5XU2xjaI7lnlpUrW8n14NvNTQDoVydwlJoubVAy++SJUyF9HOc4B4nhwMUIB4FNIgzV2sK5S/1Jp++" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14906" + "14743" + ], + "x-ms-request-id": [ + "9ef90d36-2eb4-4272-9201-928e5e0ebd98" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193115Z:22fe8be4-f946-4fb4-86fc-4dcc4ce92558" + "LOCAL:20190917T022931Z:9ef90d36-2eb4-4272-9201-928e5e0ebd98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:30 GMT" + ], + "Content-Length": [ + "1714" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"a3cb304128304b2984406244ac1c0734\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclprodbackup.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclprodbackup.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclprodbackup.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:30 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:30 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:30 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageAccounts/adminkvlclprodbackup\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"adminkvlclprodbackup\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"a3cb304128304b2984406244ac1c0734\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:30 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/a3cb304128304b2984406244ac1c0734\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/17829fa81c154239ad8a6fae05f44793?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy8xNzgyOWZhODFjMTU0MjM5YWQ4YTZmYWUwNWY0NDc5Mz9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/0939bebf584c4aaeaf32f2ff1510f010?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzA5MzliZWJmNTg0YzRhYWVhZjMyZjJmZjE1MTBmMDEwP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68abc1d2-7bb0-4ff5-b321-9d334fc770a3" + "e465c00a-0a97-435d-8ed8-2eeb6b9ad948" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/17829fa81c154239ad8a6fae05f44793\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"17829fa81c154239ad8a6fae05f44793\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srpusageaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srpusageaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srpusageaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/srpusageaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"srpusageaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"17829fa81c154239ad8a6fae05f44793\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:15.38\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1432" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:15 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "219ee779-1787-4012-b2b3-1d539a6f9bc9" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvVNNaxUtep1T8fHRAb08SgBdgrpFLpJWCojLvt8gJn/N1zJCR85CmsC2IoyWUCehGTCkvucHTxQydmpg3daguLhyteFvlERbm8WTbAUCeXCmQSWqdRa9nMTWsLbSE1kObGro+Wur022YNTfDfMFuD" - ], - "x-ms-request-id": [ - "9102fb62-8c8c-4b3a-a482-963bd88fec16" - ], - "x-ms-correlation-request-id": [ - "271d1105-ca5c-4d19-8539-560bf64d3aa8" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzot/cceADO5hgl9ZjuouyaVvrefskDresHB0kTzRe8Fkiy3rSXKYEOq8hoLeUjuqvtIYYtUVq3xX0FTj+GfxS3miaEC33ngAq5V+nha2c+tz+YgDjzdmN37Q8LkxaEu6Wvdj0cEElAukxv1zi0Vd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14905" + "14742" + ], + "x-ms-request-id": [ + "219ee779-1787-4012-b2b3-1d539a6f9bc9" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193115Z:271d1105-ca5c-4d19-8539-560bf64d3aa8" + "LOCAL:20190917T022931Z:219ee779-1787-4012-b2b3-1d539a6f9bc9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" - ] - }, - "StatusCode": 200 - }, + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:30 GMT" + ], + "Content-Length": [ + "1719" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"0939bebf584c4aaeaf32f2ff1510f010\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata001.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata001.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata001.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:52 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:52 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:52 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageAccounts/adminkvlclproddata001\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata001\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"0939bebf584c4aaeaf32f2ff1510f010\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:52 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/0939bebf584c4aaeaf32f2ff1510f010\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/80369ee57bd04f7787319a6637fc5606?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzgwMzY5ZWU1N2JkMDRmNzc4NzMxOWE2NjM3ZmM1NjA2P2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5efc011a-747a-4ba6-8e50-78997c96d92a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "ea22551d-f23a-4135-94fe-ee7f11a3d18a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvuyGDOJWbKivwnzbUwI96P1uxa0npPbU24eTefJynH6LndIU3J4iPVFGXBSTC0OASYZY4F+upg26j+yhV60LH7PYnxXKXM5mFpmSIgO0mJ4a7anC4KdWbzsnjAnhgbXRq4jTEssCoG+eJPC3gTIhG" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14741" + ], + "x-ms-request-id": [ + "ea22551d-f23a-4135-94fe-ee7f11a3d18a" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022931Z:ea22551d-f23a-4135-94fe-ee7f11a3d18a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:30 GMT" + ], + "Content-Length": [ + "1719" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"80369ee57bd04f7787319a6637fc5606\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata002.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata002.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata002.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:55 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:55 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:55 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageAccounts/adminkvlclproddata002\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata002\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"80369ee57bd04f7787319a6637fc5606\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:55 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/80369ee57bd04f7787319a6637fc5606\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/f872844aae664f18a67eace8a7dc3736?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzL2Y4NzI4NDRhYWU2NjRmMThhNjdlYWNlOGE3ZGMzNzM2P2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8bd428de-cfb4-4386-86eb-25825b35b5fe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "a83e3f4e-7640-4971-8f3d-f44f68f66b8e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv1niM6EMxVSI32zlisRflvayXvGhHETpLG7v+jArG0761WYd+MMDjJzqmSc/fQF1KrceCpkhXt0igswrY8r8fRvbBWDcqaKHJKhzAaH9EgTugWXIWxEzj2JPi5HGQsBR8bCcZAK4u/w8Sxt5fymno" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14740" + ], + "x-ms-request-id": [ + "a83e3f4e-7640-4971-8f3d-f44f68f66b8e" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022931Z:a83e3f4e-7640-4971-8f3d-f44f68f66b8e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:30 GMT" + ], + "Content-Length": [ + "1719" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"f872844aae664f18a67eace8a7dc3736\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata003.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata003.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata003.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:56 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:56 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:56 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageAccounts/adminkvlclproddata003\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata003\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"f872844aae664f18a67eace8a7dc3736\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:56 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/f872844aae664f18a67eace8a7dc3736\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/4d7e9ada2c6a4858bd9adb2fe1274412?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzRkN2U5YWRhMmM2YTQ4NThiZDlhZGIyZmUxMjc0NDEyP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d15e67f2-fa47-42fc-a6c7-79db06e083b2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "905e7178-9124-4654-ab42-b68f67b1bece" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvkkhTTcHSjVe7oXTjZawMqECHn1cqQitOCgBqUrctgUQ2YS5WCa2imJ5Bmgd/Xk8HXIHmikno3SBeIfS3x/6bakmHuGpD/6EPenP1JimMhJyXOnnnc76cBAVVgM0noD70mEUjELlDj6DLWGfpYRMp" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14739" + ], + "x-ms-request-id": [ + "905e7178-9124-4654-ab42-b68f67b1bece" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022931Z:905e7178-9124-4654-ab42-b68f67b1bece" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:31 GMT" + ], + "Content-Length": [ + "1719" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"4d7e9ada2c6a4858bd9adb2fe1274412\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata004.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata004.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata004.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:57 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:57 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:57 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageAccounts/adminkvlclproddata004\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata004\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"4d7e9ada2c6a4858bd9adb2fe1274412\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:57 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/4d7e9ada2c6a4858bd9adb2fe1274412\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/e3744b99afb74ac6b555a7c954252744?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzL2UzNzQ0Yjk5YWZiNzRhYzZiNTU1YTdjOTU0MjUyNzQ0P2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1d59a067-80ce-4607-81de-9f49f415bb63" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "5c480099-61b7-43cb-8d14-16ce2f76b701" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjJzGv0vCL7U0kArI7kKJ+NcyH27+aoxDkwp9Kl9L7u9FLdxGkyIONebLpopE8hlVyTCJFS4dUubJhKMrhFVK3n6Pl+8Bt6fdGB7xcRu7xS+l2j560qSHcDjGTfmHhwKYsLRj0BdlVOtld4gUETdH" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14738" + ], + "x-ms-request-id": [ + "5c480099-61b7-43cb-8d14-16ce2f76b701" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022932Z:5c480099-61b7-43cb-8d14-16ce2f76b701" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:31 GMT" + ], + "Content-Length": [ + "1719" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"e3744b99afb74ac6b555a7c954252744\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata005.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata005.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata005.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:57 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:57 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:57 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageAccounts/adminkvlclproddata005\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata005\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"e3744b99afb74ac6b555a7c954252744\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:57 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/e3744b99afb74ac6b555a7c954252744\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/5e025d6176d446d39cda464dc750edcb?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzVlMDI1ZDYxNzZkNDQ2ZDM5Y2RhNDY0ZGM3NTBlZGNiP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c534a47e-f456-4913-a56d-a6a2f2b7b006" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "2966e5d9-0ebf-4c0d-86be-b5bf7ee876fd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvFmiET9DGcOlV3oH/xOocw2rSC35N3MBROrUchJ+0tJBOsWN60d26HjCGC+3r3mQUxv9BZVpV/loiFAB3uYu+zRDJvdzdyhawKYxyOUTgnzvH5tf30Q1ORjA9bgYdk3C+q0S61c2aykU23kYnJxNN" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14737" + ], + "x-ms-request-id": [ + "2966e5d9-0ebf-4c0d-86be-b5bf7ee876fd" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022932Z:2966e5d9-0ebf-4c0d-86be-b5bf7ee876fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:31 GMT" + ], + "Content-Length": [ + "1709" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"5e025d6176d446d39cda464dc750edcb\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvstoreprodlcl.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvstoreprodlcl.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvstoreprodlcl.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:29 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:29 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:29 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageAccounts/adminkvstoreprodlcl\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"adminkvstoreprodlcl\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"5e025d6176d446d39cda464dc750edcb\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:29 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/5e025d6176d446d39cda464dc750edcb\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/14d24a720da64b378ce945cb1de4f6a9?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzE0ZDI0YTcyMGRhNjRiMzc4Y2U5NDVjYjFkZTRmNmE5P2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b2cf02d7-4c99-46a4-89b9-be9284203e25" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "d4ff8406-ce4a-401c-842e-c142bcf98403" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvPmQuhkfrZuS602prx3GJaiBn2rsRbQ1K5TlSM7Vna6bk7AJpxFZZ8zQsOfbljY9E8uAp7v3+oAAGUInT8jv22zuBsPn11qKyU0cPGnCg6AbY8FrwQMH2bdhB6nY6elcJvgccAQl+Q1KU3AiP1xCw" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14736" + ], + "x-ms-request-id": [ + "d4ff8406-ce4a-401c-842e-c142bcf98403" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022932Z:d4ff8406-ce4a-401c-842e-c142bcf98403" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:31 GMT" + ], + "Content-Length": [ + "1674" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"14d24a720da64b378ce945cb1de4f6a9\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvusage.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvusage.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvusage.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:30 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:30 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:30 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageAccounts/adminkvusage\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"adminkvusage\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"14d24a720da64b378ce945cb1de4f6a9\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:30 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/14d24a720da64b378ce945cb1de4f6a9\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/ce7c53b5a4dc4124988748ac9ebd3846?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzL2NlN2M1M2I1YTRkYzQxMjQ5ODg3NDhhYzllYmQzODQ2P2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "93a57ae1-8224-4e99-bed4-fa0914653717" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "0e9035ce-1629-4c9c-b2e2-1a930d353b6e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBrDbi1Z6ySBGdQeGtESmlWSsGJHsuPaS8Efp+JTy1S6NFcN5j7WXZjRkVMMYninyVJ6SjVenNFndL7/WCkJ9+S4invgeBJDXr5wlQVPkovqyh7hmbICVjgWwNqtkwCX7AtYDyRNAxRRrfFZcSain" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14735" + ], + "x-ms-request-id": [ + "0e9035ce-1629-4c9c-b2e2-1a930d353b6e" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022932Z:0e9035ce-1629-4c9c-b2e2-1a930d353b6e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:31 GMT" + ], + "Content-Length": [ + "1646" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ce7c53b5a4dc4124988748ac9ebd3846\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://armadminprod.blob.local.azurestack.external/\",\r\n \"queue\": \"https://armadminprod.queue.local.azurestack.external/\",\r\n \"table\": \"https://armadminprod.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/armadminprod\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"armadminprod\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"ce7c53b5a4dc4124988748ac9ebd3846\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/ce7c53b5a4dc4124988748ac9ebd3846\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/64fbb5fc13fc4463b5467e6f18e3dcf0?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzY0ZmJiNWZjMTNmYzQ0NjNiNTQ2N2U2ZjE4ZTNkY2YwP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8767ba95-c116-4b2a-9604-0caffd37f153" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "462c3c03-d2ff-44c9-bcf3-99dbdfdf0dcd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzRAuHDFXYDiL4/IuSnoIK6g3AeaQSNME6VipknYTIlvqe7BbMQd91bJ07Ky/sOBjTvlTrOij9XuH0H1nxOi7xSjRmQzBicRrcuXu8sidWEwBcvkHQK8RbEOYXZiBEDVRYiO3f88Hk3bmiV6Pn8FO" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14734" + ], + "x-ms-request-id": [ + "462c3c03-d2ff-44c9-bcf3-99dbdfdf0dcd" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022932Z:462c3c03-d2ff-44c9-bcf3-99dbdfdf0dcd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:31 GMT" + ], + "Content-Length": [ + "1621" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"64fbb5fc13fc4463b5467e6f18e3dcf0\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://armprod.blob.local.azurestack.external/\",\r\n \"queue\": \"https://armprod.queue.local.azurestack.external/\",\r\n \"table\": \"https://armprod.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/armprod\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"armprod\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"64fbb5fc13fc4463b5467e6f18e3dcf0\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/64fbb5fc13fc4463b5467e6f18e3dcf0\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/338890ebeee84074bd1f61b41b471c16?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzMzODg5MGViZWVlODQwNzRiZDFmNjFiNDFiNDcxYzE2P2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d29ac71-d792-4838-90ca-f5762783cd9e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "4c4a803c-c32c-428d-86a1-8a72014bdc31" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjifYndw+hmc3tOXrIxDTHimSGJY5Ax4C+X82o/4dwrSHKL93kdf/RAXjQDAzpZPB74U/gLHzwJVmLRBvOhkWpKfVfCRPKbaITkUJfnfBJZ6QYrLQOvK9t0E6V2QKlOMDZh5cPyzi4SjMFkMNjOuo" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14733" + ], + "x-ms-request-id": [ + "4c4a803c-c32c-428d-86a1-8a72014bdc31" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022932Z:4c4a803c-c32c-428d-86a1-8a72014bdc31" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:31 GMT" + ], + "Content-Length": [ + "1651" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"338890ebeee84074bd1f61b41b471c16\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://authadminprod.blob.local.azurestack.external/\",\r\n \"queue\": \"https://authadminprod.queue.local.azurestack.external/\",\r\n \"table\": \"https://authadminprod.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:33 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:33 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:33 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/authadminprod\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"authadminprod\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"338890ebeee84074bd1f61b41b471c16\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:33 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/338890ebeee84074bd1f61b41b471c16\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/f12c40fd5b6c45e6b62abe9b32d49ca0?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzL2YxMmM0MGZkNWI2YzQ1ZTZiNjJhYmU5YjMyZDQ5Y2EwP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "31598101-e0e1-4f27-b8e9-35ed40348c12" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "44a09d16-db5b-4e0e-879e-c6f19386bf95" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvTrbxgVxPcc2xX/k8nKi8eld22x5LwamrboWz+QgUBPXf/T8RbQU4AaBC6hIWpEzBn3oW7TPA7VZuO8jJ4jn7JmmGZz5tjVzpEZATbEP8GWLPrNNXtG89SH33Q/dMKo3Om8+IBUw07kg8YYDQzame" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14732" + ], + "x-ms-request-id": [ + "44a09d16-db5b-4e0e-879e-c6f19386bf95" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022932Z:44a09d16-db5b-4e0e-879e-c6f19386bf95" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:31 GMT" + ], + "Content-Length": [ + "1626" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"f12c40fd5b6c45e6b62abe9b32d49ca0\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://authprod.blob.local.azurestack.external/\",\r\n \"queue\": \"https://authprod.queue.local.azurestack.external/\",\r\n \"table\": \"https://authprod.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/authprod\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"authprod\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"f12c40fd5b6c45e6b62abe9b32d49ca0\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/f12c40fd5b6c45e6b62abe9b32d49ca0\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/c5694dbdc21047828f206a7a1821aaae?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzL2M1Njk0ZGJkYzIxMDQ3ODI4ZjIwNmE3YTE4MjFhYWFlP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b34f83db-2868-441d-8eb5-f12445ed46c6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "c7885f6c-a92b-4404-9b6e-b7f66b349108" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRveT+DYAV1tbioO9KaDnt+G8sQmhIdZ1V8kPOcqHhQFlyi8dLCtInv5WR2asvB4YeWfuT0hrMazywzGCaQo9l71AVpMrB5mSqirVvWlvkIcIXEaZmLiZ7bRNpAoGeyncheEOvuj3OC3b1rYZvceKih" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14731" + ], + "x-ms-request-id": [ + "c7885f6c-a92b-4404-9b6e-b7f66b349108" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022932Z:c7885f6c-a92b-4404-9b6e-b7f66b349108" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:31 GMT" + ], + "Content-Length": [ + "1651" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"c5694dbdc21047828f206a7a1821aaae\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://azurebridgerp.blob.local.azurestack.external/\",\r\n \"queue\": \"https://azurebridgerp.queue.local.azurestack.external/\",\r\n \"table\": \"https://azurebridgerp.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/azurebridgerp\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"azurebridgerp\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"c5694dbdc21047828f206a7a1821aaae\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/c5694dbdc21047828f206a7a1821aaae\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/feedde92f4bb4a96a7fabf54498bcc00?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzL2ZlZWRkZTkyZjRiYjRhOTZhN2ZhYmY1NDQ5OGJjYzAwP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "19ca426f-167e-4a9a-ac6b-2f86f8ab6e0c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "d6578933-ff91-4716-ba7d-5f8c00b74f5a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvFs+2v3CpwXtoaofoG5+YTxd0Gy6Y/VD+084u40koSvQgIJHbiU7bKiVbvluyUxZMlQgWqKU9iP5I9XdBXB0UTOi3qe/nFSuuytP7RRKfKHWWy3mFcWWBgUnS/D8Fe0eUGr4Pr/ejl+wOHDZU863a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14730" + ], + "x-ms-request-id": [ + "d6578933-ff91-4716-ba7d-5f8c00b74f5a" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022932Z:d6578933-ff91-4716-ba7d-5f8c00b74f5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:31 GMT" + ], + "Content-Length": [ + "1627" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"feedde92f4bb4a96a7fabf54498bcc00\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://bcdrbvtsa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://bcdrbvtsa.queue.local.azurestack.external/\",\r\n \"table\": \"https://bcdrbvtsa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 3:57:16 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 3:57:16 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 3:57:16 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/bcdrbvtsa\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"bcdrbvtsa\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"feedde92f4bb4a96a7fabf54498bcc00\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 3:57:16 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/feedde92f4bb4a96a7fabf54498bcc00\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/6aa9acaf71864043a1e332c0863a6e32?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzZhYTlhY2FmNzE4NjQwNDNhMWUzMzJjMDg2M2E2ZTMyP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ba983074-92c1-400b-942e-d1ca6839e3e5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "3f392904-677b-4b44-920f-5b330e2a71a1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxGN38TaaNDQvz5qOiZiJOXQx7TiRxrVVe9bQSsJFzqurZjRKBMolHKPMSReiwUYbsZiJhsVHdX0CbLPIrSDIaWbEWv5R/C4YMuEpbXpRK+vAJVeEEtCz4kpHqT1FjTXt+HB5WUYnABorwhC6w9Rp" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14729" + ], + "x-ms-request-id": [ + "3f392904-677b-4b44-920f-5b330e2a71a1" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022932Z:3f392904-677b-4b44-920f-5b330e2a71a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:32 GMT" + ], + "Content-Length": [ + "1666" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"6aa9acaf71864043a1e332c0863a6e32\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://brphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://brphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://brphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:29 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:29 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:29 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/brphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"brphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"6aa9acaf71864043a1e332c0863a6e32\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:29 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/6aa9acaf71864043a1e332c0863a6e32\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/c25e6613c3494ebf877e0c83847a2114?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzL2MyNWU2NjEzYzM0OTRlYmY4NzdlMGM4Mzg0N2EyMTE0P2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a9fada6e-7ce6-4ceb-b6d6-da19ae4185eb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "6cf16166-3572-4e0e-a67a-4b71a09599ed" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv1/vYPAbKDqhatEsRVEpoKDCq0OQoJl2CXnEU9h1vEf39gMohUUG3ROnxKEq5nuV+nsH8ir6os1dfjocE4hNTYKDHG0k8TwwtPfdb3DWtV6NWtmjPfkIv/2CWlanMxsy/0SwyLi85BwIfKvD3Fph1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14728" + ], + "x-ms-request-id": [ + "6cf16166-3572-4e0e-a67a-4b71a09599ed" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022933Z:6cf16166-3572-4e0e-a67a-4b71a09599ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:32 GMT" + ], + "Content-Length": [ + "1644" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"c25e6613c3494ebf877e0c83847a2114\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cnur72654921sa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://cnur72654921sa.queue.local.azurestack.external/\",\r\n \"table\": \"https://cnur72654921sa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:41:13 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:41:13 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:41:13 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/e9f9bfc4-adfa-4082-ae8b-144b186ab1a1/resourcegroups/cnur7265/providers/Microsoft.Storage/storageAccounts/cnur72654921sa\",\r\n \"tenantSubscriptionId\": \"e9f9bfc4-adfa-4082-ae8b-144b186ab1a1\",\r\n \"tenantStorageAccountName\": \"cnur72654921sa\",\r\n \"tenantResourceGroupName\": \"cnur7265\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"c25e6613c3494ebf877e0c83847a2114\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:41:13 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/c25e6613c3494ebf877e0c83847a2114\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/650d0726cbbd4ebcb76c03c6c6d957c7?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzY1MGQwNzI2Y2JiZDRlYmNiNzZjMDNjNmM2ZDk1N2M3P2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9a818811-46bb-4320-b3ca-534bdb917e9c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "20cdfd86-73ca-4e50-adbf-62c099719e7f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvC9ddzxPcgd475ORZ6u/OGSKwNgXtwl1Da0/L+Z5Br86W0CYU0RDH8c4oHotnP+1as2Z5uYjLiKk3vlgmbup5MOCepu2urZUABNz5nAOpqVSvDJHLBY1Q1mAWS1y66JEyCf/t/oW55DXAEnZlxoDN" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14727" + ], + "x-ms-request-id": [ + "20cdfd86-73ca-4e50-adbf-62c099719e7f" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022933Z:20cdfd86-73ca-4e50-adbf-62c099719e7f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:32 GMT" + ], + "Content-Length": [ + "1608" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"650d0726cbbd4ebcb76c03c6c6d957c7\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cnvr91sa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://cnvr91sa.queue.local.azurestack.external/\",\r\n \"table\": \"https://cnvr91sa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:15 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:15 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:15 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/e9f9bfc4-adfa-4082-ae8b-144b186ab1a1/resourcegroups/cnvr9/providers/Microsoft.Storage/storageAccounts/cnvr91sa\",\r\n \"tenantSubscriptionId\": \"e9f9bfc4-adfa-4082-ae8b-144b186ab1a1\",\r\n \"tenantStorageAccountName\": \"cnvr91sa\",\r\n \"tenantResourceGroupName\": \"cnvr9\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"650d0726cbbd4ebcb76c03c6c6d957c7\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:47:15 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/650d0726cbbd4ebcb76c03c6c6d957c7\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/bed148cdd2524f8da9c3788cce3cc023?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzL2JlZDE0OGNkZDI1MjRmOGRhOWMzNzg4Y2NlM2NjMDIzP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83041161-894e-49db-8518-55e046050dc4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "21fec321-9918-473a-bc46-d6376a357de0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvcBf2nU8mOTg7dwJJ4/c5pHI5rkjOXerBWAKHKivnrEc+j1YkMVkYM5NkIVEjKNEzvWIAk6IJQDOjjOjdV7YuLCZ5mG1N0OMDrlu2HZbXJrdhY++wx0lRlihUa+Nmm2xVwCuApiDx5TK15eOeYR8Y" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14726" + ], + "x-ms-request-id": [ + "21fec321-9918-473a-bc46-d6376a357de0" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022933Z:21fec321-9918-473a-bc46-d6376a357de0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:32 GMT" + ], + "Content-Length": [ + "1608" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"bed148cdd2524f8da9c3788cce3cc023\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cnvr92sa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://cnvr92sa.queue.local.azurestack.external/\",\r\n \"table\": \"https://cnvr92sa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:20 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:20 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:20 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/e9f9bfc4-adfa-4082-ae8b-144b186ab1a1/resourcegroups/cnvr9/providers/Microsoft.Storage/storageAccounts/cnvr92sa\",\r\n \"tenantSubscriptionId\": \"e9f9bfc4-adfa-4082-ae8b-144b186ab1a1\",\r\n \"tenantStorageAccountName\": \"cnvr92sa\",\r\n \"tenantResourceGroupName\": \"cnvr9\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"bed148cdd2524f8da9c3788cce3cc023\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:47:20 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/bed148cdd2524f8da9c3788cce3cc023\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/dc8cb1efbc144b1abee3ccf21f876d8a?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzL2RjOGNiMWVmYmMxNDRiMWFiZWUzY2NmMjFmODc2ZDhhP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b6ecab8d-a2c5-4826-85d1-1f0225d73b99" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "63435ca1-f9ae-4421-9f2d-2a79f9746c27" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5yoHfzGtAacYGXH+0l28/fP85ckpAHsYun3uSmp1ly5eLl+3sNzipcnujQBF2vwpNZ6ZFoROUXIqhy3xR4TD08K3nOcB8mSQCNLGDzZLXOUGnB+elskUamz1Z78QvHgNsAM7zuBzguFYoIeCK1J2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14725" + ], + "x-ms-request-id": [ + "63435ca1-f9ae-4421-9f2d-2a79f9746c27" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022933Z:63435ca1-f9ae-4421-9f2d-2a79f9746c27" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:32 GMT" + ], + "Content-Length": [ + "1608" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"dc8cb1efbc144b1abee3ccf21f876d8a\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cnvr93sa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://cnvr93sa.queue.local.azurestack.external/\",\r\n \"table\": \"https://cnvr93sa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:19 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:19 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:19 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/e9f9bfc4-adfa-4082-ae8b-144b186ab1a1/resourcegroups/cnvr9/providers/Microsoft.Storage/storageAccounts/cnvr93sa\",\r\n \"tenantSubscriptionId\": \"e9f9bfc4-adfa-4082-ae8b-144b186ab1a1\",\r\n \"tenantStorageAccountName\": \"cnvr93sa\",\r\n \"tenantResourceGroupName\": \"cnvr9\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"dc8cb1efbc144b1abee3ccf21f876d8a\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:47:19 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/dc8cb1efbc144b1abee3ccf21f876d8a\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/6516f1d584a34d3e944e8bd5d01fa732?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzY1MTZmMWQ1ODRhMzRkM2U5NDRlOGJkNWQwMWZhNzMyP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "98732da5-586a-4baf-927f-b2564241e649" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "90a8f42b-d44a-49eb-965c-30044184d242" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxV1fFrreGGgw//TdfGGoyUgaimiJLL1XQ+wJkVJtZg4aVgwOYR1xL4ZHcN8Nt4E4jtVB2Rd1nu2uSllc8eNTcd8jeHV9jGoXMD8i9/gs8/jLfah+Ln1suWfvUqp6h/onQ+Bu98Fxk6/se/5RLiW5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14724" + ], + "x-ms-request-id": [ + "90a8f42b-d44a-49eb-965c-30044184d242" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022933Z:90a8f42b-d44a-49eb-965c-30044184d242" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:32 GMT" + ], + "Content-Length": [ + "1608" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"6516f1d584a34d3e944e8bd5d01fa732\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cnvr94sa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://cnvr94sa.queue.local.azurestack.external/\",\r\n \"table\": \"https://cnvr94sa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:16 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:16 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:16 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/e9f9bfc4-adfa-4082-ae8b-144b186ab1a1/resourcegroups/cnvr9/providers/Microsoft.Storage/storageAccounts/cnvr94sa\",\r\n \"tenantSubscriptionId\": \"e9f9bfc4-adfa-4082-ae8b-144b186ab1a1\",\r\n \"tenantStorageAccountName\": \"cnvr94sa\",\r\n \"tenantResourceGroupName\": \"cnvr9\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"6516f1d584a34d3e944e8bd5d01fa732\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:47:16 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/6516f1d584a34d3e944e8bd5d01fa732\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/6857c879a31c4ff48956748881efbd40?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzY4NTdjODc5YTMxYzRmZjQ4OTU2NzQ4ODgxZWZiZDQwP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8ad5e861-45df-484a-a675-dbe97b734c52" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "9fb3c7ed-e9ef-4a57-8c62-addfb18d0050" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvnERqb0mE+e0KgbzP9rWe9Ugdy7Us6QDyRyj9KCOmQe4wf6BRPwdabsEyq4L6ApB+QB0a0PEHD+riwvsMZ9OQ/0oIBacRhJeCB+xkv32IQgHbWGtmzQx8XLcNRxUKyApcNXU5yZr6CZSGHcXL9rwl" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14723" + ], + "x-ms-request-id": [ + "9fb3c7ed-e9ef-4a57-8c62-addfb18d0050" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022933Z:9fb3c7ed-e9ef-4a57-8c62-addfb18d0050" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:32 GMT" + ], + "Content-Length": [ + "1666" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"6857c879a31c4ff48956748881efbd40\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crpeventsaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://crpeventsaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://crpeventsaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:41 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:41 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:41 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/crpeventsaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"crpeventsaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"6857c879a31c4ff48956748881efbd40\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:41 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/6857c879a31c4ff48956748881efbd40\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/9953cac373334354828e593e62c66b8d?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzk5NTNjYWMzNzMzMzQzNTQ4MjhlNTkzZTYyYzY2YjhkP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e831e179-a434-455f-aad6-18f36bf0260d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "66fba3a0-7644-4544-8859-8d00bfd37883" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvL6J8FRD6vJ1+6elrbPTrJlSL0vyDf0sJ6tB6HS4xCaoog3hU6Lg1LLCu+aggfG8wdq1z7tES5+PoBjn7I5O2dbcF9dNmeKUouXy9V7wxr3IFQj1gE5n2elSvekMBdCDd0iSHQ4ZPwTjaH341ClGs" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14722" + ], + "x-ms-request-id": [ + "66fba3a0-7644-4544-8859-8d00bfd37883" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022933Z:66fba3a0-7644-4544-8859-8d00bfd37883" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:32 GMT" + ], + "Content-Length": [ + "1666" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"9953cac373334354828e593e62c66b8d\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://crphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://crphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:41 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:41 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:41 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/crphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"crphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"9953cac373334354828e593e62c66b8d\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:41 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/9953cac373334354828e593e62c66b8d\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/851a1e1e996045298d59a35ad29a8582?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzg1MWExZTFlOTk2MDQ1Mjk4ZDU5YTM1YWQyOWE4NTgyP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1d5b1a2-6e5d-470e-b8bc-0427df8976b6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "87de9db1-e25c-4535-85f1-d3ccb2e883ac" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvNHC6CRuebIoJx1SIKCqKow4oINErge70zKpq7gFfrpi3v3Z//Pxs/EUelRpxJAzjehD5cUPN7/7UPzxd9rS989XdCyhpuJvuVDb2Ji9T/qmAL98TCsXwXP9t2BfctfohSv2rE5KAWsetAIJDN2F8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14721" + ], + "x-ms-request-id": [ + "87de9db1-e25c-4535-85f1-d3ccb2e883ac" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022933Z:87de9db1-e25c-4535-85f1-d3ccb2e883ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:32 GMT" + ], + "Content-Length": [ + "1661" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"851a1e1e996045298d59a35ad29a8582\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crpusageaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://crpusageaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://crpusageaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:42 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:42 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:42 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/crpusageaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"crpusageaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"851a1e1e996045298d59a35ad29a8582\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:42 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/851a1e1e996045298d59a35ad29a8582\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/d6eae104e11f43129aaf8950619d8b72?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzL2Q2ZWFlMTA0ZTExZjQzMTI5YWFmODk1MDYxOWQ4YjcyP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9ae44d54-b61e-481d-be11-32d62d9542a2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "c1329994-546f-4616-8f49-cddf61533d47" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvqvByaKC1YE1/zLJ5w86ODCfuohHDAjutRC0qELn9nRyckSF9Hf0zGdNbtHM+f7k36W0/lrffh5aQhZCRN0EJL4TnOBSZLw33axzvdsIQ6h7ly8sMP9zv49fCZxGl4+ZUI9GG1SBdD8pAzrgVPb/q" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14720" + ], + "x-ms-request-id": [ + "c1329994-546f-4616-8f49-cddf61533d47" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022933Z:c1329994-546f-4616-8f49-cddf61533d47" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:32 GMT" + ], + "Content-Length": [ + "1646" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"d6eae104e11f43129aaf8950619d8b72\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://deploymentrp.blob.local.azurestack.external/\",\r\n \"queue\": \"https://deploymentrp.queue.local.azurestack.external/\",\r\n \"table\": \"https://deploymentrp.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/deploymentrp\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"deploymentrp\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"d6eae104e11f43129aaf8950619d8b72\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/d6eae104e11f43129aaf8950619d8b72\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/064454e138b446cba667db3fde601772?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzA2NDQ1NGUxMzhiNDQ2Y2JhNjY3ZGIzZmRlNjAxNzcyP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "64e554ef-b59b-4608-8bdd-cc7030cc9266" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "781c37b3-3fad-4b31-8bdd-18451011ced2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRveOeLexKfcFPM6nnMKMsJ+SyNcqsAW1DhZS1KSwmcf3Ygvt0WPzJOsopKiYfDq3Nj9n7feF+JGR+fF/OXKQjOw3A2HFy+nXwUtQdYVJ/mgwrvhe7lFlx2gTU2VY+67PXfhLHvSfYN0BmBqRs2mw/z" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14719" + ], + "x-ms-request-id": [ + "781c37b3-3fad-4b31-8bdd-18451011ced2" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022934Z:781c37b3-3fad-4b31-8bdd-18451011ced2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:34 GMT" + ], + "Content-Length": [ + "1692" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"064454e138b446cba667db3fde601772\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://diagsetsaprimary.blob.local.azurestack.external/\",\r\n \"queue\": \"https://diagsetsaprimary.queue.local.azurestack.external/\",\r\n \"table\": \"https://diagsetsaprimary.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:49 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:49 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:49 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.AzureMonitor/providers/Microsoft.Storage/storageAccounts/diagsetsaprimary\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"diagsetsaprimary\",\r\n \"tenantResourceGroupName\": \"system.local.AzureMonitor\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"064454e138b446cba667db3fde601772\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:49 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/064454e138b446cba667db3fde601772\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/df9af90cffe54fbd904bb6df4699fb8f?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzL2RmOWFmOTBjZmZlNTRmYmQ5MDRiYjZkZjQ2OTlmYjhmP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f4324761-024f-424e-a434-d1c445ee5aba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "7f55db09-d613-4573-a623-62c16947f8fb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHdgTb6x7R1B4fEOAP7ihCLfUxKiR0eWwX5a+IOmhTtTeEac2PHRYlnAsaDF/C0Z0RH8eB0KmqDwkmylZJKIUfb5N/MZI7tQQrludLP2v5rEWyPHLPkF/6xq85TZfAM9wsTOkihGESGqOs7jnnEXg" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14718" + ], + "x-ms-request-id": [ + "7f55db09-d613-4573-a623-62c16947f8fb" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022934Z:7f55db09-d613-4573-a623-62c16947f8fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:34 GMT" + ], + "Content-Length": [ + "1717" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"df9af90cffe54fbd904bb6df4699fb8f\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://diagsetsaprimaryadmin.blob.local.azurestack.external/\",\r\n \"queue\": \"https://diagsetsaprimaryadmin.queue.local.azurestack.external/\",\r\n \"table\": \"https://diagsetsaprimaryadmin.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:31 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:31 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:31 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.AzureMonitor/providers/Microsoft.Storage/storageAccounts/diagsetsaprimaryadmin\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"diagsetsaprimaryadmin\",\r\n \"tenantResourceGroupName\": \"system.local.AzureMonitor\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"df9af90cffe54fbd904bb6df4699fb8f\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:31 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/df9af90cffe54fbd904bb6df4699fb8f\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/66343e89738549388f9678fb3604e579?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzY2MzQzZTg5NzM4NTQ5Mzg4Zjk2NzhmYjM2MDRlNTc5P2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "528bac52-012e-42b3-ab69-5f2ea40ad7f8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "f93f6de9-bcf0-4251-a6da-90bc7b5c3834" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv2UsarTEBhdIHF0M7xeEAXYF8zE7Bjo7TkT24dPjwUsszb9r4vrxy1YWT/xiWG/lxU4N2Y0+k065VoPcRgbKskHFdIDIcpZKozlKmHLdaHrC7ovYGOu6lrse8Vvq7M9QmO1z8RNGxVowg+ZgAiCJq" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14717" + ], + "x-ms-request-id": [ + "f93f6de9-bcf0-4251-a6da-90bc7b5c3834" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022934Z:f93f6de9-bcf0-4251-a6da-90bc7b5c3834" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:34 GMT" + ], + "Content-Length": [ + "1671" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"66343e89738549388f9678fb3604e579\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://diskhealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://diskhealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://diskhealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:33 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:33 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:33 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/diskhealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"diskhealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"66343e89738549388f9678fb3604e579\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:33 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/66343e89738549388f9678fb3604e579\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/2ac24401adaf4197803f847628138250?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzJhYzI0NDAxYWRhZjQxOTc4MDNmODQ3NjI4MTM4MjUwP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "12371ac0-2586-4a97-b413-2240deb7f86b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "c50df26d-7806-4d5f-80f9-2e1984ca0bc1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvsfwtqsHBnxaRHK+0rcDzSwnEmiKhjWI/cpT2uHaMF/Umw5dLYu56On7z5gDQvFyJUr7HoVQxeJnaYY3dd64ZouSxVvfXoPpHyH9TL0GGWtyQvKQG9tvKPAiMfui3Xw5D8GG/hKUyqHMkr8rJg1gh" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14716" + ], + "x-ms-request-id": [ + "c50df26d-7806-4d5f-80f9-2e1984ca0bc1" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022934Z:c50df26d-7806-4d5f-80f9-2e1984ca0bc1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:34 GMT" + ], + "Content-Length": [ + "1666" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"2ac24401adaf4197803f847628138250\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://diskusageaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://diskusageaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://diskusageaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:34 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:34 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:34 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/diskusageaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"diskusageaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"2ac24401adaf4197803f847628138250\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:34 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/2ac24401adaf4197803f847628138250\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/f3e01aa9fe0541e79cf7c9fa9240906f?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzL2YzZTAxYWE5ZmUwNTQxZTc5Y2Y3YzlmYTkyNDA5MDZmP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e44036fd-9549-4c07-a0b3-cd4d058a1b70" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "1814d1e9-e399-4948-97e0-adb40f139d29" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvuvpkvQCHmTntErJ96digSc56Cd2J9OFFmE+YCR4r9JmcpinmjmCTVP7qiFnToVl0cSnht7fnPI4dd18ioHI4XF6px0B1R7+KlfSrgN6XxjamvHu79qFy9bIyTLGY5n8D6PtcXMIZ0cVJKDClIlu4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14715" + ], + "x-ms-request-id": [ + "1814d1e9-e399-4948-97e0-adb40f139d29" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022934Z:1814d1e9-e399-4948-97e0-adb40f139d29" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:34 GMT" + ], + "Content-Length": [ + "1671" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"f3e01aa9fe0541e79cf7c9fa9240906f\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://extensionpackages.blob.local.azurestack.external/\",\r\n \"queue\": \"https://extensionpackages.queue.local.azurestack.external/\",\r\n \"table\": \"https://extensionpackages.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/extensionpackages\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"extensionpackages\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"f3e01aa9fe0541e79cf7c9fa9240906f\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/f3e01aa9fe0541e79cf7c9fa9240906f\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/77bec2066b084c5a9b976fd040de93b2?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzc3YmVjMjA2NmIwODRjNWE5Yjk3NmZkMDQwZGU5M2IyP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bed247d0-eec7-45ef-bfa5-fdf43e17dba4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "9e5a7eaa-d721-4540-8732-3cbff247f7fe" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvPX6kjcHMytNONmR3I3Wq8bC0/w/BP5387t6fGPMd4GIMfYrB0mZOGW2RXBZDJG4KPbtnglArt2u6tbLuqDAaDb72mrJxfIjY7ZJKwxU6i39mjEe918IQM9MNntsKRNiP8JwTByas56UB/m6lVpWs" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14714" + ], + "x-ms-request-id": [ + "9e5a7eaa-d721-4540-8732-3cbff247f7fe" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022934Z:9e5a7eaa-d721-4540-8732-3cbff247f7fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:34 GMT" + ], + "Content-Length": [ + "1666" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"77bec2066b084c5a9b976fd040de93b2\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://frphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://frphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://frphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:02 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:02 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:02 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/frphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"frphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"77bec2066b084c5a9b976fd040de93b2\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:02 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/77bec2066b084c5a9b976fd040de93b2\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/5982e4d694354b39ac0b938f89a868c0?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzU5ODJlNGQ2OTQzNTRiMzlhYzBiOTM4Zjg5YTg2OGMwP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "22ad1af8-cdd6-4f1b-a837-988fb5f62fa3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "5ff9d2cc-f63c-43a9-848b-27daca63f403" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRviLvFC39oiSJoIXG7O+93//JvcDKVub7tqjchybDZc/0hGDudaJs3Z5HdJnSLBL1rMe1nNJTwuOURFrqqP/H6XoCRJcSANZRfsF8g6uosMXlE6cHoQf+lgH8QE3OXuoJUeJS+MzifO28xIjDvXWRN" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14713" + ], + "x-ms-request-id": [ + "5ff9d2cc-f63c-43a9-848b-27daca63f403" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022934Z:5ff9d2cc-f63c-43a9-848b-27daca63f403" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:34 GMT" + ], + "Content-Length": [ + "1664" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"5982e4d694354b39ac0b938f89a868c0\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://hintserviceacc.blob.local.azurestack.external/\",\r\n \"queue\": \"https://hintserviceacc.queue.local.azurestack.external/\",\r\n \"table\": \"https://hintserviceacc.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:22 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:22 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:22 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/hintserviceacc\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"hintserviceacc\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"5982e4d694354b39ac0b938f89a868c0\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:22 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/5982e4d694354b39ac0b938f89a868c0\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/c6af7a075fe64d35adf34651cee28960?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzL2M2YWY3YTA3NWZlNjRkMzVhZGYzNDY1MWNlZTI4OTYwP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cde7a32f-8f8c-4c6e-bb59-ed0e27c86d5d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "f4c40faa-bfea-402f-8162-5d35f61fc55c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvnfR5dk1iUwnzcSQJfZS2Hzb/JGY9s/y4y1C+91WLA4cCr9DbIoOjGgM1Kp94TBxNPG2J/3bRinkxqEqmx5iQjCmiKLSyFqPhe6FaEQLQ3XySbC9oXYbmYIDyNbVJrjEv/CpLrj88o2NMEbbssVE1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14712" + ], + "x-ms-request-id": [ + "f4c40faa-bfea-402f-8162-5d35f61fc55c" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022934Z:f4c40faa-bfea-402f-8162-5d35f61fc55c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:34 GMT" + ], + "Content-Length": [ + "1666" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"c6af7a075fe64d35adf34651cee28960\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://hrphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://hrphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://hrphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:22 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:22 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:22 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/hrphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"hrphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"c6af7a075fe64d35adf34651cee28960\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:22 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/c6af7a075fe64d35adf34651cee28960\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/740b452ed8c94dc581edca12a19fad2c?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzc0MGI0NTJlZDhjOTRkYzU4MWVkY2ExMmExOWZhZDJjP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "667ebd5f-d539-49f7-857c-719ac9584bb3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "6641dfed-3fbc-4cc5-840a-daf63b5023a9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvNoC1ImTJufbonIG8uv1mqZoz59EjxDmiQtXhVIjv0X9nZagaH5y9xbafsjsPTzqMTOxijh0t+fIRL4G9+l1MhcmMOyRsQ+hGzhf/YkVoNteADk0EtDosfa0dtTOrMiLsjK48SDoGU1G3FP94veuB" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14711" + ], + "x-ms-request-id": [ + "6641dfed-3fbc-4cc5-840a-daf63b5023a9" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022934Z:6641dfed-3fbc-4cc5-840a-daf63b5023a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:34 GMT" + ], + "Content-Length": [ + "1636" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"740b452ed8c94dc581edca12a19fad2c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ibcstaging.blob.local.azurestack.external/\",\r\n \"queue\": \"https://ibcstaging.queue.local.azurestack.external/\",\r\n \"table\": \"https://ibcstaging.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:00 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:00 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:00 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/ibcstaging\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"ibcstaging\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"740b452ed8c94dc581edca12a19fad2c\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:00 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/740b452ed8c94dc581edca12a19fad2c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/62b7f44913704d53bddeee884dfd57bf?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzYyYjdmNDQ5MTM3MDRkNTNiZGRlZWU4ODRkZmQ1N2JmP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6cbbcc40-82d2-4208-b4ec-db7c625abaef" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "1cce1e8e-765f-4ff7-a799-cabe1650112e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvovfi4soI7xLJo1wjksvK5HmNZGRgQPgCoXJJBiaeL3HbuiMQHFcAXvyEDNZf28b+gm+RADnZaW007GkmQTrxsIdvUcDtHFo9wai9pWONG4AhcLjHZLKs7ThhMZoZXvxnFkjldfwoky+Txo9KfN6F" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14710" + ], + "x-ms-request-id": [ + "1cce1e8e-765f-4ff7-a799-cabe1650112e" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022935Z:1cce1e8e-765f-4ff7-a799-cabe1650112e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:34 GMT" + ], + "Content-Length": [ + "1679" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"62b7f44913704d53bddeee884dfd57bf\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclprodbackup.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclprodbackup.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclprodbackup.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:40 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:40 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:40 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageAccounts/kvlclprodbackup\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvlclprodbackup\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"62b7f44913704d53bddeee884dfd57bf\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:40 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/62b7f44913704d53bddeee884dfd57bf\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/df99cdb4bf4e4900ad0b755d81ea182b?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzL2RmOTljZGI0YmY0ZTQ5MDBhZDBiNzU1ZDgxZWExODJiP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bac14b36-8bc6-4c39-bac8-806d61555581" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "e442c8cf-7790-419c-a775-41e2696ad751" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvVHiPxNdwvugf+xxyKD8NIypVhn7ld5BGHxxZrp8+VINqNdyhFYkYI3FJD3nAqSIK2zqlwvTKpzFNjybMTR024ws3VxbH01AEzP+iz4HU/AbBZsDCp2iOzTOAP8yMv+MjZYUU2fF0Ik0Msw6MQRPW" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14709" + ], + "x-ms-request-id": [ + "e442c8cf-7790-419c-a775-41e2696ad751" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022935Z:e442c8cf-7790-419c-a775-41e2696ad751" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:35 GMT" + ], + "Content-Length": [ + "1684" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"df99cdb4bf4e4900ad0b755d81ea182b\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata001.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata001.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata001.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:10 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:10 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:10 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageAccounts/kvlclproddata001\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvlclproddata001\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"df99cdb4bf4e4900ad0b755d81ea182b\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:10 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/df99cdb4bf4e4900ad0b755d81ea182b\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/02cfd6e2e9c84a70ba5c56d7c1955457?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzAyY2ZkNmUyZTljODRhNzBiYTVjNTZkN2MxOTU1NDU3P2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7149206d-46c6-4177-a6c5-03871d6102d7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "e14ffed8-ba2f-4c74-9b03-fd087cb5a189" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvF0rtHcjGQ6VG19ny2rdy+9j1xlT7x2HqG8JBp7FigBCX3lGJIWpKYfjiwyA4Jdv4lVOqUHcSdWzV4etKBmJFeAhnpvVO6bLlHm3cf5cxrgIVJY3F3BZl3zdmsWSAmFg4pzIaF2GHx26mA7wSZWcH" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14708" + ], + "x-ms-request-id": [ + "e14ffed8-ba2f-4c74-9b03-fd087cb5a189" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022935Z:e14ffed8-ba2f-4c74-9b03-fd087cb5a189" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:35 GMT" + ], + "Content-Length": [ + "1684" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"02cfd6e2e9c84a70ba5c56d7c1955457\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata002.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata002.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata002.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:11 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:11 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:11 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageAccounts/kvlclproddata002\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvlclproddata002\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"02cfd6e2e9c84a70ba5c56d7c1955457\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:11 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/02cfd6e2e9c84a70ba5c56d7c1955457\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/1db4b47714aa413ca5946906b1b35753?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzFkYjRiNDc3MTRhYTQxM2NhNTk0NjkwNmIxYjM1NzUzP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9ef17a58-db13-4758-96b4-73e6b7c3e9b8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "fe45341f-d130-4b7d-a03a-901671414d45" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvdSFK9DuYIqbkn5V/ZhrYdp4juWj2JIkXp0xpOWmqsHQ2Et5zzsf/YGMuqeiShSFBnGQYAnJn02YSMjnY25zptSdDUzsNgtWFdnFuiEpYZua3i/f13JqKwGbtZICIi3S2oGER0zqN/AadsLL+YmKR" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14707" + ], + "x-ms-request-id": [ + "fe45341f-d130-4b7d-a03a-901671414d45" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022935Z:fe45341f-d130-4b7d-a03a-901671414d45" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:35 GMT" + ], + "Content-Length": [ + "1684" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"1db4b47714aa413ca5946906b1b35753\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata003.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata003.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata003.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:12 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:12 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:12 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageAccounts/kvlclproddata003\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvlclproddata003\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"1db4b47714aa413ca5946906b1b35753\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:12 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/1db4b47714aa413ca5946906b1b35753\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/a5ab43038ead4b579fa4893f3620df51?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzL2E1YWI0MzAzOGVhZDRiNTc5ZmE0ODkzZjM2MjBkZjUxP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8ff4e288-443c-4499-9384-ea668a064323" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "d9fb80a7-75d7-4813-91ab-f892a4f96889" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG2MIGzoAMKAQChCwYJKoZIgvcSAQICooGeBIGbYIGYBgkqhkiG9xIBAgICAG+BiDCBhaADAgEFoQMCAQ+ieTB3oAMCARKicARuwVr9z3zoOOkQcKaBSkrzBh4UeaYxq+KSEhAkLDgZlpt8dAhZCgjv6MzlLyxs5PHZ1rpg46LunPsWM5wUwhF/vhQlKY2NPDP/Wbvtsfx8FAYKMuFEcUiy54KMHo+8nU4uISYwYTHq9aBxiGg2aiI=" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14706" + ], + "x-ms-request-id": [ + "d9fb80a7-75d7-4813-91ab-f892a4f96889" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022935Z:d9fb80a7-75d7-4813-91ab-f892a4f96889" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:35 GMT" + ], + "Content-Length": [ + "1684" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a5ab43038ead4b579fa4893f3620df51\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata004.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata004.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata004.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:12 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:12 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:12 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageAccounts/kvlclproddata004\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvlclproddata004\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"a5ab43038ead4b579fa4893f3620df51\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:12 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/a5ab43038ead4b579fa4893f3620df51\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/430bef19e7a6481e896d42d8b6acd18e?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzQzMGJlZjE5ZTdhNjQ4MWU4OTZkNDJkOGI2YWNkMThlP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a937016-c84b-43d2-9936-40dbd931db82" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "0a66838d-19c5-4b52-b970-1c06eef65fb0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG2MIGzoAMKAQChCwYJKoZIgvcSAQICooGeBIGbYIGYBgkqhkiG9xIBAgICAG+BiDCBhaADAgEFoQMCAQ+ieTB3oAMCARKicARusGoJkvVV1bS/Te/P6lJgoaYS72a3YeUcl8ombJMmm2o0/YJ3KexwtfL5DdDG/wmhHZfSVGbvMVq+W4p/fBBxk0ZPr+AQJ8rCiHQdIFu5BDzlEAEgS9jQAqMCVmvxoWW1DqOJna2zh8h23JYOrQE=" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14705" + ], + "x-ms-request-id": [ + "0a66838d-19c5-4b52-b970-1c06eef65fb0" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022935Z:0a66838d-19c5-4b52-b970-1c06eef65fb0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:35 GMT" + ], + "Content-Length": [ + "1684" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"430bef19e7a6481e896d42d8b6acd18e\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata005.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata005.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata005.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:13 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:13 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:13 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageAccounts/kvlclproddata005\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvlclproddata005\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"430bef19e7a6481e896d42d8b6acd18e\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:13 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/430bef19e7a6481e896d42d8b6acd18e\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/51d83b74202a45bf92be8d1fe4b62d7c?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzUxZDgzYjc0MjAyYTQ1YmY5MmJlOGQxZmU0YjYyZDdjP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "89a673bd-8613-49a9-89ab-3ed445c91e07" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "b82a2b2e-12e8-4182-907d-fc7c3a62c923" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG2MIGzoAMKAQChCwYJKoZIgvcSAQICooGeBIGbYIGYBgkqhkiG9xIBAgICAG+BiDCBhaADAgEFoQMCAQ+ieTB3oAMCARKicARu6J9IN7gLsX0cb4vpsb5fiEyyy3PFrkqJiuFoqk7OcARSAeJysiD+vEA11C4M9cT45kLAlGR2KUXXS7Dx/o5Yhe9wFYbrwEBbQGQ6mCMg99051MC6y8z7eSVnY6LsuqifEigj/fPcnzlWE4DYC7Q=" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14704" + ], + "x-ms-request-id": [ + "b82a2b2e-12e8-4182-907d-fc7c3a62c923" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022935Z:b82a2b2e-12e8-4182-907d-fc7c3a62c923" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:35 GMT" + ], + "Content-Length": [ + "1671" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"51d83b74202a45bf92be8d1fe4b62d7c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvrphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvrphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvrphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:14 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:14 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:14 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/kvrphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvrphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"51d83b74202a45bf92be8d1fe4b62d7c\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:14 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/51d83b74202a45bf92be8d1fe4b62d7c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/ac2089a9551a481aaea1f9f567f68dec?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzL2FjMjA4OWE5NTUxYTQ4MWFhZWExZjlmNTY3ZjY4ZGVjP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5ad6ea55-dc5e-4f4f-a849-266bc7d96b7d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "c488f0a8-ead3-4ffd-8c00-6a9311248085" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG2MIGzoAMKAQChCwYJKoZIgvcSAQICooGeBIGbYIGYBgkqhkiG9xIBAgICAG+BiDCBhaADAgEFoQMCAQ+ieTB3oAMCARKicARuCLBOpjsADU/1Wacem2xlY3HysA2ypKsigoWdars3H+InlyTyEcEkxGESR3xGDnLBoH+AV2pNxEf/FZrEpfjSQvUu/ChqrivlSNmu9aPpB2cY/ytIhKpdkQuccG9at6rvz5Gnr+2mgCUZThE9Y5w=" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14703" + ], + "x-ms-request-id": [ + "c488f0a8-ead3-4ffd-8c00-6a9311248085" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022935Z:c488f0a8-ead3-4ffd-8c00-6a9311248085" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:35 GMT" + ], + "Content-Length": [ + "1674" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ac2089a9551a481aaea1f9f567f68dec\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvstoreprodlcl.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvstoreprodlcl.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvstoreprodlcl.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:39 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:39 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:39 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageAccounts/kvstoreprodlcl\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvstoreprodlcl\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"ac2089a9551a481aaea1f9f567f68dec\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:39 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/ac2089a9551a481aaea1f9f567f68dec\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/5142147549c14b38a69edfe80eda0ddb?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzUxNDIxNDc1NDljMTRiMzhhNjllZGZlODBlZGEwZGRiP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "020545f5-ba8f-421b-bb02-95f7f142de75" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "d1aa05c5-ab0f-41a6-b8f9-14ee73a27877" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG2MIGzoAMKAQChCwYJKoZIgvcSAQICooGeBIGbYIGYBgkqhkiG9xIBAgICAG+BiDCBhaADAgEFoQMCAQ+ieTB3oAMCARKicARubhDF6gtLwVeGtJs8NUf6LNKdwEQKzVPo7uc864/OhK7p3bfn+fM3Wmq6kIutMclP8UJJ/M8KTj8STfNGfAG4F+7ixchdlyWB6aj+PnjOul1636Scy9k26IddeSHuC3Wvby0VvDq6+mFTZ8clnn8=" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14702" + ], + "x-ms-request-id": [ + "d1aa05c5-ab0f-41a6-b8f9-14ee73a27877" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022935Z:d1aa05c5-ab0f-41a6-b8f9-14ee73a27877" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:35 GMT" + ], + "Content-Length": [ + "1639" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"5142147549c14b38a69edfe80eda0ddb\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvusage.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvusage.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvusage.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:41 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:41 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:41 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageAccounts/kvusage\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvusage\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"5142147549c14b38a69edfe80eda0ddb\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:41 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/5142147549c14b38a69edfe80eda0ddb\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/94120346959148b6bbb646280f395561?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzk0MTIwMzQ2OTU5MTQ4YjZiYmI2NDYyODBmMzk1NTYxP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1b77f686-f2a0-49d0-8f68-a0911ba428e2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "bf1600c1-60cb-47dd-8e89-fdbaf4b7240c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG2MIGzoAMKAQChCwYJKoZIgvcSAQICooGeBIGbYIGYBgkqhkiG9xIBAgICAG+BiDCBhaADAgEFoQMCAQ+ieTB3oAMCARKicARuYVjJOEA+GE2tK7KH+c/7JxztlCiML1y00iBv5rGMb5AZ+wvJF3O5g/SIy20RYVFoAEWer68Gi1Gds+DUoMYblPIUhRmnw2hGT0SDkCMw3b4qbDcv3Uke+c//zi2YEZcQRaey1I/nApRyga/4bh0=" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14701" + ], + "x-ms-request-id": [ + "bf1600c1-60cb-47dd-8e89-fdbaf4b7240c" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022936Z:bf1600c1-60cb-47dd-8e89-fdbaf4b7240c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:35 GMT" + ], + "Content-Length": [ + "1657" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"94120346959148b6bbb646280f395561\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvvnsproddata.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvvnsproddata.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvvnsproddata.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:04 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:04 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:04 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.keyvault/providers/Microsoft.Storage/storageAccounts/kvvnsproddata\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvvnsproddata\",\r\n \"tenantResourceGroupName\": \"system.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"94120346959148b6bbb646280f395561\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:04 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/94120346959148b6bbb646280f395561\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/3f7056fa43f34153bbccf3c424dc8419?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzNmNzA1NmZhNDNmMzQxNTNiYmNjZjNjNDI0ZGM4NDE5P2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d9f9a5df-55c1-42af-91fb-dfce6012740e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "8fc17cf2-f801-4914-a4eb-86c34ba13975" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG2MIGzoAMKAQChCwYJKoZIgvcSAQICooGeBIGbYIGYBgkqhkiG9xIBAgICAG+BiDCBhaADAgEFoQMCAQ+ieTB3oAMCARKicARuC8Uqak6tQP5T/khP1SMVflcbIyn0lqweZaMtT9T9gOmqQoDikn9l0mzwE5+B+lYN/x5i1uMry+T0d3ZqKyCQHQLscQYYZjIY4Hndr692ljVOSo46R31g/scaHZbkzotbL52h6b/F8hrJTD7Wta8=" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14700" + ], + "x-ms-request-id": [ + "8fc17cf2-f801-4914-a4eb-86c34ba13975" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022936Z:8fc17cf2-f801-4914-a4eb-86c34ba13975" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:36 GMT" + ], + "Content-Length": [ + "1667" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"3f7056fa43f34153bbccf3c424dc8419\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://md-000bvzpxsyogq4.blob.local.azurestack.external/\",\r\n \"queue\": \"https://md-000bvzpxsyogq4.queue.local.azurestack.external/\",\r\n \"table\": \"https://md-000bvzpxsyogq4.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:32:36 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:32:36 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:32:36 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/System.local/providers/Microsoft.Storage/storageAccounts/md-000bvzpxsyogq4\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"md-000bvzpxsyogq4\",\r\n \"tenantResourceGroupName\": \"System.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"3f7056fa43f34153bbccf3c424dc8419\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:32:36 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/3f7056fa43f34153bbccf3c424dc8419\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/7b7d6df983f0474d8a2929b62c6043db?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzdiN2Q2ZGY5ODNmMDQ3NGQ4YTI5MjliNjJjNjA0M2RiP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "541718e5-3158-4ed0-875d-b3d0e764450f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "f78c8193-418f-4c8d-9b89-61a5bbb882f3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG2MIGzoAMKAQChCwYJKoZIgvcSAQICooGeBIGbYIGYBgkqhkiG9xIBAgICAG+BiDCBhaADAgEFoQMCAQ+ieTB3oAMCARKicARuAf7WZ519Zb968oWeyzbpWBHzshG69o/63t0kuBCGYDCCerfWGxrNLLwd+K5e1nlHk8PyjRhp4IzYBWdb8sSI1uor3i5UqM97rLeQrVGnAlA2zmDBEwwhFsM8o47KT18slbDSpOkzK5EMwc7XW2M=" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14699" + ], + "x-ms-request-id": [ + "f78c8193-418f-4c8d-9b89-61a5bbb882f3" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022936Z:f78c8193-418f-4c8d-9b89-61a5bbb882f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:36 GMT" + ], + "Content-Length": [ + "1637" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"7b7d6df983f0474d8a2929b62c6043db\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://md-000ti1db.blob.local.azurestack.external/\",\r\n \"queue\": \"https://md-000ti1db.queue.local.azurestack.external/\",\r\n \"table\": \"https://md-000ti1db.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:48:54 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:48:54 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:48:54 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/System.local/providers/Microsoft.Storage/storageAccounts/md-000ti1db\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"md-000ti1db\",\r\n \"tenantResourceGroupName\": \"System.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"7b7d6df983f0474d8a2929b62c6043db\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:48:54 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/7b7d6df983f0474d8a2929b62c6043db\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/1db56fd5982f4c7289df85965988ff19?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy8xZGI1NmZkNTk4MmY0YzcyODlkZjg1OTY1OTg4ZmYxOT9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/ed4532a3330d41758a3e8b90bda208d9?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzL2VkNDUzMmEzMzMwZDQxNzU4YTNlOGI5MGJkYTIwOGQ5P2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea1068d0-233b-46c1-9f32-f39d3aeb0b47" + "22a709e2-a82d-43c2-a2f4-7f538a63dbbd" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/1db56fd5982f4c7289df85965988ff19\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"1db56fd5982f4c7289df85965988ff19\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://systemtemp.blob.local.azurestack.external/\",\r\n \"queue\": \"https://systemtemp.queue.local.azurestack.external/\",\r\n \"table\": \"https://systemtemp.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/systemtemp\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"systemtemp\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"1db56fd5982f4c7289df85965988ff19\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:43.66\"\r\n }\r\n}", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "6da90c8b-5247-494f-85c6-c6eb96c1493d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+nBJzzuQYZaKFZK775qo4O1QMmq3gWEQEaqGV+Vpf3db11z55xxVNS/PQqsQnmkA1CCrzOdLaRzVpAV2ebZWP0Ye5tV+YU+M3+ZAGaYGa0/jmCaLgjk44+3Vd3nRSvuckaAbcSlW25uY0F47ZjDs" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14698" + ], + "x-ms-request-id": [ + "6da90c8b-5247-494f-85c6-c6eb96c1493d" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022936Z:6da90c8b-5247-494f-85c6-c6eb96c1493d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:36 GMT" + ], "Content-Length": [ - "1407" + "1674" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ed4532a3330d41758a3e8b90bda208d9\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://mdmcachesvcacc00.blob.local.azurestack.external/\",\r\n \"queue\": \"https://mdmcachesvcacc00.queue.local.azurestack.external/\",\r\n \"table\": \"https://mdmcachesvcacc00.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:16 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:16 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:16 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/mdmcachesvcacc00\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"mdmcachesvcacc00\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"ed4532a3330d41758a3e8b90bda208d9\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:16 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/ed4532a3330d41758a3e8b90bda208d9\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/944148a44cbd4b34856689c2508e7c37?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzk0NDE0OGE0NGNiZDRiMzQ4NTY2ODljMjUwOGU3YzM3P2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9bad375e-c567-4a55-897b-dd0150daded3" ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "e113d223-3e7d-4277-826f-3eab75097d11" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/bnhWi5hN1pFTtdE4Vs6lrgb/5WxJJgkHbM4qRc8mS5su2STH/uMnZ3kX6D4d+k9TQwkNNSGJOwmIou15G+fYCJzPJCmMZQQn5QaKuD+eqh0DXcVFyCR/1KC8IraP0KvC5w1ZQlTJPnwADV/ooMw" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14697" + ], + "x-ms-request-id": [ + "e113d223-3e7d-4277-826f-3eab75097d11" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022936Z:e113d223-3e7d-4277-826f-3eab75097d11" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Date": [ - "Tue, 30 Jan 2018 19:31:15 GMT" + "Tue, 17 Sep 2019 02:29:36 GMT" + ], + "Content-Length": [ + "1674" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"944148a44cbd4b34856689c2508e7c37\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://mdmcachesvcacc01.blob.local.azurestack.external/\",\r\n \"queue\": \"https://mdmcachesvcacc01.queue.local.azurestack.external/\",\r\n \"table\": \"https://mdmcachesvcacc01.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:17 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:17 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:17 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/mdmcachesvcacc01\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"mdmcachesvcacc01\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"944148a44cbd4b34856689c2508e7c37\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:17 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/944148a44cbd4b34856689c2508e7c37\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/3524ef087be34c7595c4ed54bc196b2b?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzM1MjRlZjA4N2JlMzRjNzU5NWM0ZWQ1NGJjMTk2YjJiP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "41e1413d-a3fd-424e-b672-a3b4fa9343bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "e339db31-77f5-4a14-828e-2891ca87aa82" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvffuyBzdFi/2tFQiI+LKS6zW9GSqkEbva6X9VSQvZDMbXUkYTYQ7JykSJpco6ZAl48WiZhzkefRWnTpvtJA3rlPloXawfWYd7pOp9gZlJdGmaTF7V0/VPKumkeUxQ2u8gI4AQiyAwu5mkoy5uNjLM" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv74L6Xxf5xciejn1iTnxOexYhE4lTEOp15G+/7lgxgPYY8QwquUJt0b2EUvZ/Dklcqro1MQm32y4CCnwQlMc+Qzj/RK4FKHDF20bAXlcN9+a2W8ptCZWvSP7ZV7UmAaeE6jWlmVx13S+wDj396RuB" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14696" ], "x-ms-request-id": [ - "bd916bf3-53eb-4fe0-ba54-0a4de2a8ffb1" + "e339db31-77f5-4a14-828e-2891ca87aa82" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022936Z:e339db31-77f5-4a14-828e-2891ca87aa82" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:36 GMT" + ], + "Content-Length": [ + "1674" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"3524ef087be34c7595c4ed54bc196b2b\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://mdmcachesvcacc02.blob.local.azurestack.external/\",\r\n \"queue\": \"https://mdmcachesvcacc02.queue.local.azurestack.external/\",\r\n \"table\": \"https://mdmcachesvcacc02.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:17 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:17 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:17 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/mdmcachesvcacc02\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"mdmcachesvcacc02\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"3524ef087be34c7595c4ed54bc196b2b\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:17 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/3524ef087be34c7595c4ed54bc196b2b\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/30cebc847e884d6da43ee24b1ef3f4f7?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzMwY2ViYzg0N2U4ODRkNmRhNDNlZTI0YjFlZjNmNGY3P2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1c9fd671-0d88-44f3-a2e3-24f6bff54f4b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" ], "x-ms-correlation-request-id": [ - "f36f8172-cb07-41a1-b9f4-0e46e50e36ee" + "4d3814e3-4e12-4e99-8c61-342118cf734d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvKHTxsrjV7R3UfGFBz2OJUOf4Bcst+YSOlTTWkKKltlK/5VYvNyT2ZeyL9BArh6KwYPIDgQamCy5kyaHBfOyPIxhNAk7yARooydQyjKEhFcJ33pyIuT1chwIr3tu0pCYYLEVHGWG1kFQ4c0zbMe15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14904" + "14695" + ], + "x-ms-request-id": [ + "4d3814e3-4e12-4e99-8c61-342118cf734d" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193115Z:f36f8172-cb07-41a1-b9f4-0e46e50e36ee" + "LOCAL:20190917T022936Z:4d3814e3-4e12-4e99-8c61-342118cf734d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:36 GMT" + ], + "Content-Length": [ + "1674" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"30cebc847e884d6da43ee24b1ef3f4f7\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://mdmcachesvcacc03.blob.local.azurestack.external/\",\r\n \"queue\": \"https://mdmcachesvcacc03.queue.local.azurestack.external/\",\r\n \"table\": \"https://mdmcachesvcacc03.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:18 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:18 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:18 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/mdmcachesvcacc03\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"mdmcachesvcacc03\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"30cebc847e884d6da43ee24b1ef3f4f7\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:18 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/30cebc847e884d6da43ee24b1ef3f4f7\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/224b73ac66fb409ba83db3d26ac4ec7c?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy8yMjRiNzNhYzY2ZmI0MDliYTgzZGIzZDI2YWM0ZWM3Yz9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/f5362a7ac8da4678a21176809b2e577d?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzL2Y1MzYyYTdhYzhkYTQ2NzhhMjExNzY4MDliMmU1NzdkP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2fb6787-bdf8-45fd-b9aa-f22c349147ae" + "981dc28c-66f1-4749-9a82-2d4e0ae52124" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/224b73ac66fb409ba83db3d26ac4ec7c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"224b73ac66fb409ba83db3d26ac4ec7c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://tenantextadminaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://tenantextadminaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://tenantextadminaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/tenantextadminaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"tenantextadminaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"224b73ac66fb409ba83db3d26ac4ec7c\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:24.32\"\r\n }\r\n}", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "eb2976a1-3b21-45ee-a273-13e61624d10f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQMv6X7TiJXs+380J7J/VCvo17hCCiANNcOmGL9fJjnep2b8r8rgW9c/KcHiXwSaqAsc97iTtvbCtWM8F/lyBgbIVc5ePs7KBpwV1S0ma3xTkPEvZRegI0MZ8sXo/qDWpWhUf9dZ4orImsegcY25B" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14694" + ], + "x-ms-request-id": [ + "eb2976a1-3b21-45ee-a273-13e61624d10f" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022936Z:eb2976a1-3b21-45ee-a273-13e61624d10f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:36 GMT" + ], "Content-Length": [ - "1462" + "1674" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"f5362a7ac8da4678a21176809b2e577d\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://mdmcachesvcacc04.blob.local.azurestack.external/\",\r\n \"queue\": \"https://mdmcachesvcacc04.queue.local.azurestack.external/\",\r\n \"table\": \"https://mdmcachesvcacc04.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:21 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:21 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:21 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/mdmcachesvcacc04\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"mdmcachesvcacc04\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"f5362a7ac8da4678a21176809b2e577d\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:21 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/f5362a7ac8da4678a21176809b2e577d\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/598f7339cc4a4713979f317a4c0c7467?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzU5OGY3MzM5Y2M0YTQ3MTM5NzlmMzE3YTRjMGM3NDY3P2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "06040817-3a78-4143-9738-bc97bd96b11b" + ], + "Accept-Language": [ + "en-US" ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:15 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "f919662a-c90f-46d6-b133-3c1280e55423" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvda/r9tvjaMeztOupYbJjQ0vheu6w3lXSgIc7fMJGNSrgjppp4g8wkgyDqVeVMmsPzMHHAad8oqr+tDFGkic6S6KrztcJSk942eSj1Bg3Oegx6axQ8/fwbJyO1dPm7yVcRHu7rRSjddYHNDWM8y11" - ], - "x-ms-request-id": [ - "2673a19e-574b-4bef-9fd6-51bd5f43aa89" - ], - "x-ms-correlation-request-id": [ - "1dee7b93-e596-4113-a67e-2f89496b727a" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvf0xyAKUeBG2K7fn6hf9KryLG0QNlTKz9ddW3s0W0AWz92eEOevOds6UbJJgw87pjpYCtHsE6XNungoAwvDRmytftHakObmo1aetp22Lnts4rHDZh41ppdMZe0rTDKrRSZh6vbp8B2CwWgJZBHGPo" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14903" + "14693" + ], + "x-ms-request-id": [ + "f919662a-c90f-46d6-b133-3c1280e55423" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193116Z:1dee7b93-e596-4113-a67e-2f89496b727a" + "LOCAL:20190917T022936Z:f919662a-c90f-46d6-b133-3c1280e55423" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:36 GMT" + ], + "Content-Length": [ + "1654" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"598f7339cc4a4713979f317a4c0c7467\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://mdmconfigacc.blob.local.azurestack.external/\",\r\n \"queue\": \"https://mdmconfigacc.queue.local.azurestack.external/\",\r\n \"table\": \"https://mdmconfigacc.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:27 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:27 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:27 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/mdmconfigacc\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"mdmconfigacc\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"598f7339cc4a4713979f317a4c0c7467\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:27 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/598f7339cc4a4713979f317a4c0c7467\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/2ff57b811ca04500a68c4e68daf76823?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy8yZmY1N2I4MTFjYTA0NTAwYTY4YzRlNjhkYWY3NjgyMz9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/c2f733330d144c308afe6d477cac04c8?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzL2MyZjczMzMzMGQxNDRjMzA4YWZlNmQ0NzdjYWMwNGM4P2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e090137c-5e42-443d-8661-0abd710b06af" + "0b1cb9cd-1d96-4b74-ae8f-0008773e3d96" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/2ff57b811ca04500a68c4e68daf76823\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"2ff57b811ca04500a68c4e68daf76823\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclprodbackup.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclprodbackup.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclprodbackup.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageaccounts/adminkvlclprodbackup\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"adminkvlclprodbackup\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"2ff57b811ca04500a68c4e68daf76823\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:19.163\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1485" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:15 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "cbc62a1a-2ba0-40a7-9eb6-e35137b46ca8" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEGOk1OmqPzfZLqiyyqx00K9apaPSxXiSajuwEfcZppj/ajUBQg1mpCzcpIJXOx0mUlcUuvO49oSmoXwUdU0mN9V4l6qbRC8rHLG80A+bx8mq9Vw4hRH5VSs7FPvgkkQR1vJouwSohOaHo7lXlhLl" - ], - "x-ms-request-id": [ - "bf85c6a7-1eba-4c4f-90f6-6df708ed342d" - ], - "x-ms-correlation-request-id": [ - "30c8f2aa-d9be-424d-9741-b16da5b0eaa2" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvVaM3M6nb7UFIR2kPwgwky4LnduivXn/z7J3+uulOukVCa8Si71HZPir4YrUgtFz/y5XziUoKe34kEy2aeqsVXejNZkr5r2M3ePpHvmFGkGb1No933BNXgTEVHYY0eWj0VGeEhrxlARYQMtANxlqj" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14902" + "14692" + ], + "x-ms-request-id": [ + "cbc62a1a-2ba0-40a7-9eb6-e35137b46ca8" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193116Z:30c8f2aa-d9be-424d-9741-b16da5b0eaa2" + "LOCAL:20190917T022937Z:cbc62a1a-2ba0-40a7-9eb6-e35137b46ca8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:36 GMT" + ], + "Content-Length": [ + "1667" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"c2f733330d144c308afe6d477cac04c8\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://metricsrpsa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://metricsrpsa.queue.local.azurestack.external/\",\r\n \"table\": \"https://metricsrpsa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:06 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:06 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:06 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.AzureMonitor/providers/Microsoft.Storage/storageAccounts/metricsrpsa\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"metricsrpsa\",\r\n \"tenantResourceGroupName\": \"system.local.AzureMonitor\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"c2f733330d144c308afe6d477cac04c8\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:06 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/c2f733330d144c308afe6d477cac04c8\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/35340422c5c64cb3ae510e262aaed591?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy8zNTM0MDQyMmM1YzY0Y2IzYWU1MTBlMjYyYWFlZDU5MT9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/b4003b09031f4779973792ee578bd9d7?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzL2I0MDAzYjA5MDMxZjQ3Nzk5NzM3OTJlZTU3OGJkOWQ3P2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b48b35ea-c923-4552-a399-1459b88ada59" + "ee63a332-0c74-4e41-ba15-351786bfe5a2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/35340422c5c64cb3ae510e262aaed591\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"35340422c5c64cb3ae510e262aaed591\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://nrphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://nrphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://nrphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/nrphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"nrphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"35340422c5c64cb3ae510e262aaed591\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:23.45\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1437" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:15 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "3acdbfbd-75ec-4a82-baef-010ab16941da" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0bzBClCkZ5LGYeXwqwsCaC+tgsrKIkQDFL5YFeBqa01EJAdpdX9TBB076v1SMhy3Rz2CXlB8952z56LRzl7nzHw11jHFRGt4DrLKH8K1hbIp+j0AUdB6Vmt6lUfsRPJTssCt6YVwul6jkDsQCHFN" - ], - "x-ms-request-id": [ - "8dc683f5-586d-4104-b1ef-787ee5facbea" - ], - "x-ms-correlation-request-id": [ - "8cf12500-20e3-43ca-8a65-affe97516b99" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvrkefnQ2Mq4+rD/ozGP3+UQLcRord80MJ6DbUvEP/6jRnirDJ1PA1FtnUXSeAEW4pBzXPqemXjfOvYQMgCx99eDgJXj9DT4ZmC50s5lxCmpfF633zKXUds4ikTB/Vw6A3uaaWBvnZje8INEnlwCOz" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14901" + "14691" + ], + "x-ms-request-id": [ + "3acdbfbd-75ec-4a82-baef-010ab16941da" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193116Z:8cf12500-20e3-43ca-8a65-affe97516b99" + "LOCAL:20190917T022937Z:3acdbfbd-75ec-4a82-baef-010ab16941da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:37 GMT" + ], + "Content-Length": [ + "1692" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"b4003b09031f4779973792ee578bd9d7\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://metricsrpsaadmin.blob.local.azurestack.external/\",\r\n \"queue\": \"https://metricsrpsaadmin.queue.local.azurestack.external/\",\r\n \"table\": \"https://metricsrpsaadmin.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:08 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:08 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:08 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.AzureMonitor/providers/Microsoft.Storage/storageAccounts/metricsrpsaadmin\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"metricsrpsaadmin\",\r\n \"tenantResourceGroupName\": \"system.local.AzureMonitor\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"b4003b09031f4779973792ee578bd9d7\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:08 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/b4003b09031f4779973792ee578bd9d7\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/36be42f131ae4852b035ccba24f529c0?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy8zNmJlNDJmMTMxYWU0ODUyYjAzNWNjYmEyNGY1MjljMD9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/9ea9d696319f40c4bce8e74ae1714ae6?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzllYTlkNjk2MzE5ZjQwYzRiY2U4ZTc0YWUxNzE0YWU2P2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1bb62261-bb61-4f00-a667-8fb1285e3a30" + "3337822d-9a55-4486-8149-9bbc837eb44f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/36be42f131ae4852b035ccba24f529c0\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"36be42f131ae4852b035ccba24f529c0\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvusage.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvusage.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvusage.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageaccounts/adminkvusage\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"adminkvusage\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"36be42f131ae4852b035ccba24f529c0\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:19.543\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1445" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:16 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "edb62e65-9e04-461c-9b73-9a2c9d1092da" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvKyQEN6JfQYZYUYNaRw6yZ37OsN0VfL9g5lWieQfbWnXF8kanT9h7Qq9/hxXRCzsqY1VTFMC3ZSKlYi/iVETdn/7ONujY1Nk+yxTFXmc9sqlfveEAUtzjbbL3yaJRFbvJFaccYdVm/4IJBY8AuelC" - ], - "x-ms-request-id": [ - "94459898-6dc3-46df-8c7b-3d0b31af5c82" - ], - "x-ms-correlation-request-id": [ - "b954bc79-7abf-402f-9d07-ad5d23de8259" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvnq2zPN3H2vMU4Nb7HBIChTPAhyRMR4RIqtb3LmOqlei+Ufz9duZOJNRnDHfDvsGh3SIuI39T4bNMWTP3lm4+tnyCPhxuFr+vz6O3GNQyzQnAVdLC67enmEbrv3pq8VpMDQzn5AcYlqv4dsoWUH4I" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14900" + "14690" + ], + "x-ms-request-id": [ + "edb62e65-9e04-461c-9b73-9a2c9d1092da" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193116Z:b954bc79-7abf-402f-9d07-ad5d23de8259" + "LOCAL:20190917T022937Z:edb62e65-9e04-461c-9b73-9a2c9d1092da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:37 GMT" + ], + "Content-Length": [ + "1674" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"9ea9d696319f40c4bce8e74ae1714ae6\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://metricsstoreacc0.blob.local.azurestack.external/\",\r\n \"queue\": \"https://metricsstoreacc0.queue.local.azurestack.external/\",\r\n \"table\": \"https://metricsstoreacc0.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:23 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:23 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:23 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/metricsstoreacc0\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"metricsstoreacc0\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"9ea9d696319f40c4bce8e74ae1714ae6\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:23 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/9ea9d696319f40c4bce8e74ae1714ae6\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/37ed7aabf28347eca9d03509aa6a4ae7?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy8zN2VkN2FhYmYyODM0N2VjYTlkMDM1MDlhYTZhNGFlNz9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/8e83e5950cea4d8c980a24735861a11e?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzhlODNlNTk1MGNlYTRkOGM5ODBhMjQ3MzU4NjFhMTFlP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3cffdfe5-c9ac-49fc-ad9c-073a1e2ace47" + "91f0d4fe-a9c4-439d-bd20-f892f7a0edb4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/37ed7aabf28347eca9d03509aa6a4ae7\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"37ed7aabf28347eca9d03509aa6a4ae7\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://nrpusageaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://nrpusageaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://nrpusageaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/nrpusageaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"nrpusageaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"37ed7aabf28347eca9d03509aa6a4ae7\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:24.25\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1432" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:16 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "fc5e9a2b-3b7c-4d94-a0c0-2f4bae9b4fe1" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQgBTRiOc2Ih3LHOWs0vYaHXtGYeSE19CsRjko/V9pLhw/hV4SL//PXiIlCd4Ei8geVDj5pLM4l4G/WpHmiym23lvfolg59utYFQ0Pvif0JLcFTl86YjfbrswOJdd/HzK8/F3qi4G7aAcaBQJ297A" - ], - "x-ms-request-id": [ - "e3bb9342-7fad-4701-867c-df9238a4dedb" - ], - "x-ms-correlation-request-id": [ - "d7667b02-7ac8-4c08-8039-ce26940f094a" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvA/DpVxbLS3Nt+Jp3E15FJD7v640lSbO/PQA04rBOVCIMK1NLL79Ush3R+IvYXWK+WF3cZTEP8vn4/Zxl2fnABtsi/7LkJfadPAgAxbdxc84qfFS6PxqlbOr84T5GY88r3oUtJfUKlFRifCGd4DAC" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14899" + "14689" + ], + "x-ms-request-id": [ + "fc5e9a2b-3b7c-4d94-a0c0-2f4bae9b4fe1" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193116Z:d7667b02-7ac8-4c08-8039-ce26940f094a" + "LOCAL:20190917T022937Z:fc5e9a2b-3b7c-4d94-a0c0-2f4bae9b4fe1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:37 GMT" + ], + "Content-Length": [ + "1674" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"8e83e5950cea4d8c980a24735861a11e\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://metricsstoreacc1.blob.local.azurestack.external/\",\r\n \"queue\": \"https://metricsstoreacc1.queue.local.azurestack.external/\",\r\n \"table\": \"https://metricsstoreacc1.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:24 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:24 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:24 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/metricsstoreacc1\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"metricsstoreacc1\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"8e83e5950cea4d8c980a24735861a11e\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:24 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/8e83e5950cea4d8c980a24735861a11e\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/38f227dcf5314aa18c97cc4b4e0b72a8?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy8zOGYyMjdkY2Y1MzE0YWExOGM5N2NjNGI0ZTBiNzJhOD9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/703dc2d6c3fa434a9dc230fb87096826?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzcwM2RjMmQ2YzNmYTQzNGE5ZGMyMzBmYjg3MDk2ODI2P2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "552e556a-cfb0-4209-b603-556d956c8faf" + "40b50b60-aec4-4079-b225-b0f2755db284" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/38f227dcf5314aa18c97cc4b4e0b72a8\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"38f227dcf5314aa18c97cc4b4e0b72a8\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srphyadmaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srphyadmaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srphyadmaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/srphyadmaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"srphyadmaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"38f227dcf5314aa18c97cc4b4e0b72a8\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:16.853\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1432" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:16 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "5f486af0-8b9b-414c-95fa-63d532300632" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvD6dGL7pyrfOAB8/ujTq9AsasmpD+iVYp/fR3ClbDvafS/YR579RwVpw8D5Jaj7sbGv7nrnH7yHaVjEazFvJDmHDXUFRtI3pXSbsEm+17urATlnmNNHiF/Zy+cSmTWjN0tDKq64itHL61j/qmk5hO" - ], - "x-ms-request-id": [ - "27fd1eef-ab17-4175-9999-bbaafe18c278" - ], - "x-ms-correlation-request-id": [ - "58ec6ac3-eb58-42d5-b9dc-71c50ce9c1af" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvlCvb4/sJ1c/sAqtJW7mZWriDOJIZD7SYucV912WbMtoYRxfTQLdYVn7CbOBoLQWTHsHKF4BcQMlvc0J8TrZaclfgmshZdm1woRP/dm4euBe48ja1OgZtfftwTtVyqnt8vSpp/mJ0+IVt/8J0hSN0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14898" + "14688" + ], + "x-ms-request-id": [ + "5f486af0-8b9b-414c-95fa-63d532300632" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193116Z:58ec6ac3-eb58-42d5-b9dc-71c50ce9c1af" + "LOCAL:20190917T022937Z:5f486af0-8b9b-414c-95fa-63d532300632" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:37 GMT" + ], + "Content-Length": [ + "1674" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"703dc2d6c3fa434a9dc230fb87096826\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://metricsstoreacc2.blob.local.azurestack.external/\",\r\n \"queue\": \"https://metricsstoreacc2.queue.local.azurestack.external/\",\r\n \"table\": \"https://metricsstoreacc2.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:25 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:25 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:25 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/metricsstoreacc2\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"metricsstoreacc2\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"703dc2d6c3fa434a9dc230fb87096826\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:25 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/703dc2d6c3fa434a9dc230fb87096826\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/3fe86317cc0d40e0a0d4833641a64fdb?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy8zZmU4NjMxN2NjMGQ0MGUwYTBkNDgzMzY0MWE2NGZkYj9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/d2ad82d81a1342a6b9705a83792733a8?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzL2QyYWQ4MmQ4MWExMzQyYTZiOTcwNWE4Mzc5MjczM2E4P2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bd4ab32c-2c80-437d-a7c9-6adeb4ffaa79" + "76e41ff2-202f-47c4-b3ed-38c95f553dea" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/3fe86317cc0d40e0a0d4833641a64fdb\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"3fe86317cc0d40e0a0d4833641a64fdb\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/srphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"srphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"3fe86317cc0d40e0a0d4833641a64fdb\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:14.473\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1437" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:16 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "65513604-4bbb-46a5-9d65-5d49d0053e1a" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvFLoVaOC5KbCgzcNmPm3cr4O1mc8zdn5tWTuFig1GYR7G8xdjyKNu28EfUPCwrG8m7k9L/yT1TcRTYOfP2fTayXadDqHi8nLbmPD39Ld2Sjxb+pMlDj/x4PmDl4+5pq0Cjl3jJbDgGgy/+8bElLbW" - ], - "x-ms-request-id": [ - "4c59345d-912a-4488-8478-61cb65873aaa" - ], - "x-ms-correlation-request-id": [ - "57ef1fab-7dff-477f-8bc4-b10cf114c495" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxqNRLqYf15TaC0R0HjZvJSruQQcItaCupTsWuESdqPWfo/D5PNLyL72NGBOI2waecPDEKFp/Tf0Or/MIiDfzUur5WLBEQTRp7d/J0QmLqU0mRqjoD3fxklYgssEy0HaGSoIzi0pztboW2/flsDyK" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14897" + "14687" + ], + "x-ms-request-id": [ + "65513604-4bbb-46a5-9d65-5d49d0053e1a" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193116Z:57ef1fab-7dff-477f-8bc4-b10cf114c495" + "LOCAL:20190917T022937Z:65513604-4bbb-46a5-9d65-5d49d0053e1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:37 GMT" + ], + "Content-Length": [ + "1674" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"d2ad82d81a1342a6b9705a83792733a8\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://metricsstoreacc3.blob.local.azurestack.external/\",\r\n \"queue\": \"https://metricsstoreacc3.queue.local.azurestack.external/\",\r\n \"table\": \"https://metricsstoreacc3.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:25 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:25 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:25 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/metricsstoreacc3\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"metricsstoreacc3\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"d2ad82d81a1342a6b9705a83792733a8\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:25 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/d2ad82d81a1342a6b9705a83792733a8\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/4639bcee762c46b493fe4d611f79504b?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy80NjM5YmNlZTc2MmM0NmI0OTNmZTRkNjExZjc5NTA0Yj9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/1ab19101400a40488404bd16bea8e5d0?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzFhYjE5MTAxNDAwYTQwNDg4NDA0YmQxNmJlYThlNWQwP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d63a721-af84-432d-ab86-49015599fc78" + "683f0ef8-3952-4803-b1b4-ede675d9ad86" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/4639bcee762c46b493fe4d611f79504b\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"4639bcee762c46b493fe4d611f79504b\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata001.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata001.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata001.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageaccounts/adminkvlclproddata001\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata001\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"4639bcee762c46b493fe4d611f79504b\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:26.23\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1490" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:16 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "e2b33e3b-2b7c-4f09-8c37-411c1ea5401c" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvc8ri1q6IHEGpzLaTuHwsFAEfNRImyGeMGG344U+De3ZPVJTimA6UmPa+Ib14RZgaK9WLppduzREUxvYc7MOwHZQYzmb/8bPrZXsCe14HuBfPL7fAAwN42DpQ8nAoVR8HWEkgTAA8qSOBK/b62jQu" - ], - "x-ms-request-id": [ - "2b715181-a288-47ee-b5c8-b4b140e5f4e6" - ], - "x-ms-correlation-request-id": [ - "aeb93098-7fc9-4a4c-8a1d-aa42fa037f61" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvHk5/o3EiM5HeIVi90czryDB/pMMMZmrzVDopBeP+ixzhWEd2wQU1f7K0LdMCE/xEkvq/n7PFpjFzd4Qjd5unIY7MvAyTXcSwJfTbkKtRTisJHu/ebRhijzOievEEus558RrLZDgsHh44hMkyoEsw" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14896" + "14686" + ], + "x-ms-request-id": [ + "e2b33e3b-2b7c-4f09-8c37-411c1ea5401c" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193116Z:aeb93098-7fc9-4a4c-8a1d-aa42fa037f61" + "LOCAL:20190917T022937Z:e2b33e3b-2b7c-4f09-8c37-411c1ea5401c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:37 GMT" + ], + "Content-Length": [ + "1674" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"1ab19101400a40488404bd16bea8e5d0\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://metricsstoreacc4.blob.local.azurestack.external/\",\r\n \"queue\": \"https://metricsstoreacc4.queue.local.azurestack.external/\",\r\n \"table\": \"https://metricsstoreacc4.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:26 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:26 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:26 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/metricsstoreacc4\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"metricsstoreacc4\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"1ab19101400a40488404bd16bea8e5d0\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:26 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/1ab19101400a40488404bd16bea8e5d0\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/5018238804f74d69abd13279fee118ba?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy81MDE4MjM4ODA0Zjc0ZDY5YWJkMTMyNzlmZWUxMThiYT9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/2170af5ed61a4069b57f18e6a9a29cd2?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzIxNzBhZjVlZDYxYTQwNjliNTdmMThlNmE5YTI5Y2QyP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "036d3962-a52f-4dca-bd15-3a9a25dd4f79" + "7eb5ff1e-ed27-4131-853f-c8732faa1fc6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/5018238804f74d69abd13279fee118ba\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"5018238804f74d69abd13279fee118ba\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srphytenaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srphytenaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srphytenaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/srphytenaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"srphytenaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"5018238804f74d69abd13279fee118ba\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:16.39\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1432" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:16 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "9a8a874f-efe6-40b5-9544-12b83fc71c61" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvayr9CMWg85yug9XGvtA8k/Dg/Z5GkvkLs3IFP2BDVUoAzgQpwGMoMccP7psVvq8V69E6cq4hMRxmko5RLJTmfHy77Y7t/vaYMxCjvm3AszMugtXccKNmQdWFBD5Cmf0TZUqwvus9x52LAEcbrcbc" - ], - "x-ms-request-id": [ - "f05d0221-c2ae-46a9-9c4a-013063d7aba2" - ], - "x-ms-correlation-request-id": [ - "6002818d-7f59-4907-ad1d-5e599f737621" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvZsoZd3B8k9k+km6Herru5vk7bq1De0r2nRruZhq9wo2Pm6cj4MShUyJtpoNR/YzQENI/rYo+zRx+ryEdYNGeLrwGLiM05XFFWgNNA9ddXmRlddVZn4PD9/wso6MhAaQqC2ajvseomEL+6GH2pkE" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14895" + "14685" + ], + "x-ms-request-id": [ + "9a8a874f-efe6-40b5-9544-12b83fc71c61" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193116Z:6002818d-7f59-4907-ad1d-5e599f737621" + "LOCAL:20190917T022937Z:9a8a874f-efe6-40b5-9544-12b83fc71c61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:37 GMT" + ], + "Content-Length": [ + "1722" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"2170af5ed61a4069b57f18e6a9a29cd2\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://monitoringrepositorysa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://monitoringrepositorysa.queue.local.azurestack.external/\",\r\n \"table\": \"https://monitoringrepositorysa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:49 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:49 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:49 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.AzureMonitor/providers/Microsoft.Storage/storageAccounts/monitoringrepositorysa\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"monitoringrepositorysa\",\r\n \"tenantResourceGroupName\": \"system.local.AzureMonitor\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"2170af5ed61a4069b57f18e6a9a29cd2\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:49 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/2170af5ed61a4069b57f18e6a9a29cd2\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/61dd00ce90ba432a97aa66565c61abd0?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy82MWRkMDBjZTkwYmE0MzJhOTdhYTY2NTY1YzYxYWJkMD9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/645c6b03d5cf41d98bbd2f39c41b036f?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzY0NWM2YjAzZDVjZjQxZDk4YmJkMmYzOWM0MWIwMzZmP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eea774eb-f5cb-4390-99b3-42a06a3be383" + "19ab8141-8b96-423b-b74e-5640b857f9d1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/61dd00ce90ba432a97aa66565c61abd0\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"61dd00ce90ba432a97aa66565c61abd0\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://publicsystemevents.blob.local.azurestack.external/\",\r\n \"queue\": \"https://publicsystemevents.queue.local.azurestack.external/\",\r\n \"table\": \"https://publicsystemevents.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/publicsystemevents\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"publicsystemevents\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"61dd00ce90ba432a97aa66565c61abd0\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:29.997\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1447" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:16 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "585a4220-1baf-4082-a6f2-587e39a0f43e" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv2QrEzfmFg7XUoU3FkNlcZ5nQLNwQZ0z56hGBHXS3nIvwLWeNP0DtlDD1RXpp8IQo9acYIVQrZ833Reu3Pm9KpCWh/H+a1Qr18JI4+sNmVt0CxSQ5ByDuK/f0/fACG4BVTabchsirDytuL+/ksQvZ" - ], - "x-ms-request-id": [ - "3b5bc776-a5ea-4b62-a4f3-18cd0bab6712" - ], - "x-ms-correlation-request-id": [ - "281b612a-4bff-42c4-aef5-ff6baf689077" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv81GzkMZAd7X2tkkCDwkaxJr69bYl1kxpMeOlVAjAEdmzI5RbybPZNDAcgJ6rLSexk4tJKJxQOrWU3bdZCO+rITny1jjrl9fU53vPO338g6+WSNTyQROcdpcSypyyvqYXIZZosWs0O8uoQnsCKbQY" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14894" + "14684" + ], + "x-ms-request-id": [ + "585a4220-1baf-4082-a6f2-587e39a0f43e" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193116Z:281b612a-4bff-42c4-aef5-ff6baf689077" + "LOCAL:20190917T022938Z:585a4220-1baf-4082-a6f2-587e39a0f43e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:37 GMT" + ], + "Content-Length": [ + "1666" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"645c6b03d5cf41d98bbd2f39c41b036f\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://nrpeventsaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://nrpeventsaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://nrpeventsaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:05 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:05 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:05 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/nrpeventsaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"nrpeventsaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"645c6b03d5cf41d98bbd2f39c41b036f\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:05 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/645c6b03d5cf41d98bbd2f39c41b036f\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/651d470800ab4633a1ac7361d243202c?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy82NTFkNDcwODAwYWI0NjMzYTFhYzczNjFkMjQzMjAyYz9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/4f42cba0545947218bb90e724f826eff?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzRmNDJjYmEwNTQ1OTQ3MjE4YmI5MGU3MjRmODI2ZWZmP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1212d6ee-1c8f-4c90-9301-2ff62d440d5a" + "6dcb546f-9c60-4713-acff-8e07abcebbae" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/651d470800ab4633a1ac7361d243202c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"651d470800ab4633a1ac7361d243202c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://authadminprod.blob.local.azurestack.external/\",\r\n \"queue\": \"https://authadminprod.queue.local.azurestack.external/\",\r\n \"table\": \"https://authadminprod.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/authadminprod\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"authadminprod\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"651d470800ab4633a1ac7361d243202c\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:30.37\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1422" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:16 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "577ae940-231d-4ad2-8f7c-2cb1e8463107" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvrLaenm93/1ldbt1tN+7V41Crf6322/SbtlANgoq8dSGGeBKOd+HeNVxzD5/ZRiIokBPl4HSq7SDKCkY7SsbdNBDPM1zjM0WZ2dhtHtow4qQ2O7w5DELCpYWL7ewxAVIzceU7CnEmE+q3DBAxvaTX" - ], - "x-ms-request-id": [ - "5047b2d6-5a48-4550-95e0-171289ec18c4" - ], - "x-ms-correlation-request-id": [ - "d85b249a-c4f5-462a-974c-d503195c58b5" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjLwWhpLlxPWkCwqCkSJS398nCQBHCxTkzYwpn9a1ueIu0vCDUvczeyGHzFdV8vfO1XqOwDQknPLu3AZqHSUqarkgvQpi/8XX3vbJvx27mo67NlfnxKNCw0lN0qVieiqQ6opCON+CR0iv0U6DYsKy" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14893" + "14683" + ], + "x-ms-request-id": [ + "577ae940-231d-4ad2-8f7c-2cb1e8463107" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193116Z:d85b249a-c4f5-462a-974c-d503195c58b5" + "LOCAL:20190917T022938Z:577ae940-231d-4ad2-8f7c-2cb1e8463107" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:37 GMT" + ], + "Content-Length": [ + "1666" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"4f42cba0545947218bb90e724f826eff\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://nrphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://nrphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://nrphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:05 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:05 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:05 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/nrphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"nrphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"4f42cba0545947218bb90e724f826eff\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:05 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/4f42cba0545947218bb90e724f826eff\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/6941dfa7916c43d68ccf8c022b8f0446?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy82OTQxZGZhNzkxNmM0M2Q2OGNjZjhjMDIyYjhmMDQ0Nj9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/8c857a44ac7b4e269fad63b294ee62b2?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzhjODU3YTQ0YWM3YjRlMjY5ZmFkNjNiMjk0ZWU2MmIyP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b737bb3-4dc8-49e6-9939-da8b42a05efb" + "31aaaf63-396e-4a67-b006-947d8d333446" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/6941dfa7916c43d68ccf8c022b8f0446\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"6941dfa7916c43d68ccf8c022b8f0446\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://tenantextaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://tenantextaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://tenantextaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/tenantextaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"tenantextaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"6941dfa7916c43d68ccf8c022b8f0446\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:29.293\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1437" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:16 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "07b187ea-28ca-4a76-bd17-313f6b72a383" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvqqNEBKYoT8ITTfHpEa2YIA5aP1MaJ5UY4vxnp7BtC7DH9l9bOY5wG4qS9EUdEkqU/ZHF61Z14ieFJzqjNfrqKcM/eOZrKaMmQsOmweumPR1HulGm+8Txw72PlsNef4+BcTpdT/xZWuaT2oUAdoFI" - ], - "x-ms-request-id": [ - "e5478fe5-582a-4903-8cc3-9655df165994" - ], - "x-ms-correlation-request-id": [ - "4ec0362a-bfe9-43c7-8572-5765b3914729" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvIe42fhPgQLuKiUpRv+5BtJMfL/zDYgBRQ5wHPO0Lk4UtLdC9e6DjBQifCqwIZjSEqW6x4htO+d2Rr8ttZ2K+pSEoWpY8sr/qu56Y7XMVhzbQAO85VYVv/TDQ1q7Q+hg6OQ+x5q4bIHYdEPSi6aJS" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14892" + "14682" + ], + "x-ms-request-id": [ + "07b187ea-28ca-4a76-bd17-313f6b72a383" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193116Z:4ec0362a-bfe9-43c7-8572-5765b3914729" + "LOCAL:20190917T022938Z:07b187ea-28ca-4a76-bd17-313f6b72a383" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:38 GMT" + ], + "Content-Length": [ + "1661" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"8c857a44ac7b4e269fad63b294ee62b2\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://nrpusageaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://nrpusageaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://nrpusageaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:06 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:06 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:06 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/nrpusageaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"nrpusageaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"8c857a44ac7b4e269fad63b294ee62b2\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:06 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/8c857a44ac7b4e269fad63b294ee62b2\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/7acc15fcd147499a880921a074adb5de?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy83YWNjMTVmY2QxNDc0OTlhODgwOTIxYTA3NGFkYjVkZT9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/c4b9ab7014904681bee02c34bd751d7a?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzL2M0YjlhYjcwMTQ5MDQ2ODFiZWUwMmMzNGJkNzUxZDdhP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "108e4142-290e-415f-8b9d-b612ef60424b" + "0b0c4f45-eeb5-4cc0-ac25-fdc01afd306d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/7acc15fcd147499a880921a074adb5de\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"7acc15fcd147499a880921a074adb5de\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvstoreprodlcl.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvstoreprodlcl.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvstoreprodlcl.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageaccounts/adminkvstoreprodlcl\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"adminkvstoreprodlcl\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"7acc15fcd147499a880921a074adb5de\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:18.777\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1480" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:16 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "517b4dfb-6606-4164-8c53-5f60db0bee87" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvm17ECcQLxJoCPRJ1s1bXIQfjppGmsgFSw0Fs1nYGAxKiJ8f4GTTT31z88jBZm7CA6IH0KzWstKZX1OFigGcOWbJcPSkqCr4fpevmm9+2Mt4TZKTjyWVyCcf3+rAEE+dUYtIkI5e13wkI1SOCbGAx" - ], - "x-ms-request-id": [ - "8e0eaf1f-fdbb-44eb-b1a5-c58d70b29e4c" - ], - "x-ms-correlation-request-id": [ - "7ce65151-e94b-405a-b838-a3cb38562252" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvXlWKxIM+L4/QIL6e6n0HCCEhaoUEEsB1K2QQw8IGlEs7LRtip5u76mpjYkbk/KKygOWD4aWF/vho8sWKLLXTpod3f1ioWntOwOrOnPaY52gYMk625KP3LaKTD7eYElmalbx097NSKqOX0jvz7f3h" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14891" + "14681" + ], + "x-ms-request-id": [ + "517b4dfb-6606-4164-8c53-5f60db0bee87" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193116Z:7ce65151-e94b-405a-b838-a3cb38562252" + "LOCAL:20190917T022938Z:517b4dfb-6606-4164-8c53-5f60db0bee87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:38 GMT" + ], + "Content-Length": [ + "1667" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"c4b9ab7014904681bee02c34bd751d7a\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://obometadata.blob.local.azurestack.external/\",\r\n \"queue\": \"https://obometadata.queue.local.azurestack.external/\",\r\n \"table\": \"https://obometadata.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:36 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:36 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:36 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.AzureMonitor/providers/Microsoft.Storage/storageAccounts/obometadata\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"obometadata\",\r\n \"tenantResourceGroupName\": \"system.local.AzureMonitor\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"c4b9ab7014904681bee02c34bd751d7a\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:36 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/c4b9ab7014904681bee02c34bd751d7a\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/7c8133ff973d4032b564dd5e34e10398?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy83YzgxMzNmZjk3M2Q0MDMyYjU2NGRkNWUzNGUxMDM5OD9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/2e4b8c28f8f747daa81cc57e8a7a1726?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzJlNGI4YzI4ZjhmNzQ3ZGFhODFjYzU3ZThhN2ExNzI2P2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d4d01a2-3a93-4f61-bb78-7ab9bee2fe8d" + "79c81728-1cca-4a71-9285-f12e6c796bd6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/7c8133ff973d4032b564dd5e34e10398\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"7c8133ff973d4032b564dd5e34e10398\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://systemportal.blob.local.azurestack.external/\",\r\n \"queue\": \"https://systemportal.queue.local.azurestack.external/\",\r\n \"table\": \"https://systemportal.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/systemportal\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"systemportal\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"7c8133ff973d4032b564dd5e34e10398\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:29.64\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1417" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:16 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "fec2ef8c-0b65-4719-8e84-519f6e4d6a70" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvoRUa0af1O0x0oWGgVKvI+JjRNbZICzjffF6GEBfsDgSok8wP2kyyXgKcnVGKWUcxyBqiIOi1f1jp2KHmzxKJhqemnEiMrcdFwSr6CSX9MWaC+e9f4kXbjIrRPwgQaqzcR8hDQ1R7iVcARbUeTmwH" - ], - "x-ms-request-id": [ - "ad73d70a-6134-4063-9106-cabd3fb95886" - ], - "x-ms-correlation-request-id": [ - "b6712d99-e56b-40d2-8c11-12180959b2ee" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvKCS006FG90jHN6yhvQTI5IZcNTRu3hBGzXyrKP6HmqSbLyu46IwQBl1r8IsI6wqjrAGoa9ppUP5VS1JRvZehnX6cTXwu4nwpF5BLXNJqzzHXqo6uxsXcElFflhBgUCQrLZ4qe/Y8R2qagilyIkSI" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14890" + "14680" + ], + "x-ms-request-id": [ + "fec2ef8c-0b65-4719-8e84-519f6e4d6a70" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193117Z:b6712d99-e56b-40d2-8c11-12180959b2ee" + "LOCAL:20190917T022938Z:fec2ef8c-0b65-4719-8e84-519f6e4d6a70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:38 GMT" + ], + "Content-Length": [ + "1692" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"2e4b8c28f8f747daa81cc57e8a7a1726\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://obometadataadmin.blob.local.azurestack.external/\",\r\n \"queue\": \"https://obometadataadmin.queue.local.azurestack.external/\",\r\n \"table\": \"https://obometadataadmin.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:37 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:37 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:37 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.AzureMonitor/providers/Microsoft.Storage/storageAccounts/obometadataadmin\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"obometadataadmin\",\r\n \"tenantResourceGroupName\": \"system.local.AzureMonitor\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"2e4b8c28f8f747daa81cc57e8a7a1726\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:37 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/2e4b8c28f8f747daa81cc57e8a7a1726\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/8dbaecbea3354e4cbdb89631684b612d?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy84ZGJhZWNiZWEzMzU0ZTRjYmRiODk2MzE2ODRiNjEyZD9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/4d6d4612160d49eeafddc5d58badcadb?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzRkNmQ0NjEyMTYwZDQ5ZWVhZmRkYzVkNThiYWRjYWRiP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d348042-8613-4fdd-8a6d-cfde7130af94" + "c13df593-3324-43ad-b95f-f96eda249b92" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/8dbaecbea3354e4cbdb89631684b612d\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"8dbaecbea3354e4cbdb89631684b612d\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://armprod.blob.local.azurestack.external/\",\r\n \"queue\": \"https://armprod.queue.local.azurestack.external/\",\r\n \"table\": \"https://armprod.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/armprod\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"armprod\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"8dbaecbea3354e4cbdb89631684b612d\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:31.17\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1392" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:16 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "9c070e82-e99a-41ef-90c4-152256a513ca" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvi22dz0+k1N6k84eNwrF5p749MgvVM9R9gnzm8hsRWDHSK4Hm9Kd+tiWJwW18AqEJEnFpq22LXNAzBllZlAbuw2LCbJamoIYzUAGIt9E0d96XdVv2sbhDOI30HKgMQC1BMxjl5qjVw0PyPjkEUzpA" - ], - "x-ms-request-id": [ - "9e9e03c3-488a-4c54-b9f6-44d0abda16fd" - ], - "x-ms-correlation-request-id": [ - "f3c31759-ae8d-468b-8f2e-479f5a60e8a1" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvMkFw0Wjdv+hLPFyIQGYi18ST6nHBfHYUxlMAMcNKamMnEWgLUZYHPYGCDyZMm5dA7mnO6YcNQQAuf9Mke0nqR1m4TSTjvmb8hyWXw2VTiCgBacFG4aKuhdJys0W09yzCqzfRsUoJA54SAagUneEr" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14889" + "14679" + ], + "x-ms-request-id": [ + "9c070e82-e99a-41ef-90c4-152256a513ca" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193117Z:f3c31759-ae8d-468b-8f2e-479f5a60e8a1" + "LOCAL:20190917T022938Z:9c070e82-e99a-41ef-90c4-152256a513ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:38 GMT" + ], + "Content-Length": [ + "1687" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"4d6d4612160d49eeafddc5d58badcadb\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://onboardrpdatasa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://onboardrpdatasa.queue.local.azurestack.external/\",\r\n \"table\": \"https://onboardrpdatasa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:44 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:44 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:44 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.AzureMonitor/providers/Microsoft.Storage/storageAccounts/onboardrpdatasa\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"onboardrpdatasa\",\r\n \"tenantResourceGroupName\": \"system.local.AzureMonitor\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"4d6d4612160d49eeafddc5d58badcadb\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:44 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/4d6d4612160d49eeafddc5d58badcadb\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/8f8be5bef33f44e3a1354f2822e3165d?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy84ZjhiZTViZWYzM2Y0NGUzYTEzNTRmMjgyMmUzMTY1ZD9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/55e0c73a2365487e94cba8225fd85b8c?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzU1ZTBjNzNhMjM2NTQ4N2U5NGNiYTgyMjVmZDg1YjhjP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e5e9ad09-eb2d-4ce0-b083-cfd7cd5d0b2e" + "79b45812-d44c-451f-8baa-c7741eab63c6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/8f8be5bef33f44e3a1354f2822e3165d\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"8f8be5bef33f44e3a1354f2822e3165d\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata002.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata002.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata002.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageaccounts/adminkvlclproddata002\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata002\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"8f8be5bef33f44e3a1354f2822e3165d\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:26.617\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1490" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:16 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "7bfdc715-8343-4704-9795-514e52169add" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvc3ct4xFyN4zK/Ly4OfaTX977uilW2cPcK4IwVnxplGS19YMdJaxBxtVLnEYamTDEhR2eLv1wUyyCNnOx+g5u+M8SKSF6XRYU50aObWT4xqM4hYuKCJc2kt2Y1BZmmNz0BnHAZS0pg5Aot+psws0I" - ], - "x-ms-request-id": [ - "f7a3145e-a074-496a-84bf-f4b2246a2610" - ], - "x-ms-correlation-request-id": [ - "d4784650-13f4-4ea3-bbb7-be4433f6aa64" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvUFBMmbLf9thf99UV8DNnzUmYR2huda2VETRdCSoO3xtQYAvxLHjyQB7S8xb0DRecf7EeiH+lZ6uTySwYCWrbcBfFN26efpK5varFIYbE81YDE5mIf+pkPn5e5uebpUIRRurBZ/bTmquV5xKMCGH4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14888" + "14678" + ], + "x-ms-request-id": [ + "7bfdc715-8343-4704-9795-514e52169add" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193117Z:d4784650-13f4-4ea3-bbb7-be4433f6aa64" + "LOCAL:20190917T022938Z:7bfdc715-8343-4704-9795-514e52169add" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:38 GMT" + ], + "Content-Length": [ + "1661" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"55e0c73a2365487e94cba8225fd85b8c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://portalhostingrp.blob.local.azurestack.external/\",\r\n \"queue\": \"https://portalhostingrp.queue.local.azurestack.external/\",\r\n \"table\": \"https://portalhostingrp.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:29 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:29 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:29 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/portalhostingrp\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"portalhostingrp\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"55e0c73a2365487e94cba8225fd85b8c\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:29 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/55e0c73a2365487e94cba8225fd85b8c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/916252a6959543229fa45122b23f6d40?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy85MTYyNTJhNjk1OTU0MzIyOWZhNDUxMjJiMjNmNmQ0MD9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/64c8d5e5df6a42c694dbd61262b52191?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzY0YzhkNWU1ZGY2YTQyYzY5NGRiZDYxMjYyYjUyMTkxP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "72230aa5-c670-43a5-a421-ac5f6c923390" + "5e39739d-c54f-417a-ad6a-658d531b72c7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/916252a6959543229fa45122b23f6d40\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"916252a6959543229fa45122b23f6d40\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata002.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata002.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata002.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageaccounts/kvlclproddata002\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvlclproddata002\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"916252a6959543229fa45122b23f6d40\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:34.667\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1455" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:17 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "3b1b21dd-fd07-4a7f-b06c-d2f21c3fcccd" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+uEu0W5cupx+3OBVbxS+2lzqr0w9av7kIlolXg5aobHA08nFZl0HOK+Y7Nbr00r36lODNuw8fKoUcmWnxHa4deDG/TN8+Gz2v93dSBP4nTAp6ugxT5DGZZoifn7RfGpQTjv0p8hjMrxoqiRpFVZK" - ], - "x-ms-request-id": [ - "b5643ccb-8a0c-4f2d-b671-1edfdbce47a5" - ], - "x-ms-correlation-request-id": [ - "27d0d07d-9594-4170-afc3-d13d6ea873ac" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/fdEHytT6xHEocRITBQLUwzkq+AFWd2X9PTogkGyvLT4j2du0nmbRUerEeAgwSQg4Ckq/82vPLPclZHeprEIp7RK5If1J3czHLeyCelhNmRO3tIw4CAqoZAa9LlukafI9FWe+XvhdVBU/aiYxDkg" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14887" + "14677" + ], + "x-ms-request-id": [ + "3b1b21dd-fd07-4a7f-b06c-d2f21c3fcccd" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193117Z:27d0d07d-9594-4170-afc3-d13d6ea873ac" + "LOCAL:20190917T022938Z:3b1b21dd-fd07-4a7f-b06c-d2f21c3fcccd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:38 GMT" + ], + "Content-Length": [ + "1691" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"64c8d5e5df6a42c694dbd61262b52191\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://publicportalhostingrp.blob.local.azurestack.external/\",\r\n \"queue\": \"https://publicportalhostingrp.queue.local.azurestack.external/\",\r\n \"table\": \"https://publicportalhostingrp.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/publicportalhostingrp\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"publicportalhostingrp\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"64c8d5e5df6a42c694dbd61262b52191\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/64c8d5e5df6a42c694dbd61262b52191\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/9576f47167b644e6a0895ad0e4627a95?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy85NTc2ZjQ3MTY3YjY0NGU2YTA4OTVhZDBlNDYyN2E5NT9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/8501902ca0cd4e63a0da28da03e02f4c?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzg1MDE5MDJjYTBjZDRlNjNhMGRhMjhkYTAzZTAyZjRjP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1caca68-9ea0-4270-86d6-f4c8e4bd6ef1" + "ec2e1f46-3350-40f0-9f06-a08222513c10" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/9576f47167b644e6a0895ad0e4627a95\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"9576f47167b644e6a0895ad0e4627a95\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crpusageaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://crpusageaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://crpusageaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/crpusageaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"crpusageaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"9576f47167b644e6a0895ad0e4627a95\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:38.963\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1432" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:17 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "06f6db27-0538-4d7f-a1c2-bc96c7e6bf52" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvNm0q/yitJFagPrKMLfePs6FaZD/cebz34ctJGsDOhhKALMaCnuqvvpYQMfQZvz68uNCfcHhmfT2qgxaw844rdET6dNVLoMBA7tz8gQSLeJvpCoXkvj9Uysnd35bHxC8caIgvRAID2FoDx3jLGaXk" - ], - "x-ms-request-id": [ - "5298ce1f-d4ad-40bb-9cea-0506b2fc1c74" - ], - "x-ms-correlation-request-id": [ - "21b1b731-4ffe-45f4-ae99-5cb9360529d7" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvj3Dz1vJX4K7Q3i0NL/6F2OCZUlLX1Nt7aoEF9Sml3ZZZ0HEuanVQLeYEzqDudUWTPbrzUXLcVrWq74h6/JKXoffItJxPrgnYExQU7hAP43XbrT0cWo36InupeDgHmnHCQjyhNJ5YWOmeP9IPnaPq" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14886" + "14676" + ], + "x-ms-request-id": [ + "06f6db27-0538-4d7f-a1c2-bc96c7e6bf52" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193117Z:21b1b731-4ffe-45f4-ae99-5cb9360529d7" + "LOCAL:20190917T022938Z:06f6db27-0538-4d7f-a1c2-bc96c7e6bf52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:38 GMT" + ], + "Content-Length": [ + "1676" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"8501902ca0cd4e63a0da28da03e02f4c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://publicsystemevents.blob.local.azurestack.external/\",\r\n \"queue\": \"https://publicsystemevents.queue.local.azurestack.external/\",\r\n \"table\": \"https://publicsystemevents.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:27 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:27 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:27 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/publicsystemevents\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"publicsystemevents\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"8501902ca0cd4e63a0da28da03e02f4c\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:27 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/8501902ca0cd4e63a0da28da03e02f4c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/990c6816faa644fdb72933dc4ea77cc7?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy85OTBjNjgxNmZhYTY0NGZkYjcyOTMzZGM0ZWE3N2NjNz9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/b06d2f9e795041a5b8038f964392fd51?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzL2IwNmQyZjllNzk1MDQxYTViODAzOGY5NjQzOTJmZDUxP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16009624-7564-4f0a-9231-c7baf9ce0aaa" + "9f87c255-c938-454f-89dc-7baaa9ece16d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/990c6816faa644fdb72933dc4ea77cc7\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"990c6816faa644fdb72933dc4ea77cc7\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://systemevents.blob.local.azurestack.external/\",\r\n \"queue\": \"https://systemevents.queue.local.azurestack.external/\",\r\n \"table\": \"https://systemevents.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/systemevents\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"systemevents\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"990c6816faa644fdb72933dc4ea77cc7\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:30.577\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1417" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:17 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "142e7b49-dbaf-41b3-8422-85f8f359e4e9" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9DSYohGIXsSL9IqdYU+RZgLEKWoPx5xsO51sha9FvIDv4U4hGi6Nawbm/TY3Us/SJ/rDcARQGZ2Pubh0rht8y9q+xq4hJTayhl6UtfyCAMAV2LP8DCm+OE7ByERsrQuKOGJ4Xdj7bUnEGHiN0gC7" - ], - "x-ms-request-id": [ - "04861ea6-c1c5-44db-9482-02f4fdc36fac" - ], - "x-ms-correlation-request-id": [ - "5481271e-5761-49b7-811c-3ede216338dd" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvGfc34yPcE8DNzCr9bdb+mHH00iMRTfYLh+breSTeH7HeRHr9TUMBbuMsYmMtjzG4PTEUFSGGUGYKFLrvckOpv9ZhAPlBnzrcEdB95xdfemkAJ4n8znwgalULfNeFkfqZ8laN7rdLP23F1OHNzZHv" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14885" + "14675" + ], + "x-ms-request-id": [ + "142e7b49-dbaf-41b3-8422-85f8f359e4e9" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193117Z:5481271e-5761-49b7-811c-3ede216338dd" + "LOCAL:20190917T022939Z:142e7b49-dbaf-41b3-8422-85f8f359e4e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:38 GMT" + ], + "Content-Length": [ + "1676" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"b06d2f9e795041a5b8038f964392fd51\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://publicsystemportal.blob.local.azurestack.external/\",\r\n \"queue\": \"https://publicsystemportal.queue.local.azurestack.external/\",\r\n \"table\": \"https://publicsystemportal.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/publicsystemportal\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"publicsystemportal\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"b06d2f9e795041a5b8038f964392fd51\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/b06d2f9e795041a5b8038f964392fd51\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/996281397eab4405a1575151c1d4b573?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy85OTYyODEzOTdlYWI0NDA1YTE1NzUxNTFjMWQ0YjU3Mz9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/9c22af53e46244699a2f8187ae4c5e76?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzljMjJhZjUzZTQ2MjQ0Njk5YTJmODE4N2FlNGM1ZTc2P2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3de04d21-e337-40f2-bdad-13b7f705be2f" + "5e738130-0aa7-4409-be07-4f168ef61082" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/996281397eab4405a1575151c1d4b573\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"996281397eab4405a1575151c1d4b573\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclprodbackup.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclprodbackup.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclprodbackup.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageaccounts/kvlclprodbackup\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvlclprodbackup\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"996281397eab4405a1575151c1d4b573\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:41.333\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1450" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:17 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "f8490649-840a-408f-ae9d-22fa46936b33" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvv33KJFWr8FCRo5XuryB8aV0fJurxsgq9VpOzJ7QkP23//V7b7YiKAFHyOswIIfYKqkedgBvb4GRUuhB2sonCy3vzWbZxHRP09L6A8mLp9lhpvFFc+Q0UtT/SbHPD/yAJhMJ6WaXhR+1j6jogZ/QU" - ], - "x-ms-request-id": [ - "b408f04b-50f1-4304-840c-91e160424a68" - ], - "x-ms-correlation-request-id": [ - "0676567f-cf71-4dba-94c3-6d019cec80b8" + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvUIEyTqB7o3XnZ66i6OisexcSwgnqYNKOPFiA7gMM0qcyNLjZybdgM8itZAz3Lxyn8VRnTsvGXdJX4UYKs4Ju9xH58Y1b8fOQQFHl5la5/GlzTi1PgHs53+uJWibbK1OqLHWYSZCIAWpJcayiI8Uh" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14884" + "14674" + ], + "x-ms-request-id": [ + "f8490649-840a-408f-ae9d-22fa46936b33" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193117Z:0676567f-cf71-4dba-94c3-6d019cec80b8" + "LOCAL:20190917T022939Z:f8490649-840a-408f-ae9d-22fa46936b33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:38 GMT" + ], + "Content-Length": [ + "1671" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"9c22af53e46244699a2f8187ae4c5e76\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sbrphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://sbrphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://sbrphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:02 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:02 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:02 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/sbrphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"sbrphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"9c22af53e46244699a2f8187ae4c5e76\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:02 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/9c22af53e46244699a2f8187ae4c5e76\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/9f70a4f764be465ca2434ff43c7c5be4?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy85ZjcwYTRmNzY0YmU0NjVjYTI0MzRmZjQzYzdjNWJlND9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/2f1daa81bc224ed68b556593d3b5b5df?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzJmMWRhYTgxYmMyMjRlZDY4YjU1NjU5M2QzYjViNWRmP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1352cd17-3e4c-42cb-9930-7ba50763f9af" + "b174361b-0837-4d4a-aabb-212a38cf6ee0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/9f70a4f764be465ca2434ff43c7c5be4\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"9f70a4f764be465ca2434ff43c7c5be4\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata005.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata005.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata005.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageaccounts/kvlclproddata005\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvlclproddata005\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"9f70a4f764be465ca2434ff43c7c5be4\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:35.803\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1455" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:17 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "962d5c7b-66d5-4ae6-bbe3-b7352826a22f" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvxAMFcDcJqisEixD0YREGZZxUcEMq+HkBly7T++LVd5Ob0DuODhKveFVCh9iRg6F14kbdVo+bM1sMbZAkjDKi2ku8n2DJi9WpWN1mVfDJHeJz8nVIQJqZuMAbFN9ClRYIfJZqhr54T4B5wz6OQ8ID" - ], - "x-ms-request-id": [ - "02d1a9b4-15ef-4463-9974-8d7f076d3447" - ], - "x-ms-correlation-request-id": [ - "a52493c2-872e-4bb9-9cd1-43c59100f12a" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvNIpoznkz9W50EU+zgznjUE/iROHfeKR1ekjrhQ5jkuGfDo/4ZaTJI3dUU3FikkWbLNgGaZnP4a1ASx+2G4PIf9u9293nLKMBSUXk6ifZN5clVUa08KDwB3A8pXys55vXS+KoYmBYDT2i/qhnSSuF" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14883" + "14673" + ], + "x-ms-request-id": [ + "962d5c7b-66d5-4ae6-bbe3-b7352826a22f" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193117Z:a52493c2-872e-4bb9-9cd1-43c59100f12a" + "LOCAL:20190917T022939Z:962d5c7b-66d5-4ae6-bbe3-b7352826a22f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:39 GMT" + ], + "Content-Length": [ + "1694" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"2f1daa81bc224ed68b556593d3b5b5df\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://secondhintserviceacc.blob.local.azurestack.external/\",\r\n \"queue\": \"https://secondhintserviceacc.queue.local.azurestack.external/\",\r\n \"table\": \"https://secondhintserviceacc.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:23 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:23 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:23 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/secondhintserviceacc\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"secondhintserviceacc\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"2f1daa81bc224ed68b556593d3b5b5df\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:23 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/2f1daa81bc224ed68b556593d3b5b5df\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/ab9e6c77f96d42af9068ae8527214f36?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy9hYjllNmM3N2Y5NmQ0MmFmOTA2OGFlODUyNzIxNGYzNj9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/51068b684780438ca233303c1969dede?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzUxMDY4YjY4NDc4MDQzOGNhMjMzMzAzYzE5NjlkZWRlP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8fe05470-bcde-47a3-8591-4e0a741aa388" + "61102a4e-99f5-4db0-a630-420c7740ecca" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/ab9e6c77f96d42af9068ae8527214f36\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"ab9e6c77f96d42af9068ae8527214f36\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvusage.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvusage.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvusage.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageaccounts/kvusage\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvusage\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"ab9e6c77f96d42af9068ae8527214f36\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:41.713\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1410" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:17 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "55f5daeb-ff80-4ce7-ae3b-6ddb61451330" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9Cv9Ikf6Cl/fR6kt1zd5xIGWiZyTu35becyODJ1HEeMXnpIAAt22TX66Gs3aRiAbLTsCDk3mt28P3GNnOi+tEMK5M1K7MbHn0pdhn2/jRlpMvgP5gP7ecSArFv+avUo8xbicYcrVx4H9FfaqNK1i" - ], - "x-ms-request-id": [ - "5182e6f7-ae64-463c-9edd-a8033f9fe818" - ], - "x-ms-correlation-request-id": [ - "f206bb99-f724-454b-bfbb-1fbe8ec6e97b" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9kDJRMImf4RAVyqINt0VR4IWA7ZQnYnD8BhFpWIhVcxpggFu0x73bl/6ZobRFVDaS2XrY5r2GwWjb7EqyzSbdR8+6BkijdbZraGYSJpGlOMeaZU/qnLSKgyqPp/sWbsq2EWx4WDU+LdX/zOACsrS" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14882" + "14672" + ], + "x-ms-request-id": [ + "55f5daeb-ff80-4ce7-ae3b-6ddb61451330" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193117Z:f206bb99-f724-454b-bfbb-1fbe8ec6e97b" + "LOCAL:20190917T022939Z:55f5daeb-ff80-4ce7-ae3b-6ddb61451330" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:39 GMT" + ], + "Content-Length": [ + "1666" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"51068b684780438ca233303c1969dede\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sfphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://sfphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://sfphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:46 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:46 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:46 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/sfphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"sfphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"51068b684780438ca233303c1969dede\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:46 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/51068b684780438ca233303c1969dede\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/ad28eb5b219f4ab6b7a5b62a3d7ca90c?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy9hZDI4ZWI1YjIxOWY0YWI2YjdhNWI2MmEzZDdjYTkwYz9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/05db89bad35341c6ae0748c814cb5fca?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzA1ZGI4OWJhZDM1MzQxYzZhZTA3NDhjODE0Y2I1ZmNhP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "61adac2b-6475-4e50-a68f-b3018d19d869" + "f2e0557d-87b9-4a2e-a36d-9089eba3cd03" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/ad28eb5b219f4ab6b7a5b62a3d7ca90c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"ad28eb5b219f4ab6b7a5b62a3d7ca90c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srpeventsaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srpeventsaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srpeventsaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/srpeventsaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"srpeventsaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"ad28eb5b219f4ab6b7a5b62a3d7ca90c\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:14.93\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1437" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:17 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "481dcd20-8d08-43bf-84ff-c14e1385e7b6" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv8S6HRWNntVZB5xzro4yaRh3+3tLzTKXJl8Z2MQ225pB8n9TBNE+cy9vT/a3AiJDztReHdNzlv/VAgZfU8O5HauRYaiOQKT2SGzajxvVp7/N2UepE7JbPNT+qlUVTVcHpVYHtPc+KZ+hZRAtNfA2U" - ], - "x-ms-request-id": [ - "aa5de3e1-1d69-4eb1-9110-caf4aa5e8ae0" - ], - "x-ms-correlation-request-id": [ - "714ccf6d-db71-4741-b7ae-b621d7dacd0d" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvUnTq390ywh+d1220bD6TMBoySfWesKdiy/mD69NtxxNSfRkn9b0UYKV2etyB1SN4/jVcPNutBmv/9uIBQ/1jh2E0FQG2eL22+kRdtRl5vbWwOCTz3NFABs5wym57drVqWkBF4ZhcbVwgyHR1/Zvv" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14881" + "14671" + ], + "x-ms-request-id": [ + "481dcd20-8d08-43bf-84ff-c14e1385e7b6" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193117Z:714ccf6d-db71-4741-b7ae-b621d7dacd0d" + "LOCAL:20190917T022939Z:481dcd20-8d08-43bf-84ff-c14e1385e7b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:39 GMT" + ], + "Content-Length": [ + "1666" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"05db89bad35341c6ae0748c814cb5fca\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srpeventsaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srpeventsaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srpeventsaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:33 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:33 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:33 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/srpeventsaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"srpeventsaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"05db89bad35341c6ae0748c814cb5fca\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:33 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/05db89bad35341c6ae0748c814cb5fca\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/b27b21524dda4256876a7ee404c39183?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy9iMjdiMjE1MjRkZGE0MjU2ODc2YTdlZTQwNGMzOTE4Mz9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/874ac5b42e9d4c9b9c8c1ca4adc15adf?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzg3NGFjNWI0MmU5ZDRjOWI5YzhjMWNhNGFkYzE1YWRmP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "754147bb-038d-405d-832a-eb90b20f516b" + "56c27e75-359f-4af3-9b82-989bf910eef8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/b27b21524dda4256876a7ee404c39183\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"b27b21524dda4256876a7ee404c39183\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata004.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata004.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata004.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageaccounts/kvlclproddata004\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvlclproddata004\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"b27b21524dda4256876a7ee404c39183\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:35.427\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1455" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:17 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "07778766-21c3-45dd-9e5a-b0f5a610ffd1" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv9LGMF8U3poVakJIVLpTgj/jZFfLtw8gHT3bJBZFQ6JQmW1Ob7X7MSUb+jf5ud58VbbIUO7LbpNe8bWUN1Emju38ZFuBPwAIO6mBqtlvhgci0kZSDH6C2P1iHzRv1rmHJj5HoDUO7jahwGN74e5wU" - ], - "x-ms-request-id": [ - "6377ce5b-0dba-47ac-a353-24ebc78b4c5d" - ], - "x-ms-correlation-request-id": [ - "683c61d3-c71e-4f1e-99ae-2dc7f25f16e7" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvc6N5oW/adY8/5k4RgUt5v8rinj1GjKGAUDDeN6nLefQ+I5ZszpneQ17hUMzBXKDldYSz55JE6gJq6hWZ7sRjNa14BJDUd3mp/yw/JH/VTCDjhaUQVDwjeud9IVEbxNPn2yyag2I6XaDPcIVry8iT" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14880" + "14670" + ], + "x-ms-request-id": [ + "07778766-21c3-45dd-9e5a-b0f5a610ffd1" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193117Z:683c61d3-c71e-4f1e-99ae-2dc7f25f16e7" + "LOCAL:20190917T022939Z:07778766-21c3-45dd-9e5a-b0f5a610ffd1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:39 GMT" + ], + "Content-Length": [ + "1666" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"874ac5b42e9d4c9b9c8c1ca4adc15adf\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:32 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:32 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:32 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/srphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"srphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"874ac5b42e9d4c9b9c8c1ca4adc15adf\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:32 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/874ac5b42e9d4c9b9c8c1ca4adc15adf\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/b37939f0ab67457080efbed73a12a322?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy9iMzc5MzlmMGFiNjc0NTcwODBlZmJlZDczYTEyYTMyMj9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/36c7de49f5a94efd9dc2fff290e4f92f?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzM2YzdkZTQ5ZjVhOTRlZmQ5ZGMyZmZmMjkwZTRmOTJmP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3109b60f-a370-4fa7-9c7f-318fa03627c9" + "de9fef34-fb7e-47bc-9a36-d23392f18236" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/b37939f0ab67457080efbed73a12a322\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"b37939f0ab67457080efbed73a12a322\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://updateadminaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://updateadminaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://updateadminaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/updateadminaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"updateadminaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"b37939f0ab67457080efbed73a12a322\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:46.06\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1447" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:17 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "4529104f-165b-4ceb-89e0-37193c1c3070" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvb4SMr3x45e8FcMRqfUdxemZUy7NvFVcD66T2+dQgxhFLocu0bk3dMZbIfcGYVP4jLLv1HKHq3pppIciFxQFwX2K0HpCWtySc8upOHU03Mc5vT+CGiWRfa+/L75TJrWgypSD0uWa4m96EMMYEmtDT" - ], - "x-ms-request-id": [ - "dcdec12f-f2d0-457e-9b02-bc0bb1bd1cf7" - ], - "x-ms-correlation-request-id": [ - "7e82dad2-0c29-43c5-abc1-af92eec08b10" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvICdwV/1ZPaW1WFcSw68ZF5fUTxdXXP/6Le2m36AcWeptDBkIfmNQgI2gVi51QWKtijSCyk6EbD6bFkzHlRe6BIpWJJiv1TV2g63JEPNaweBsN6zUFfJX8gutn00CZTJyxQHJsM/YRrPcoC+re3ZB" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14879" + "14669" + ], + "x-ms-request-id": [ + "4529104f-165b-4ceb-89e0-37193c1c3070" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193117Z:7e82dad2-0c29-43c5-abc1-af92eec08b10" + "LOCAL:20190917T022939Z:4529104f-165b-4ceb-89e0-37193c1c3070" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:39 GMT" + ], + "Content-Length": [ + "1661" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"36c7de49f5a94efd9dc2fff290e4f92f\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srphyadmaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srphyadmaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srphyadmaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:38 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:38 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:38 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/srphyadmaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"srphyadmaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"36c7de49f5a94efd9dc2fff290e4f92f\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:38 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/36c7de49f5a94efd9dc2fff290e4f92f\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/b619a28863294abab5a865e9d0fb7a7c?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy9iNjE5YTI4ODYzMjk0YWJhYjVhODY1ZTlkMGZiN2E3Yz9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/1500aae54fa64b66bb994e8b6e09c9c1?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzE1MDBhYWU1NGZhNjRiNjZiYjk5NGU4YjZlMDljOWMxP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "72a2bde0-13c8-4992-83bf-5eb6a5420f27" + "1f7254b3-3b01-4347-8ac2-e56f573cc612" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/b619a28863294abab5a865e9d0fb7a7c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"b619a28863294abab5a865e9d0fb7a7c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata001.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata001.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata001.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageaccounts/kvlclproddata001\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvlclproddata001\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"b619a28863294abab5a865e9d0fb7a7c\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:34.287\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1455" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:17 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "b65194be-20c5-4845-a57c-707a7b70edb1" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvmN/vkXushUbnfd+jEplFOKuPxj8kU1qtxX0HYzfcx5FaWrioQjgCtS4alBce8i4I6QwZr0m7Jt1Ekx9XRO2KVXkfX0dGA/nvom4zok2UrJED37n+y6JhxJOn1x7++Atb55+nHhOn7Zhf4Q0e0KMr" - ], - "x-ms-request-id": [ - "b4f8f765-9081-4fc3-a7bb-740e6ec3ae55" - ], - "x-ms-correlation-request-id": [ - "8d11b9e4-7ae3-442b-b8d2-ac28b8a9cbf2" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv6RWsiSINqFXGH9KEu/zS1sMzGMgsR2TnA0ZK+YQB1b7mOsFyigQgNkfGp6FcYaEE1IyJGT/eAsSktNVRUAV9KqlGaSV8mnDnUtXzcJq1QAtILUj4qpn63G8vAoehlCWqIRumwDvBxEHU9JAAg2ny" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14878" + "14668" + ], + "x-ms-request-id": [ + "b65194be-20c5-4845-a57c-707a7b70edb1" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193118Z:8d11b9e4-7ae3-442b-b8d2-ac28b8a9cbf2" + "LOCAL:20190917T022939Z:b65194be-20c5-4845-a57c-707a7b70edb1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:39 GMT" + ], + "Content-Length": [ + "1661" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"1500aae54fa64b66bb994e8b6e09c9c1\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srphytenaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srphytenaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srphytenaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:38 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:38 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:38 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/srphytenaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"srphytenaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"1500aae54fa64b66bb994e8b6e09c9c1\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:38 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/1500aae54fa64b66bb994e8b6e09c9c1\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/b83acb181ff84c3e98679849c5aaa742?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy9iODNhY2IxODFmZjg0YzNlOTg2Nzk4NDljNWFhYTc0Mj9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/81c8020224744cdc83905cf9b60d7859?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzgxYzgwMjAyMjQ3NDRjZGM4MzkwNWNmOWI2MGQ3ODU5P2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "397f1fd2-7561-4230-ae58-4dbdfa2cb2e1" + "27d6af4b-2bde-4f2e-b141-5908a830a7dc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/b83acb181ff84c3e98679849c5aaa742\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"b83acb181ff84c3e98679849c5aaa742\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata003.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata003.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata003.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageaccounts/kvlclproddata003\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvlclproddata003\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"b83acb181ff84c3e98679849c5aaa742\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:35.037\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1455" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:17 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "717c8c3c-ef57-401a-9ea2-bfbc2d7c0d00" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvE8KdrLFxiMBDC9AQAlJsGjIrMXfVftRISQ/l8Z8ibDIxkr663qU2z2ijq17u0R018+ADaGqxiJmmLIQpJv5YuLFh3XRf2nh4ov6b6QS6gl3EEI0wUjm1u1bidAtCDCMyv5NADGUaR5NCnxOrct7z" - ], - "x-ms-request-id": [ - "3afd7bed-ad64-47d0-86e3-700a03c8c575" - ], - "x-ms-correlation-request-id": [ - "e2acb517-d823-4fdb-a77b-0e7510936426" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv1qeo53iRuRdfWqUWdlRs1WnBKs32xjR6xR9p0RDKAaQT/4U6S+SNeJgvzlSfRHo7Ae1HQu6p8hNFn+ojXzGk41Dx6QMo2WMpfTJvPFUI1LYVxoc4yv4NWmh7884snqRwnEM7k8bVd5CXnLJBLCcP" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14877" + "14667" + ], + "x-ms-request-id": [ + "717c8c3c-ef57-401a-9ea2-bfbc2d7c0d00" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193118Z:e2acb517-d823-4fdb-a77b-0e7510936426" + "LOCAL:20190917T022939Z:717c8c3c-ef57-401a-9ea2-bfbc2d7c0d00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:39 GMT" + ], + "Content-Length": [ + "1661" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"81c8020224744cdc83905cf9b60d7859\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srpusageaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srpusageaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srpusageaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:37 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:37 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:37 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/srpusageaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"srpusageaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"81c8020224744cdc83905cf9b60d7859\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:37 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/81c8020224744cdc83905cf9b60d7859\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/bad37ca8583341658074db993999a8cc?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy9iYWQzN2NhODU4MzM0MTY1ODA3NGRiOTkzOTk5YThjYz9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/263c3a055c2f48d0a99703739ace8142?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzI2M2MzYTA1NWMyZjQ4ZDBhOTk3MDM3MzlhY2U4MTQyP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99121acf-efbe-47bd-8cb9-94f00a46a6c2" + "7fb207c5-f8af-451d-b5f5-7bb53f8834ad" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/bad37ca8583341658074db993999a8cc\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"bad37ca8583341658074db993999a8cc\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://armadminprod.blob.local.azurestack.external/\",\r\n \"queue\": \"https://armadminprod.queue.local.azurestack.external/\",\r\n \"table\": \"https://armadminprod.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/armadminprod\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"armadminprod\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"bad37ca8583341658074db993999a8cc\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:29.817\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1417" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:17 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "9f11a8b3-c069-40e6-b8e1-982554451d6a" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5gMw2Hb1rHYt8P82CzvV+y3+oj3Ew+crd9CxtSqKV29AEH1TCUsTb+63Ic3Ua8TABySubvPVckK9PvzdRPCLHAsiG6S12gR+USvLD0crTcr/RD/Yg1Xg3FgN/HPH1fo/+xiKtrDufNPuIl9kyq5t" - ], - "x-ms-request-id": [ - "ca030b70-09fc-48fb-bf53-5c7cfd95a859" - ], - "x-ms-correlation-request-id": [ - "ac314b9c-d575-4fde-aaa4-84651dd3c46e" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQTMzXojdIXzVZjsk4+e6w2DAxeZ4P6yfVJVIISSZ58mtHV/BMmk2pqPIzQp3NXvuG2HWNsVyzwg7z5Ws4pWO9cNFd2eZQH7gqOHAoMUlxViVPP9usGRDvGjCxtzxAdX3fB9WB7f3o9jvlQpkQUYt" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14876" + "14666" + ], + "x-ms-request-id": [ + "9f11a8b3-c069-40e6-b8e1-982554451d6a" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193118Z:ac314b9c-d575-4fde-aaa4-84651dd3c46e" + "LOCAL:20190917T022940Z:9f11a8b3-c069-40e6-b8e1-982554451d6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:39 GMT" + ], + "Content-Length": [ + "1646" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"263c3a055c2f48d0a99703739ace8142\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://systemevents.blob.local.azurestack.external/\",\r\n \"queue\": \"https://systemevents.queue.local.azurestack.external/\",\r\n \"table\": \"https://systemevents.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:43 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:43 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:43 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/systemevents\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"systemevents\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"263c3a055c2f48d0a99703739ace8142\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:43 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/263c3a055c2f48d0a99703739ace8142\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/bd326c553a4a4914adaab93be8536269?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy9iZDMyNmM1NTNhNGE0OTE0YWRhYWI5M2JlODUzNjI2OT9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/ca8b593ba5374c3082ab0ed50bb81a41?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzL2NhOGI1OTNiYTUzNzRjMzA4MmFiMGVkNTBiYjgxYTQxP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2250cfa-64c1-4555-8b2b-0ac9c03326dc" + "0c404369-8c92-4ccb-bc00-3953a6b976fb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/bd326c553a4a4914adaab93be8536269\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"bd326c553a4a4914adaab93be8536269\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvstoreprodlcl.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvstoreprodlcl.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvstoreprodlcl.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageaccounts/kvstoreprodlcl\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvstoreprodlcl\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"bd326c553a4a4914adaab93be8536269\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:40.953\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1445" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:18 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "59b021e9-8975-4ab1-b125-efbadf922ccd" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvtgjRkxLH33zOwlWPmiaLsJIBK7UEBUK+U8nl1Q0YoQYLgA+Axxy5FgFxbyJ41D41xVfcB9SjjSMjw91L55CZqqcrmbtFr67drUP99NCj6yymYWtmZ83fGK6LMZMovGRVE9Mbzh540tUyxQHP9WsT" - ], - "x-ms-request-id": [ - "4017119a-1217-42b8-9d89-ffd6b87fc8a2" - ], - "x-ms-correlation-request-id": [ - "bbeecb95-e37c-48b0-85bf-26eb99826f56" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvmbD6jyPU9C7mT7UnIEuUg+LnhaBTq853RnsxDJ0SvEgnSOZI2wmwFln01NPktnN7TqeurlcMXurWSh3WgWvohuFxu1/l3n49f4BUGNOM0JSupZ/4MqrGcq6HllPgiqZTmFc4dMrSSsNTxZ/ZT0S8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14875" + "14665" + ], + "x-ms-request-id": [ + "59b021e9-8975-4ab1-b125-efbadf922ccd" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193118Z:bbeecb95-e37c-48b0-85bf-26eb99826f56" + "LOCAL:20190917T022940Z:59b021e9-8975-4ab1-b125-efbadf922ccd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:39 GMT" + ], + "Content-Length": [ + "1651" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"ca8b593ba5374c3082ab0ed50bb81a41\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://systemgallery.blob.local.azurestack.external/\",\r\n \"queue\": \"https://systemgallery.queue.local.azurestack.external/\",\r\n \"table\": \"https://systemgallery.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/systemgallery\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"systemgallery\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"ca8b593ba5374c3082ab0ed50bb81a41\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/ca8b593ba5374c3082ab0ed50bb81a41\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/be57c92cec0d4c268b00b70fc3c64023?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy9iZTU3YzkyY2VjMGQ0YzI2OGIwMGI3MGZjM2M2NDAyMz9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/eb3455a164b941939a508671b4b642a5?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzL2ViMzQ1NWExNjRiOTQxOTM5YTUwODY3MWI0YjY0MmE1P2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "709da204-0471-4f3d-b03f-bbf140e6f42f" + "d5c2f724-2e12-4901-8aef-201b36460ee1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/be57c92cec0d4c268b00b70fc3c64023\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"be57c92cec0d4c268b00b70fc3c64023\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata003.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata003.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata003.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageaccounts/adminkvlclproddata003\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata003\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"be57c92cec0d4c268b00b70fc3c64023\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:26.997\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1490" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:18 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "efb26a1f-2055-4353-a666-55f8a1c778c6" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvELvUZhp7dg/OUSsnWWPVBBdo0lcC+JJrVjt1r+IfV8eUTU8jRzoGcXgWqcGajxvqNeqg5tN4xl8vjvj821rjwnR/ZMoBACeKV8qFFo+ip58Icnzfgluh05e/3crux1InYQZ0vNzrG5w0IWBcVwkn" - ], - "x-ms-request-id": [ - "26856f1e-6932-44e4-9925-780a0780cfd3" - ], - "x-ms-correlation-request-id": [ - "76b8487e-75e3-4b38-a958-3927bde11a5c" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvgtMemaXaqmbYRhPmeGiCI5u0WimoH0L/V1dD7jMPwK0xXnVDm1XJkjvh3GxQpX9JGGBpAZBa38bLLg5WBWfbtQvH+w4/rqN3MfKGWxqwGSDPKa17aTv4H3luvt4dm1dLHxFhzXD3Ci1BlQRZQ7i4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14874" + "14664" + ], + "x-ms-request-id": [ + "efb26a1f-2055-4353-a666-55f8a1c778c6" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193118Z:76b8487e-75e3-4b38-a958-3927bde11a5c" + "LOCAL:20190917T022940Z:efb26a1f-2055-4353-a666-55f8a1c778c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:40 GMT" + ], + "Content-Length": [ + "1646" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"eb3455a164b941939a508671b4b642a5\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://systemportal.blob.local.azurestack.external/\",\r\n \"queue\": \"https://systemportal.queue.local.azurestack.external/\",\r\n \"table\": \"https://systemportal.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:33 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:33 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:33 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/systemportal\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"systemportal\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"eb3455a164b941939a508671b4b642a5\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:33 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/eb3455a164b941939a508671b4b642a5\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/c2a6bdd19e404154afe27e2637e64ee1?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy9jMmE2YmRkMTllNDA0MTU0YWZlMjdlMjYzN2U2NGVlMT9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/eb9c63f8fa9c427084c8e5d00d27ded3?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzL2ViOWM2M2Y4ZmE5YzQyNzA4NGM4ZTVkMDBkMjdkZWQzP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "463a204d-6f37-499e-a3ac-6e62b6919643" + "93f17cc0-d4b7-462c-85f7-5537a7e73f95" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/c2a6bdd19e404154afe27e2637e64ee1\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"c2a6bdd19e404154afe27e2637e64ee1\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://hrphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://hrphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://hrphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/hrphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"hrphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"c2a6bdd19e404154afe27e2637e64ee1\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:29.983\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1437" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:18 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "ac0c48f0-bf50-4cda-9325-af990bd699aa" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvo6sMefEwu1FcEdNpoIi3GDiYm4l3Vgm82JVAPbH4ZyWKuKymiuep7oey5w/V1qFx5hHB5BICQ98goe4ljng4V9mTpl4UrS82NAZk5rrgcOQJKajme5L9hBhGRDxk2jl5hgAoOT6wtCPF1NmzVHmm" - ], - "x-ms-request-id": [ - "253c1629-199b-4040-8929-5f968c6d1ebd" - ], - "x-ms-correlation-request-id": [ - "68e80db6-999d-46cf-be8d-2f26dc8fbc0b" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvx2lZOIPWxXF59wbEmGB9osEVjYHb7onmjbw+J8Z3PuMI96cqR+R1HCqHCZBH1u4Hq3JIieeHBAlElAE6lkaCB1Ol2QX3J2BFFIwHADPujsHGBK4A9N8077fgrfBuRyYUlUGhKirDiShOw2ByoB0n" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14873" + "14663" + ], + "x-ms-request-id": [ + "ac0c48f0-bf50-4cda-9325-af990bd699aa" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193118Z:68e80db6-999d-46cf-be8d-2f26dc8fbc0b" + "LOCAL:20190917T022940Z:ac0c48f0-bf50-4cda-9325-af990bd699aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:40 GMT" + ], + "Content-Length": [ + "1636" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"eb9c63f8fa9c427084c8e5d00d27ded3\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://systemtemp.blob.local.azurestack.external/\",\r\n \"queue\": \"https://systemtemp.queue.local.azurestack.external/\",\r\n \"table\": \"https://systemtemp.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:24 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:24 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:24 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/systemtemp\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"systemtemp\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"eb9c63f8fa9c427084c8e5d00d27ded3\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:24 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/eb9c63f8fa9c427084c8e5d00d27ded3\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/c7cf2e4007614bf79741482ae435964a?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy9jN2NmMmU0MDA3NjE0YmY3OTc0MTQ4MmFlNDM1OTY0YT9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/2b55957ef12143b5a0d9fb79d74229fd?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzJiNTU5NTdlZjEyMTQzYjVhMGQ5ZmI3OWQ3NDIyOWZkP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3db271a1-430e-4b85-92ee-457a4e6ba88f" + "bdafea60-576f-462b-a4b4-8238c1ba2154" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/c7cf2e4007614bf79741482ae435964a\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"c7cf2e4007614bf79741482ae435964a\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvvnsproddata.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvvnsproddata.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvvnsproddata.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.keyvault/providers/Microsoft.Storage/storageaccounts/kvvnsproddata\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvvnsproddata\",\r\n \"tenantResourceGroupName\": \"system.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"c7cf2e4007614bf79741482ae435964a\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:32.52\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1428" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:18 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "02922dab-3acc-464c-bd20-ee44ba4952c6" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvttT2u+LS/327GOs6A63bEZ1NQJXbuZ603hNlV/bIjYJzvILVwK5RBdIq+lT00g9e9+kT4yEu/9xk4g1D9oeJEldXUUicevcce15HmzrQKkTYHCEPDC3m4MPEfgN2xxHAWt/Uji6wXODmUcyfP64n" - ], - "x-ms-request-id": [ - "8dddef85-8890-407c-8ff5-4008e4faf0e2" - ], - "x-ms-correlation-request-id": [ - "59a42f53-d7ac-46c8-b4d7-9b456c0cba84" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvmllysPxbY4WwzQgeWDTmnjvs2osc9+nevU9V64KxqddgGYPEgJfGlw9mNrmzddSUbePIwIiQBhHzlDCGiTklHn3bweWh2Bzkh3P1+pc7oFUI5qWMm3FlwBsC7PWO0xC3OwEXxqxOTnI7fldS9xK4" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14872" + "14662" + ], + "x-ms-request-id": [ + "02922dab-3acc-464c-bd20-ee44ba4952c6" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193118Z:59a42f53-d7ac-46c8-b4d7-9b456c0cba84" + "LOCAL:20190917T022940Z:02922dab-3acc-464c-bd20-ee44ba4952c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:40 GMT" + ], + "Content-Length": [ + "1666" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"2b55957ef12143b5a0d9fb79d74229fd\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://tenantextaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://tenantextaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://tenantextaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/tenantextaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"tenantextaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"2b55957ef12143b5a0d9fb79d74229fd\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/2b55957ef12143b5a0d9fb79d74229fd\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/d5ab5566744f4480b7d891e214c208f6?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy9kNWFiNTU2Njc0NGY0NDgwYjdkODkxZTIxNGMyMDhmNj9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/2a194b24858443e39e23ebf319931d01?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzJhMTk0YjI0ODU4NDQzZTM5ZTIzZWJmMzE5OTMxZDAxP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a0e14995-3a84-4997-a7da-1056d853f456" + "7deec950-1f3b-4f89-97aa-a30806003399" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/d5ab5566744f4480b7d891e214c208f6\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"d5ab5566744f4480b7d891e214c208f6\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://publicsystemportal.blob.local.azurestack.external/\",\r\n \"queue\": \"https://publicsystemportal.queue.local.azurestack.external/\",\r\n \"table\": \"https://publicsystemportal.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/publicsystemportal\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"publicsystemportal\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"d5ab5566744f4480b7d891e214c208f6\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:30.18\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1447" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:18 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "b64f785b-d0e3-4779-ab88-2dc23524ab8f" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvbZr+g7RK96Und3ur/M5s/4LxIPhVZgeDu5ELALsXGt6doUapAv+mUDk/Cypz35R44/Fh5k+DFCpuA1IRIWDXsgKmP7B+tz3aGcqOIg3U7FcL/GoMiTrqNUdW+hPgaqkK3YWP9TMxJeZs0F5tB1o+" - ], - "x-ms-request-id": [ - "2ac14c86-fcee-4f4a-a09e-c98d8fc8e703" - ], - "x-ms-correlation-request-id": [ - "efcf34c6-1d4a-4f95-8f69-710b8b3d9081" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4cBR1QGFIiMkNbxEKobIwad/7t7Z01/xuYsLwAUnsQy3qoBsun+PmpWJ/S/StqkFSXYyjmXuLR9q00cVw/fp8TbYTJwyIdxkrvQZdCLvIldxayQLiAbbGVBDu5fVtAmfS2bdD30LJ13SH4z7e/Rd" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14871" + "14661" + ], + "x-ms-request-id": [ + "b64f785b-d0e3-4779-ab88-2dc23524ab8f" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193118Z:efcf34c6-1d4a-4f95-8f69-710b8b3d9081" + "LOCAL:20190917T022940Z:b64f785b-d0e3-4779-ab88-2dc23524ab8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:40 GMT" + ], + "Content-Length": [ + "1691" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"2a194b24858443e39e23ebf319931d01\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://tenantextadminaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://tenantextadminaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://tenantextadminaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/tenantextadminaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"tenantextadminaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"2a194b24858443e39e23ebf319931d01\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/2a194b24858443e39e23ebf319931d01\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/d927ac58d8154ff18a7834a368cf1442?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy9kOTI3YWM1OGQ4MTU0ZmYxOGE3ODM0YTM2OGNmMTQ0Mj9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/b742f01b2f4b426b9323c3e11007abf9?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzL2I3NDJmMDFiMmY0YjQyNmI5MzIzYzNlMTEwMDdhYmY5P2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f2f23d02-a6fa-4c6a-993e-845cce886088" + "da04f290-78c7-4e70-93f0-9cba469a0f34" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/d927ac58d8154ff18a7834a368cf1442\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"d927ac58d8154ff18a7834a368cf1442\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crpeventsaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://crpeventsaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://crpeventsaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/crpeventsaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"crpeventsaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"d927ac58d8154ff18a7834a368cf1442\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:38.573\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1437" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:18 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "812be8ec-9613-407d-a69f-5453f19d7448" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvbRFH51nPBEdk4bX4SqJVLfV9Umuo2ionzr9IJqiEG0Hox4c8z0FdUMj1lFigx4Sf0z8lsiZ8ntZeckNeIrZvgGJGH2I4YoAFqCOrufu/FC99VDn03ergcRn0cP0uWAqUICOzURyhhhl5QZYEQt28" - ], - "x-ms-request-id": [ - "3e86946a-bccf-44f3-93ce-58286de89a52" - ], - "x-ms-correlation-request-id": [ - "f98b9aad-d263-4804-8e41-bd31a1bb24ec" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvFLquts6fOGIydR6b0LT0D45EYPOpeKBRDkP5GMz3qsR7OQhmyoDWl0kpfsLgR4e5msSdWwKyeWlWvAaQECD8EnF0xWk+hjpVW7y/AP2zk6RwlpZhPb5B9ua3EDo1Lxn/hxlF1eHhfuGOJ6uXf1Dl" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14870" + "14660" + ], + "x-ms-request-id": [ + "812be8ec-9613-407d-a69f-5453f19d7448" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193118Z:f98b9aad-d263-4804-8e41-bd31a1bb24ec" + "LOCAL:20190917T022940Z:812be8ec-9613-407d-a69f-5453f19d7448" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:40 GMT" + ], + "Content-Length": [ + "1676" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"b742f01b2f4b426b9323c3e11007abf9\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://updateadminaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://updateadminaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://updateadminaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:50:59 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:50:59 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:50:59 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/updateadminaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"updateadminaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"b742f01b2f4b426b9323c3e11007abf9\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:50:59 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/b742f01b2f4b426b9323c3e11007abf9\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/df790261d6794180ae2b22387f05e3ee?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy9kZjc5MDI2MWQ2Nzk0MTgwYWUyYjIyMzg3ZjA1ZTNlZT9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/8b64694a95ae4b30ab1aec8b83bfa9e1?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzhiNjQ2OTRhOTVhZTRiMzBhYjFhZWM4YjgzYmZhOWUxP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ec1d7a75-7d1a-413a-a539-1ea0acdc5ab9" + "bcc0ad23-f743-4382-96ed-c2e3dc2e4883" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/df790261d6794180ae2b22387f05e3ee\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"df790261d6794180ae2b22387f05e3ee\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://urphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://urphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://urphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/urphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"urphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"df790261d6794180ae2b22387f05e3ee\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:45.627\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1437" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:18 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "0093a8bb-a388-4868-bb44-6d50abb044ef" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvAE3TjbipkFBOxZv4cI9lVKPOmgZQ5wEYv36s6cFhVXHZol0nj17j/3BkwVuIYzn1M6KcjGOHqjoUY8e7f9esM6lAPf2fjplmOo2v/g7jaMu0aT7XNvF6Rcp3asW44MZDoVLAbnjQqk66pg0hdkPR" - ], - "x-ms-request-id": [ - "7839cd91-69b7-4c78-96c3-a7aeb9844597" - ], - "x-ms-correlation-request-id": [ - "748ce62c-7151-4a1e-ad62-6bf489d24995" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvsH9UXv20ZPWrYt0Lh1wbXi8DE0gLLw9Eo+wlJdcs8g7NS2BomD9OSrGO9DO+3w+L/4821tMKzLEwwmVsj8FITr3mkM47393OX9WhTjpjv9VKav2mVgsSQ+5aUjsU0nCs5JQnuNhBwQUVuiZJfhwy" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14869" + "14659" + ], + "x-ms-request-id": [ + "0093a8bb-a388-4868-bb44-6d50abb044ef" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193118Z:748ce62c-7151-4a1e-ad62-6bf489d24995" + "LOCAL:20190917T022940Z:0093a8bb-a388-4868-bb44-6d50abb044ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:40 GMT" + ], + "Content-Length": [ + "1666" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"8b64694a95ae4b30ab1aec8b83bfa9e1\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://urphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://urphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://urphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:50:57 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:50:57 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:50:57 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/urphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"urphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"8b64694a95ae4b30ab1aec8b83bfa9e1\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:50:57 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/8b64694a95ae4b30ab1aec8b83bfa9e1\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/e2ee913734b040e392b1d0b2969bd098?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy9lMmVlOTEzNzM0YjA0MGUzOTJiMWQwYjI5NjliZDA5OD9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/0a20e097132d4e5195f7a60f95da344b?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzBhMjBlMDk3MTMyZDRlNTE5NWY3YTYwZjk1ZGEzNDRiP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b20a1df9-9b12-4cc5-8ce2-daa8aa8ae0bc" + "4b159e73-8923-4fea-8bb5-a5b87e5337a8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/e2ee913734b040e392b1d0b2969bd098\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"e2ee913734b040e392b1d0b2969bd098\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://azurebridgerp.blob.local.azurestack.external/\",\r\n \"queue\": \"https://azurebridgerp.queue.local.azurestack.external/\",\r\n \"table\": \"https://azurebridgerp.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/azurebridgerp\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"azurebridgerp\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"e2ee913734b040e392b1d0b2969bd098\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:30.767\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1422" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:18 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "557eaae5-e6a0-40bd-9066-a95d4fa041a2" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv1mTLzEMAo19LKUcDFdmNxdlA/8HXda5iPcPb3RWElmKslC/CHp+nrixFqtWwAJEsAqM3SZGyDGxZfDDsD37ZI67vFtENEgh4wHoQBrrY6sS8ycur5HdRTh1FHm0D6ROI0ibVN7YEGpK1BxjDUkoQ" - ], - "x-ms-request-id": [ - "99c56b8b-c716-4d1c-b58d-ec729c1be7db" - ], - "x-ms-correlation-request-id": [ - "d6ff1ad4-6eb7-434b-9d38-2fc22121f885" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv7i4+f8xQusIzBBRgzNNeQhAjFYwUtummyGofIDtPpj9aprHQwOd/8D+fbmU68QYGJHZa0ZAxbcxE16zt1QVa9WS9Dl4KsQEuTNVg7fsvCZqwzFKy5Ti3cicaOCCpcSGzjXd/lj6riFa7KOeHeJRz" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14868" + "14658" + ], + "x-ms-request-id": [ + "557eaae5-e6a0-40bd-9066-a95d4fa041a2" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193118Z:d6ff1ad4-6eb7-434b-9d38-2fc22121f885" + "LOCAL:20190917T022941Z:557eaae5-e6a0-40bd-9066-a95d4fa041a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:40 GMT" + ], + "Content-Length": [ + "1654" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"0a20e097132d4e5195f7a60f95da344b\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vhdsto2e4caea5.blob.local.azurestack.external/\",\r\n \"queue\": \"https://vhdsto2e4caea5.queue.local.azurestack.external/\",\r\n \"table\": \"https://vhdsto2e4caea5.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:27:02 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:27:02 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:27:02 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/vhdrgb378517a/providers/Microsoft.Storage/storageAccounts/vhdsto2e4caea5\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"vhdsto2e4caea5\",\r\n \"tenantResourceGroupName\": \"vhdrgb378517a\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"0a20e097132d4e5195f7a60f95da344b\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:27:02 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/0a20e097132d4e5195f7a60f95da344b\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/ede6aaff1e6247d99da14ec11b512c3f?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy9lZGU2YWFmZjFlNjI0N2Q5OWRhMTRlYzExYjUxMmMzZj9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/98acf4fd7ea34d8ea3317df65d63d25d?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzk4YWNmNGZkN2VhMzRkOGVhMzMxN2RmNjVkNjNkMjVkP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a44a9ebc-92d8-4bc6-89f8-b2d8db50dd7f" + "c70d44b9-197e-4628-8d32-874348bdb0a2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/ede6aaff1e6247d99da14ec11b512c3f\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"ede6aaff1e6247d99da14ec11b512c3f\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://brphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://brphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://brphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/brphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"brphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"ede6aaff1e6247d99da14ec11b512c3f\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:21.627\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1437" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:18 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "b28f3037-1a1f-4bfe-9e91-850cfb40fb5c" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvuoZyI0BxlCHHQ6SVWKszn5vV5X7PuGJmoK0359+nFiHnvXe3t6s/Zu5Y++MgLgGkAYLP4944C1qwK60NWZbPt0KYRvFd58dGjoy2p/B/6sVgri6CzvrdjRtE7HtlaDLZPpmePoQTlZxN/PoXcB2L" - ], - "x-ms-request-id": [ - "366ff0cc-56a9-405d-a0d7-bbc1ab3a380d" - ], - "x-ms-correlation-request-id": [ - "6d175867-640c-428f-ac4c-149bab2b2c5d" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvOD1W/mQGaTAlvw4FsiSFYMpWeNKyaw9nEynzI2qUkauOZZ+0ndkK9553SkkIZzV1Ptg+hGk5uhoENCh1Z5z1mks+KFLkoqFw+NnAQ3LWM8hJlV90QhoK8LqY9rOShKae7tlbdrcxogWmaCgvtysg" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14867" + "14657" + ], + "x-ms-request-id": [ + "b28f3037-1a1f-4bfe-9e91-850cfb40fb5c" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193118Z:6d175867-640c-428f-ac4c-149bab2b2c5d" + "LOCAL:20190917T022941Z:b28f3037-1a1f-4bfe-9e91-850cfb40fb5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:40 GMT" + ], + "Content-Length": [ + "1654" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"98acf4fd7ea34d8ea3317df65d63d25d\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vhdstod2b8b431.blob.local.azurestack.external/\",\r\n \"queue\": \"https://vhdstod2b8b431.queue.local.azurestack.external/\",\r\n \"table\": \"https://vhdstod2b8b431.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:26:35 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:26:35 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:26:35 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/vhdrgc2fedfc7/providers/Microsoft.Storage/storageAccounts/vhdstod2b8b431\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"vhdstod2b8b431\",\r\n \"tenantResourceGroupName\": \"vhdrgc2fedfc7\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"98acf4fd7ea34d8ea3317df65d63d25d\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:26:35 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/98acf4fd7ea34d8ea3317df65d63d25d\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/f2e9a98feb57479880b2c66bae1c9745?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy9mMmU5YTk4ZmViNTc0Nzk4ODBiMmM2NmJhZTFjOTc0NT9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/8130056ffeee44abbbd26af6ef5d6778?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzgxMzAwNTZmZmVlZTQ0YWJiYmQyNmFmNmVmNWQ2Nzc4P2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d34c44b8-03ad-4b12-9f91-5a4ac170401d" + "1f60ce1f-46ee-4309-957d-e0ce9a4ac8f8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/f2e9a98feb57479880b2c66bae1c9745\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"f2e9a98feb57479880b2c66bae1c9745\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://crphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://crphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/crphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"crphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"f2e9a98feb57479880b2c66bae1c9745\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:38.157\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1437" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:18 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "38c184d7-4ceb-419e-b24d-676ca1080982" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvgnAVwaNxx8BGZd6lrZcdwR3WW7AswhIKp6OE0tcmpghfLjmuAVZ5rantsuyr0HchNvWQgkypVZtXkH0iGfTjbTg6gN6dDZEmJZekJ6ks+Pc2O+2ioCO/Vn024LSLCHsQUBwqXzjPQzX97/rDrNUE" - ], - "x-ms-request-id": [ - "50b1e6ba-12b4-4cf2-8ee3-e51e26bbb383" - ], - "x-ms-correlation-request-id": [ - "d3b1dc65-ae28-4cbb-8fa5-ab7689ff480b" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvRS2M1bbus9NkKqVxx1tO2xwScxbx/B5IlLkVIXESeeMZuuQOukdFn4PioWmbJSXptU32AunHDs4gE9C7sRxDfdFtedAySKxVqRTnSA+LhvD0SXBJjErmOBxW0NNcPYhiV6CEC9m9uEPbxkyc6RJR" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14866" + "14656" + ], + "x-ms-request-id": [ + "38c184d7-4ceb-419e-b24d-676ca1080982" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193119Z:d3b1dc65-ae28-4cbb-8fa5-ab7689ff480b" + "LOCAL:20190917T022941Z:38c184d7-4ceb-419e-b24d-676ca1080982" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:40 GMT" + ], + "Content-Length": [ + "1654" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"8130056ffeee44abbbd26af6ef5d6778\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vhdstoebddd5a1.blob.local.azurestack.external/\",\r\n \"queue\": \"https://vhdstoebddd5a1.queue.local.azurestack.external/\",\r\n \"table\": \"https://vhdstoebddd5a1.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:27:00 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:27:00 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:27:00 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/vhdrg2d8dca5e/providers/Microsoft.Storage/storageAccounts/vhdstoebddd5a1\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"vhdstoebddd5a1\",\r\n \"tenantResourceGroupName\": \"vhdrg2d8dca5e\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"8130056ffeee44abbbd26af6ef5d6778\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:27:00 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/8130056ffeee44abbbd26af6ef5d6778\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/f93c9df9e7af487fbda484a9201d9c18?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy9mOTNjOWRmOWU3YWY0ODdmYmRhNDg0YTkyMDFkOWMxOD9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/3473c8d4b609420281c06539af72e25b?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzM0NzNjOGQ0YjYwOTQyMDI4MWMwNjUzOWFmNzJlMjViP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3970f592-5ea3-43eb-8bcd-c66851f57488" + "e6e1ca75-2c08-4546-bef6-2308bf4ec2f8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/f93c9df9e7af487fbda484a9201d9c18\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"f93c9df9e7af487fbda484a9201d9c18\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://authprod.blob.local.azurestack.external/\",\r\n \"queue\": \"https://authprod.queue.local.azurestack.external/\",\r\n \"table\": \"https://authprod.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/authprod\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"authprod\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"f93c9df9e7af487fbda484a9201d9c18\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:30.983\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1397" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:18 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "ea84794c-5cec-476d-82d2-8b5848f0f38b" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv0vc3IfX7R86h9F3wvDnU3Nol8q6vpgc6WbcOCeibhLHHLo47lWDq9xft8+wlDH5cVyEpJLgqIiNlvT2ChDAzbfecTmIS0NvXN5MA6oL/CKnpUp07bY9T6Mf98514bymxlnYC8GDuEaSpjWRs2sJq" - ], - "x-ms-request-id": [ - "15a99651-eccd-4cce-82af-e93b8c5e8e27" - ], - "x-ms-correlation-request-id": [ - "bd7a9566-9ec1-40d0-a17a-7d8de5716c46" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvFawS6tyvc5lOz1GrnIpUqERSf9756onN3cgqjL5nQ4ZLeUH9g5G0iDbuaBtR3GBAQJPX14sUNQhiJjFL3gzGnQ0fsJHR922o8i1owIuuNGVgKTbRjQYayhnhowM/ETo6Ly+zYjF+kda8ymFt5nNh" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14865" + "14655" + ], + "x-ms-request-id": [ + "ea84794c-5cec-476d-82d2-8b5848f0f38b" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193119Z:bd7a9566-9ec1-40d0-a17a-7d8de5716c46" + "LOCAL:20190917T022941Z:ea84794c-5cec-476d-82d2-8b5848f0f38b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:41 GMT" + ], + "Content-Length": [ + "1671" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"3473c8d4b609420281c06539af72e25b\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://wasphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://wasphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://wasphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:20 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:20 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:20 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/wasphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"wasphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"3473c8d4b609420281c06539af72e25b\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:20 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/3473c8d4b609420281c06539af72e25b\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "9ad61516-995c-4873-a21f-7e44904f0ed2" + "SubscriptionId": "047e87e6-327f-4c44-8184-fb6bc35e8b38" } } \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetAllStorageQuotas.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetAllStorageQuotas.json index 3f977ef76af9..1841dccc9297 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetAllStorageQuotas.json +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetAllStorageQuotas.json @@ -1,136 +1,536 @@ { "Entries": [ { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/providers/Microsoft.Storage.Admin/locations/local/quotas?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzP2FwaS12ZXJzaW9uPTIwMTUtMTItMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff204816-fc96-4c28-825d-34f545d4c6a9" + "c9548aa4-fe77-4b0e-87d4-4043a9ad6009" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/providers/Microsoft.Storage.Admin/locations/local/quotas/Default Quota\",\r\n \"name\": \"local/Default Quota\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 20,\r\n \"capacityInGb\": 2048\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "f1c9f183-fe12-48d1-ac31-89dcd7526be5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvhMDyS1S4aXxE8DwBMLop45NDOb8Z6jejdlvm7m3EIZf/7R7Drp6F48Jrzm09TPbKHQK9ky49vmd4Hjlp9L1oJNI5lUWApxyopruv9T6J+/ycqrMH74rq11aFVP5u80a3e+T3DWgOUM/Tidfy1HRq" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14761" + ], + "x-ms-request-id": [ + "f1c9f183-fe12-48d1-ac31-89dcd7526be5" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022928Z:f1c9f183-fe12-48d1-ac31-89dcd7526be5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:27 GMT" + ], "Content-Length": [ - "403" + "2848" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/ascanstorquota391\",\r\n \"name\": \"local/ascanstorquota391\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 200,\r\n \"capacityInGb\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/Basic\",\r\n \"name\": \"local/Basic\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 2,\r\n \"capacityInGb\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/Default Quota\",\r\n \"name\": \"local/Default Quota\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 20,\r\n \"capacityInGb\": 2048\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/EventRPBVTTenantSubscriptionQuota\",\r\n \"name\": \"local/EventRPBVTTenantSubscriptionQuota\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 10000,\r\n \"capacityInGb\": 500000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/NewStorageQuota1\",\r\n \"name\": \"local/NewStorageQuota1\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 10000,\r\n \"capacityInGb\": 200000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/Quota_2cccdb26-9cbd-4627-aab9-dd261d75da57\",\r\n \"name\": \"local/Quota_2cccdb26-9cbd-4627-aab9-dd261d75da57\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 20,\r\n \"capacityInGb\": 500\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/Quota_9d7a22e1-6623-41e5-85f8-88d1bd02d5c6\",\r\n \"name\": \"local/Quota_9d7a22e1-6623-41e5-85f8-88d1bd02d5c6\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 20,\r\n \"capacityInGb\": 500\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/ascanstorquota391?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL2FzY2Fuc3RvcnF1b3RhMzkxP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0333a4a7-2bab-4f40-a419-20b72c5ed015" + ], + "Accept-Language": [ + "en-US" ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "693802f0-55ef-409b-9a41-0fb7caa76428" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv4Kpg/5e0KIAHwGgeQ1DbSJtOiGoWAFT/9Puilmnau77CIYrxhn475kfNWl4EY9MG/kOWxq+nhBq0EhSTZetUGVvU7hpXmRYwx/vwlUuAbjXo5wr3t8Z7IJVT0FMaMw5aabgLBI0kjh9GtFiD1DnN" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14760" + ], + "x-ms-request-id": [ + "693802f0-55ef-409b-9a41-0fb7caa76428" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022928Z:693802f0-55ef-409b-9a41-0fb7caa76428" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Date": [ - "Tue, 30 Jan 2018 19:31:26 GMT" + "Tue, 17 Sep 2019 02:29:27 GMT" + ], + "Content-Length": [ + "347" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/ascanstorquota391\",\r\n \"name\": \"local/ascanstorquota391\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 200,\r\n \"capacityInGb\": 1000\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/Basic?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL0Jhc2ljP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d42a3c64-a2ed-4e61-93e2-1b92251e9fc5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "7231ed65-e1a2-491b-a160-e81f6016af92" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvrX0XX1VbEsWLXwfIeWfRXN0Bg6p+IhUAfYWSN+kbSHP2aYGQCwIgtg+jLzByyLsXm2b2wjhz4YWecYhXxn/p/mpvvDp6T3uVYUq2mxln40gS3yM2pHeSRmMroDFBuR8pgvvBegMRnJb07W4Ee4kK" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv+geMAqqmrItd9MbxeDZyoDsWrJS5W1WG+VyDMDy4JRqLA8BFfcUhMGVT1owiUEl6xDJcOYL78DwBwyoMA+ccBZ2D7EFMDr6iM4RCVcwswjEmdV7fPI6ZMBk/n4w/p3TgO5qJzLEZv6QdzsMZDWDS" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14759" ], "x-ms-request-id": [ - "8f5670ef-3f89-4d13-8e67-5e98d2d4580c" + "7231ed65-e1a2-491b-a160-e81f6016af92" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022928Z:7231ed65-e1a2-491b-a160-e81f6016af92" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:27 GMT" + ], + "Content-Length": [ + "318" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/Basic\",\r\n \"name\": \"local/Basic\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 2,\r\n \"capacityInGb\": 2\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/Default%20Quota?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL0RlZmF1bHQlMjBRdW90YT9hcGktdmVyc2lvbj0yMDE5LTA4LTA4LXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "417e4dfc-af2b-4e63-acb5-145163878fcd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" ], "x-ms-correlation-request-id": [ - "7e24df8b-403e-4792-8279-74b73613ede5" + "d4dc18a4-bc6c-41e1-834f-1a577b0a49d8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvGLDyhfz0pAL08EcctjxsEGvDF28R2kLfqqoIDNRW/HgC3p462SsFQgstoxzFVmysD+ZZ/Asy0F++3ZIMu686p3yNXSFgy/eGs7tKDzay9vzIGeMoBUu4xIMK++gOuxrl3JYFE4UffR6LMBa85YtQ" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14807" + "14758" + ], + "x-ms-request-id": [ + "d4dc18a4-bc6c-41e1-834f-1a577b0a49d8" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193127Z:7e24df8b-403e-4792-8279-74b73613ede5" + "LOCAL:20190917T022928Z:d4dc18a4-bc6c-41e1-834f-1a577b0a49d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:27 GMT" + ], + "Content-Length": [ + "338" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/Default Quota\",\r\n \"name\": \"local/Default Quota\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 20,\r\n \"capacityInGb\": 2048\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/providers/Microsoft.Storage.Admin/locations/local/quotas/Default%20Quota?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL0RlZmF1bHQlMjBRdW90YT9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/EventRPBVTTenantSubscriptionQuota?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL0V2ZW50UlBCVlRUZW5hbnRTdWJzY3JpcHRpb25RdW90YT9hcGktdmVyc2lvbj0yMDE5LTA4LTA4LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9af1f07-973e-4513-a14d-01a380d2077b" + "d4976d5e-a37d-473c-8828-6192f7bc8e27" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/providers/Microsoft.Storage.Admin/locations/local/quotas/Default Quota\",\r\n \"name\": \"local/Default Quota\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 20,\r\n \"capacityInGb\": 2048\r\n }\r\n}", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "a373da9d-ff5d-4d99-a6eb-f89a8e08eb90" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvkHVSXFcLYAzksDv1phvtts3SlEnFbwyB1CN4102HVZw/M+0J5g2Fipu1ohCdbuemRxJWMmmjEUPsr5qgiOPvJqUuFEiqJHAA4zXSKx5seFdXsNv1c1cRiNMBB+yy7NGClifGuSc4K2jOndKliKrs" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14757" + ], + "x-ms-request-id": [ + "a373da9d-ff5d-4d99-a6eb-f89a8e08eb90" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022928Z:a373da9d-ff5d-4d99-a6eb-f89a8e08eb90" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:27 GMT" + ], "Content-Length": [ - "338" + "383" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/EventRPBVTTenantSubscriptionQuota\",\r\n \"name\": \"local/EventRPBVTTenantSubscriptionQuota\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 10000,\r\n \"capacityInGb\": 500000\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/NewStorageQuota1?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL05ld1N0b3JhZ2VRdW90YTE/YXBpLXZlcnNpb249MjAxOS0wOC0wOC1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dc0225c8-b632-4816-aac2-0e0658df9350" ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "5ba8b681-7c96-44f2-b41a-58f3353febda" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvY5HU1p6X5o5n7c6PiOVHj7kl4MzDseY7P1GkGgUWiBeAG68OUSfPusd5fdn7H3w0Q/5XZPcnVx+LulVPffHU9Zv/2jC5tDzVraM3+hScCae1ymZkqLeLXMvX5VGPO1HTLS25GY4jN2oQiUcdTJIf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14756" + ], + "x-ms-request-id": [ + "5ba8b681-7c96-44f2-b41a-58f3353febda" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022928Z:5ba8b681-7c96-44f2-b41a-58f3353febda" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Date": [ - "Tue, 30 Jan 2018 19:31:26 GMT" + "Tue, 17 Sep 2019 02:29:28 GMT" + ], + "Content-Length": [ + "349" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/NewStorageQuota1\",\r\n \"name\": \"local/NewStorageQuota1\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 10000,\r\n \"capacityInGb\": 200000\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/Quota_2cccdb26-9cbd-4627-aab9-dd261d75da57?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1F1b3RhXzJjY2NkYjI2LTljYmQtNDYyNy1hYWI5LWRkMjYxZDc1ZGE1Nz9hcGktdmVyc2lvbj0yMDE5LTA4LTA4LXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "51314a1c-858a-4966-8a2b-9721ad626a1c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "59b6a5fc-7eb9-4fed-8acb-3ab614057575" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvAWwEzT2zLxPEyodfp26oozS/QWgBv6wH7ExWWrkZeTSV2qeOKVCoWpfTs0C0Gm3umtsZSgCFDAQPtdGuId6r5beTdO5GOKu+BPSoe1+bmEyY7Zr/fJK0s5k55SLXa9nnNJycYjDrhNJ6NvDvYP6h" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3T231/UkoVUP6NxkitWNoV/fXvNTsezlGCJCto3HyG6/oJjIdtxk+tvRgBDqvg10RqEqoI4ePGbPqZVN/a4EYtno36eRs2gn/s5QnZqowgzS/O9Nsz4CU8+0xpL7yACpX2fED5R9OTGYg+vVvJmA" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14755" ], "x-ms-request-id": [ - "2cc3ba50-a6c2-423b-b2ef-b74a2c1b9476" + "59b6a5fc-7eb9-4fed-8acb-3ab614057575" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022928Z:59b6a5fc-7eb9-4fed-8acb-3ab614057575" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:28 GMT" + ], + "Content-Length": [ + "395" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/Quota_2cccdb26-9cbd-4627-aab9-dd261d75da57\",\r\n \"name\": \"local/Quota_2cccdb26-9cbd-4627-aab9-dd261d75da57\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 20,\r\n \"capacityInGb\": 500\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/Quota_9d7a22e1-6623-41e5-85f8-88d1bd02d5c6?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1F1b3RhXzlkN2EyMmUxLTY2MjMtNDFlNS04NWY4LTg4ZDFiZDAyZDVjNj9hcGktdmVyc2lvbj0yMDE5LTA4LTA4LXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "db2bb5d3-723f-476b-a45a-db9cbc2c48e9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" ], "x-ms-correlation-request-id": [ - "b51ee95c-d232-42b5-82dd-39a4f4d2f1ae" + "233c125a-022f-4e29-b926-973e3b235d1b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvP9gRDQOrr1TBnxtLm1ttRIW69foSKgZnIc9YKidld7CG3zDjMqfLR+ch54+GCfYhD+KeE4iIdtabG7W499CHhRInP+ZvUEBq1w+QSsZK2DrUpq5X9MN9jUTr8RDzSv0EKFm4fGVw81+6WnWQATbe" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14806" + "14754" + ], + "x-ms-request-id": [ + "233c125a-022f-4e29-b926-973e3b235d1b" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193127Z:b51ee95c-d232-42b5-82dd-39a4f4d2f1ae" + "LOCAL:20190917T022928Z:233c125a-022f-4e29-b926-973e3b235d1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:28 GMT" + ], + "Content-Length": [ + "395" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/Quota_9d7a22e1-6623-41e5-85f8-88d1bd02d5c6\",\r\n \"name\": \"local/Quota_9d7a22e1-6623-41e5-85f8-88d1bd02d5c6\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 20,\r\n \"capacityInGb\": 500\r\n }\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "9ad61516-995c-4873-a21f-7e44904f0ed2" + "SubscriptionId": "047e87e6-327f-4c44-8184-fb6bc35e8b38" } } \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetBlobService.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetBlobService.json deleted file mode 100644 index e0640e7c5b87..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetBlobService.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f2644fa5-dc7b-4fa3-badf-7a3b741d6f96" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"type\": \"Microsoft.Storage.Admin/farms\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"version\": \"2015-12-01-preview\",\r\n \"settingsStore\": \"AzS-ACS01.azurestack.local:19000\",\r\n \"settings\": {\r\n \"settingsPollingIntervalInSecond\": 60,\r\n \"retentionPeriodForDeletedStorageAccountsInDays\": 0,\r\n \"hostStyleHttpPort\": 0,\r\n \"hostStyleHttpsPort\": 0,\r\n \"corsAllowedOriginsList\": \"https://adminportal.local.azurestack.external/;https://adminportal.local.azurestack.external:12649/;https://portal.local.azurestack.external/;https://portal.local.azurestack.external:12649/\",\r\n \"dataCenterUriHostSuffixes\": \"local.azurestack.external\",\r\n \"bandwidthThrottleIsEnabled\": false,\r\n \"usageCollectionIntervalInSeconds\": 10,\r\n \"feedbackRefreshIntervalInSeconds\": 10,\r\n \"numberOfAccountsToSync\": 20,\r\n \"defaultThrottleProbabilityDecayIntervalInSeconds\": 240,\r\n \"gracePeriodForFullThrottlingInRefreshIntervals\": 3,\r\n \"gracePeriodMaxThrottleProbability\": 0.9,\r\n \"overallRequestThresholdInTps\": 10000.0,\r\n \"defaultRequestThresholdInTps\": 200.0,\r\n \"minimumRequestThresholdInTps\": 1.0,\r\n \"toleranceFactorForTps\": 2.0,\r\n \"overallIngressThresholdInGbps\": 25.0,\r\n \"defaultIngressThresholdInGbps\": 2.0,\r\n \"minimumIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIngress\": 2.0,\r\n \"overallIntranetIngressThresholdInGbps\": 25.0,\r\n \"defaultIntranetIngressThresholdInGbps\": 2.0,\r\n \"minimumIntranetIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetIngress\": 2.0,\r\n \"overallEgressThresholdInGbps\": 30.0,\r\n \"defaultEgressThresholdInGbps\": 3.0,\r\n \"minimumEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForEgress\": 2.0,\r\n \"overallIntranetEgressThresholdInGbps\": 30.0,\r\n \"defaultIntranetEgressThresholdInGbps\": 3.0,\r\n \"minimumIntranetEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetEgress\": 2.0,\r\n \"overallTotalIngressThresholdInGbps\": 50.0,\r\n \"defaultTotalIngressThresholdInGbps\": 5.0,\r\n \"minimumTotalIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalIngress\": 2.0,\r\n \"overallTotalEgressThresholdInGbps\": 50.0,\r\n \"defaultTotalEgressThresholdInGbps\": 5.0,\r\n \"minimumTotalEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalEgress\": 2.0\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2888" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:01 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjU0KOXBG/auRN+Oz7XUtCcQF42qE679LIAa+ZPfRXwxDvzdQNFeKe/FuyvbUW+/CfwTCZjNUsEMRXKIX2pxj1qAl4l9UecHS5KWmh9/n4Z+IqX7Pxyy0gtZzAs+EccRHG5XdEdaVrAGNRARHH6Fi" - ], - "x-ms-request-id": [ - "7087d588-83fc-425a-8793-3af7d33fc012" - ], - "x-ms-correlation-request-id": [ - "17aee25b-b74f-4b4c-a90b-06372036caf4" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193101Z:17aee25b-b74f-4b4c-a90b-06372036caf4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/blobservices/default?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL2Jsb2JzZXJ2aWNlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMTItMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d75ec2ce-cd72-4381-9e11-13d12a35c6e9" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/blobservices/default\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af/default\",\r\n \"type\": \"Microsoft.Storage.Admin/farms/blobservices\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"settings\": {\r\n \"frontEndHttpListenPort\": 11000,\r\n \"frontEndHttpsListenPort\": 11100,\r\n \"frontEndCallbackThreadsCount\": 1600,\r\n \"frontEndCpuBasedKeepAliveThrottlingEnabled\": true,\r\n \"frontEndCpuBasedKeepAliveThrottlingPercentCpuThreshold\": 90.0,\r\n \"frontEndCpuBasedKeepAliveThrottlingPercentRequestsToThrottle\": 2.0,\r\n \"frontEndCpuBasedKeepAliveThrottlingCpuMonitorIntervalInSeconds\": 5,\r\n \"frontEndMemoryThrottlingEnabled\": true,\r\n \"frontEndMaxMillisecondsBetweenMemorySamples\": 10000,\r\n \"frontEndMemoryThrottleThresholdSettings\": \"5,100,0;7,50,0;10,25,0;15,0,25;\",\r\n \"frontEndMinThreadPoolThreads\": 1850,\r\n \"frontEndThreadPoolBasedKeepAliveIOCompletionThreshold\": 1500,\r\n \"frontEndThreadPoolBasedKeepAliveWorkerThreadThreshold\": 1500,\r\n \"frontEndThreadPoolBasedKeepAliveMonitorIntervalInSeconds\": 30,\r\n \"frontEndThreadPoolBasedKeepAlivePercentage\": 10.0,\r\n \"frontEndUseSlaTimeInAvailability\": true,\r\n \"blobSvcContainerGcInterval\": 3600000,\r\n \"blobSvcShallowGcInterval\": 3600000,\r\n \"blobSvcStreamMapMinContainerOccupancyPercent\": 80\r\n },\r\n \"version\": \"1.0\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1521" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:01 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv7N8emiaQpwjnrYGI1DR9i/skAJccxvN5SdM3HY6I5XvgtyRrKvKaFfQsvd2xuWLzQe4CUSCpkk8uoO19mFyWYuDTDsSMKE6lXpX2f7/dFUaAtkmXPVABOtiB92S7HxKkE6lsdEsNH0LDXI8Nf5TK" - ], - "x-ms-request-id": [ - "9d353ad7-1552-40f8-9270-ce898cb46e27" - ], - "x-ms-correlation-request-id": [ - "4ad3898a-f395-4bbd-998a-e37f55477b8f" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14932" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193101Z:4ad3898a-f395-4bbd-998a-e37f55477b8f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "SubscriptionId": "9ad61516-995c-4873-a21f-7e44904f0ed2" - } -} \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetFarm.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetFarm.json deleted file mode 100644 index c23a6ded8f6e..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetFarm.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4724e861-c7cf-425c-96e0-8bea991d0162" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"type\": \"Microsoft.Storage.Admin/farms\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"version\": \"2015-12-01-preview\",\r\n \"settingsStore\": \"AzS-ACS01.azurestack.local:19000\",\r\n \"settings\": {\r\n \"settingsPollingIntervalInSecond\": 60,\r\n \"retentionPeriodForDeletedStorageAccountsInDays\": 0,\r\n \"hostStyleHttpPort\": 0,\r\n \"hostStyleHttpsPort\": 0,\r\n \"corsAllowedOriginsList\": \"https://adminportal.local.azurestack.external/;https://adminportal.local.azurestack.external:12649/;https://portal.local.azurestack.external/;https://portal.local.azurestack.external:12649/\",\r\n \"dataCenterUriHostSuffixes\": \"local.azurestack.external\",\r\n \"bandwidthThrottleIsEnabled\": false,\r\n \"usageCollectionIntervalInSeconds\": 10,\r\n \"feedbackRefreshIntervalInSeconds\": 10,\r\n \"numberOfAccountsToSync\": 20,\r\n \"defaultThrottleProbabilityDecayIntervalInSeconds\": 240,\r\n \"gracePeriodForFullThrottlingInRefreshIntervals\": 3,\r\n \"gracePeriodMaxThrottleProbability\": 0.9,\r\n \"overallRequestThresholdInTps\": 10000.0,\r\n \"defaultRequestThresholdInTps\": 200.0,\r\n \"minimumRequestThresholdInTps\": 1.0,\r\n \"toleranceFactorForTps\": 2.0,\r\n \"overallIngressThresholdInGbps\": 25.0,\r\n \"defaultIngressThresholdInGbps\": 2.0,\r\n \"minimumIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIngress\": 2.0,\r\n \"overallIntranetIngressThresholdInGbps\": 25.0,\r\n \"defaultIntranetIngressThresholdInGbps\": 2.0,\r\n \"minimumIntranetIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetIngress\": 2.0,\r\n \"overallEgressThresholdInGbps\": 30.0,\r\n \"defaultEgressThresholdInGbps\": 3.0,\r\n \"minimumEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForEgress\": 2.0,\r\n \"overallIntranetEgressThresholdInGbps\": 30.0,\r\n \"defaultIntranetEgressThresholdInGbps\": 3.0,\r\n \"minimumIntranetEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetEgress\": 2.0,\r\n \"overallTotalIngressThresholdInGbps\": 50.0,\r\n \"defaultTotalIngressThresholdInGbps\": 5.0,\r\n \"minimumTotalIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalIngress\": 2.0,\r\n \"overallTotalEgressThresholdInGbps\": 50.0,\r\n \"defaultTotalEgressThresholdInGbps\": 5.0,\r\n \"minimumTotalEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalEgress\": 2.0\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2888" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:02 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvgT+mh+AtfV5GA5H5Jz91O77nYtSp4YRjpDTYZnUdsXLwzQ+hTvT+kbjh4M57HyLagI75K+nYcEebU/w73S/M0Y5KYY5ehLQBeJ6fHEjM+gRvLSCLpEl7HdqcLQPJ+QoVd+VBH0wdSkgYMO9trQf7" - ], - "x-ms-request-id": [ - "0d895b37-cdfb-44a9-b4ab-c3fc185770a8" - ], - "x-ms-correlation-request-id": [ - "a2081bfe-db2a-46b1-a1a1-50eca43d3f6e" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14925" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193102Z:a2081bfe-db2a-46b1-a1a1-50eca43d3f6e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmP2FwaS12ZXJzaW9uPTIwMTUtMTItMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cca8346a-e76d-45be-9432-ae648cdb3afd" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"type\": \"Microsoft.Storage.Admin/farms\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"version\": \"2015-12-01-preview\",\r\n \"settingsStore\": \"AzS-ACS01.azurestack.local:19000\",\r\n \"settings\": {\r\n \"settingsPollingIntervalInSecond\": 60,\r\n \"retentionPeriodForDeletedStorageAccountsInDays\": 0,\r\n \"hostStyleHttpPort\": 0,\r\n \"hostStyleHttpsPort\": 0,\r\n \"corsAllowedOriginsList\": \"https://adminportal.local.azurestack.external/;https://adminportal.local.azurestack.external:12649/;https://portal.local.azurestack.external/;https://portal.local.azurestack.external:12649/\",\r\n \"dataCenterUriHostSuffixes\": \"local.azurestack.external\",\r\n \"bandwidthThrottleIsEnabled\": false,\r\n \"usageCollectionIntervalInSeconds\": 10,\r\n \"feedbackRefreshIntervalInSeconds\": 10,\r\n \"numberOfAccountsToSync\": 20,\r\n \"defaultThrottleProbabilityDecayIntervalInSeconds\": 240,\r\n \"gracePeriodForFullThrottlingInRefreshIntervals\": 3,\r\n \"gracePeriodMaxThrottleProbability\": 0.9,\r\n \"overallRequestThresholdInTps\": 10000.0,\r\n \"defaultRequestThresholdInTps\": 200.0,\r\n \"minimumRequestThresholdInTps\": 1.0,\r\n \"toleranceFactorForTps\": 2.0,\r\n \"overallIngressThresholdInGbps\": 25.0,\r\n \"defaultIngressThresholdInGbps\": 2.0,\r\n \"minimumIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIngress\": 2.0,\r\n \"overallIntranetIngressThresholdInGbps\": 25.0,\r\n \"defaultIntranetIngressThresholdInGbps\": 2.0,\r\n \"minimumIntranetIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetIngress\": 2.0,\r\n \"overallEgressThresholdInGbps\": 30.0,\r\n \"defaultEgressThresholdInGbps\": 3.0,\r\n \"minimumEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForEgress\": 2.0,\r\n \"overallIntranetEgressThresholdInGbps\": 30.0,\r\n \"defaultIntranetEgressThresholdInGbps\": 3.0,\r\n \"minimumIntranetEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetEgress\": 2.0,\r\n \"overallTotalIngressThresholdInGbps\": 50.0,\r\n \"defaultTotalIngressThresholdInGbps\": 5.0,\r\n \"minimumTotalIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalIngress\": 2.0,\r\n \"overallTotalEgressThresholdInGbps\": 50.0,\r\n \"defaultTotalEgressThresholdInGbps\": 5.0,\r\n \"minimumTotalEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalEgress\": 2.0\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2647" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:02 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvgDYuMzbdNLY17r6i9et2U/ZlZMRq9jxoV+v/XaquhcyYXpF3KSbshT0EMPufjz5eyGB/SwUh3OUKKG2b/KlDZh8h9qWzNYRdO2uWbKALtzgHNoqqEO4CU+G6PSiMo+sWJJ83HYQ2169iY/lxFEu8" - ], - "x-ms-request-id": [ - "358d8258-3c18-4ee1-9a1b-319db791efcf" - ], - "x-ms-correlation-request-id": [ - "32d8601d-7520-4ade-a709-bdada104a85c" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14924" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193102Z:32d8601d-7520-4ade-a709-bdada104a85c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "SubscriptionId": "9ad61516-995c-4873-a21f-7e44904f0ed2" - } -} \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetQueueService.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetQueueService.json deleted file mode 100644 index cf75c20c34fc..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetQueueService.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7b9a6e07-5daf-4095-be57-096630b9594f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"type\": \"Microsoft.Storage.Admin/farms\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"version\": \"2015-12-01-preview\",\r\n \"settingsStore\": \"AzS-ACS01.azurestack.local:19000\",\r\n \"settings\": {\r\n \"settingsPollingIntervalInSecond\": 60,\r\n \"retentionPeriodForDeletedStorageAccountsInDays\": 0,\r\n \"hostStyleHttpPort\": 0,\r\n \"hostStyleHttpsPort\": 0,\r\n \"corsAllowedOriginsList\": \"https://adminportal.local.azurestack.external/;https://adminportal.local.azurestack.external:12649/;https://portal.local.azurestack.external/;https://portal.local.azurestack.external:12649/\",\r\n \"dataCenterUriHostSuffixes\": \"local.azurestack.external\",\r\n \"bandwidthThrottleIsEnabled\": false,\r\n \"usageCollectionIntervalInSeconds\": 10,\r\n \"feedbackRefreshIntervalInSeconds\": 10,\r\n \"numberOfAccountsToSync\": 20,\r\n \"defaultThrottleProbabilityDecayIntervalInSeconds\": 240,\r\n \"gracePeriodForFullThrottlingInRefreshIntervals\": 3,\r\n \"gracePeriodMaxThrottleProbability\": 0.9,\r\n \"overallRequestThresholdInTps\": 10000.0,\r\n \"defaultRequestThresholdInTps\": 200.0,\r\n \"minimumRequestThresholdInTps\": 1.0,\r\n \"toleranceFactorForTps\": 2.0,\r\n \"overallIngressThresholdInGbps\": 25.0,\r\n \"defaultIngressThresholdInGbps\": 2.0,\r\n \"minimumIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIngress\": 2.0,\r\n \"overallIntranetIngressThresholdInGbps\": 25.0,\r\n \"defaultIntranetIngressThresholdInGbps\": 2.0,\r\n \"minimumIntranetIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetIngress\": 2.0,\r\n \"overallEgressThresholdInGbps\": 30.0,\r\n \"defaultEgressThresholdInGbps\": 3.0,\r\n \"minimumEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForEgress\": 2.0,\r\n \"overallIntranetEgressThresholdInGbps\": 30.0,\r\n \"defaultIntranetEgressThresholdInGbps\": 3.0,\r\n \"minimumIntranetEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetEgress\": 2.0,\r\n \"overallTotalIngressThresholdInGbps\": 50.0,\r\n \"defaultTotalIngressThresholdInGbps\": 5.0,\r\n \"minimumTotalIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalIngress\": 2.0,\r\n \"overallTotalEgressThresholdInGbps\": 50.0,\r\n \"defaultTotalEgressThresholdInGbps\": 5.0,\r\n \"minimumTotalEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalEgress\": 2.0\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2888" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:23 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvAStSP9YMV33KjZMdJo7VH9iLtyhaoOwq7yghjCICSVWXIPzkv7Gi+NY7s4Bkdbl6oEFkkbWD9VEmAKpV/I8FYLASy+FFnd1LRrY4AX74QVl9KAJgroTaTxD7IJOh33qx3XEUiA/qjOOLN5/jn+3F" - ], - "x-ms-request-id": [ - "0f9fe6dc-aa91-4d28-baa7-e07c28fe93d4" - ], - "x-ms-correlation-request-id": [ - "2ee8291e-2d30-4fc0-8201-d8b557724fc0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14829" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193124Z:2ee8291e-2d30-4fc0-8201-d8b557724fc0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/queueservices/default?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3F1ZXVlc2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4063014e-e273-42b3-956a-6a5382870f6f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/queueservices/default\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af/default\",\r\n \"type\": \"Microsoft.Storage.Admin/farms/queueservices\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"settings\": {\r\n \"frontEndHttpListenPort\": 11001,\r\n \"frontEndHttpsListenPort\": 11101,\r\n \"frontEndCallbackThreadsCount\": 1600,\r\n \"frontEndCpuBasedKeepAliveThrottlingEnabled\": true,\r\n \"frontEndCpuBasedKeepAliveThrottlingPercentCpuThreshold\": 90.0,\r\n \"frontEndCpuBasedKeepAliveThrottlingPercentRequestsToThrottle\": 2.0,\r\n \"frontEndCpuBasedKeepAliveThrottlingCpuMonitorIntervalInSeconds\": 5,\r\n \"frontEndMemoryThrottlingEnabled\": true,\r\n \"frontEndMaxMillisecondsBetweenMemorySamples\": 10000,\r\n \"frontEndMemoryThrottleThresholdSettings\": \"5,100,0;7,50,0;10,25,0;15,0,25;\",\r\n \"frontEndMinThreadPoolThreads\": 1850,\r\n \"frontEndThreadPoolBasedKeepAliveIOCompletionThreshold\": 1500,\r\n \"frontEndThreadPoolBasedKeepAliveWorkerThreadThreshold\": 1500,\r\n \"frontEndThreadPoolBasedKeepAliveMonitorIntervalInSeconds\": 30,\r\n \"frontEndThreadPoolBasedKeepAlivePercentage\": 10.0,\r\n \"frontEndUseSlaTimeInAvailability\": true\r\n },\r\n \"version\": \"1.0\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1374" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:23 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvFf1jCIZ48kdQnczuBU2FmK/0J+QCquZecRVliULiMhZWw9rFyPpMPEb/YKchQsipibCXva89sROD4kiCTb20u6djKLprIbNcIjEXMAPXiI0fDTajEdLwRHfU704R6DNn2iOpEbO/np588pckyg1o" - ], - "x-ms-request-id": [ - "8e621b25-2564-4d09-9674-2cbbb673b09f" - ], - "x-ms-correlation-request-id": [ - "eb23dbf8-92c9-4ac1-bcd9-9885f4819462" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14828" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193124Z:eb23dbf8-92c9-4ac1-bcd9-9885f4819462" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "SubscriptionId": "9ad61516-995c-4873-a21f-7e44904f0ed2" - } -} \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetSettings.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetSettings.json new file mode 100644 index 000000000000..2a9fb9f22c3d --- /dev/null +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetSettings.json @@ -0,0 +1,74 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/settings?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc2V0dGluZ3M/YXBpLXZlcnNpb249MjAxOS0wOC0wOC1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8500ad23-679a-464e-aa89-90752ba3ffcb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "5e8c5a38-b91a-435c-bff8-64582a32fd43" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvNdXTHpLbM5QyM8QL9P2rJVKkEsnz2ozwpoaz98HvLogA6Dl6QM6WKmSSfCb5wwcFutdY4cKgsnlyWvrGFpSyyntLjTglEh20IdWm44F+cIYGPQQRfGh5BrtUZBcoEdvx706H/+pKK343AGMtEKEC" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14752" + ], + "x-ms-request-id": [ + "5e8c5a38-b91a-435c-bff8-64582a32fd43" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022930Z:5e8c5a38-b91a-435c-bff8-64582a32fd43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:29 GMT" + ], + "Content-Length": [ + "85" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionPeriodForDeletedStorageAccountsInDays\": 2\r\n }\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "047e87e6-327f-4c44-8184-fb6bc35e8b38" + } +} \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetShare.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetShare.json deleted file mode 100644 index 09aa784094cd..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetShare.json +++ /dev/null @@ -1,200 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "94cf4da1-4d72-4846-a828-e50fffe624f4" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"type\": \"Microsoft.Storage.Admin/farms\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"version\": \"2015-12-01-preview\",\r\n \"settingsStore\": \"AzS-ACS01.azurestack.local:19000\",\r\n \"settings\": {\r\n \"settingsPollingIntervalInSecond\": 60,\r\n \"retentionPeriodForDeletedStorageAccountsInDays\": 0,\r\n \"hostStyleHttpPort\": 0,\r\n \"hostStyleHttpsPort\": 0,\r\n \"corsAllowedOriginsList\": \"https://adminportal.local.azurestack.external/;https://adminportal.local.azurestack.external:12649/;https://portal.local.azurestack.external/;https://portal.local.azurestack.external:12649/\",\r\n \"dataCenterUriHostSuffixes\": \"local.azurestack.external\",\r\n \"bandwidthThrottleIsEnabled\": false,\r\n \"usageCollectionIntervalInSeconds\": 10,\r\n \"feedbackRefreshIntervalInSeconds\": 10,\r\n \"numberOfAccountsToSync\": 20,\r\n \"defaultThrottleProbabilityDecayIntervalInSeconds\": 240,\r\n \"gracePeriodForFullThrottlingInRefreshIntervals\": 3,\r\n \"gracePeriodMaxThrottleProbability\": 0.9,\r\n \"overallRequestThresholdInTps\": 10000.0,\r\n \"defaultRequestThresholdInTps\": 200.0,\r\n \"minimumRequestThresholdInTps\": 1.0,\r\n \"toleranceFactorForTps\": 2.0,\r\n \"overallIngressThresholdInGbps\": 25.0,\r\n \"defaultIngressThresholdInGbps\": 2.0,\r\n \"minimumIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIngress\": 2.0,\r\n \"overallIntranetIngressThresholdInGbps\": 25.0,\r\n \"defaultIntranetIngressThresholdInGbps\": 2.0,\r\n \"minimumIntranetIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetIngress\": 2.0,\r\n \"overallEgressThresholdInGbps\": 30.0,\r\n \"defaultEgressThresholdInGbps\": 3.0,\r\n \"minimumEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForEgress\": 2.0,\r\n \"overallIntranetEgressThresholdInGbps\": 30.0,\r\n \"defaultIntranetEgressThresholdInGbps\": 3.0,\r\n \"minimumIntranetEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetEgress\": 2.0,\r\n \"overallTotalIngressThresholdInGbps\": 50.0,\r\n \"defaultTotalIngressThresholdInGbps\": 5.0,\r\n \"minimumTotalIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalIngress\": 2.0,\r\n \"overallTotalEgressThresholdInGbps\": 50.0,\r\n \"defaultTotalEgressThresholdInGbps\": 5.0,\r\n \"minimumTotalEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalEgress\": 2.0\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2888" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:25 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvwHmUlBQ2VIiCrJRC52hoj8atAZ787sgap/vMmy0L8aCxiBCeHNDg1jYrkTsPNwXsIvnAotCPfutskXqMQA2zGWh2CCf40f/yXg8hlFc0EMBbeI4zxeOxM4p/u4jU8HZRr69LTQM8tS9ZQzHx45u4" - ], - "x-ms-request-id": [ - "f165cab1-88f5-4e09-ba65-87e187050660" - ], - "x-ms-correlation-request-id": [ - "84c7266a-c5c3-4eda-a0e2-15175b80c948" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14814" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193126Z:84c7266a-c5c3-4eda-a0e2-15175b80c948" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/shares?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3NoYXJlcz9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "37f1ac71-356a-4a69-8a01-309c6aabb123" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "[\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/shares/||SU1FileServer.azurestack.local|SU1_ObjStore\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af/||SU1FileServer.azurestack.local|SU1_ObjStore\",\r\n \"type\": \"Microsoft.Storage.Admin/farms/shares\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"shareName\": \"||SU1FileServer.azurestack.local|SU1_ObjStore\",\r\n \"uncPath\": \"\\\\\\\\SU1FileServer.azurestack.local\\\\SU1_ObjStore\",\r\n \"totalCapacity\": 2728176648192,\r\n \"usedCapacity\": 400509059072,\r\n \"freeCapacity\": 2327667589120,\r\n \"healthStatus\": \"Healthy\"\r\n }\r\n }\r\n]", - "ResponseHeaders": { - "Content-Length": [ - "730" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:25 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv06YaaunQjg9HeM914EKgrjuJ7IsoBrYi4udLEQcgk0mcYbM7W6YuGrJQ5SqMIv81f0O/jKIXO/uihCjJzMfwIjdM6qX6NXSEcBHtULhU63z4w2eByZQlleagn5jD1kzasqW7z3tKZL0fvCfHof2b" - ], - "x-ms-request-id": [ - "5758debe-55be-4ff7-99f7-69a253320812" - ], - "x-ms-correlation-request-id": [ - "4f0ac6a2-c58e-4bc0-8426-f27265b901b1" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14813" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193126Z:4f0ac6a2-c58e-4bc0-8426-f27265b901b1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/shares/%7C%7CSU1FileServer.azurestack.local%7CSU1_ObjStore?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3NoYXJlcy8lN0MlN0NTVTFGaWxlU2VydmVyLmF6dXJlc3RhY2subG9jYWwlN0NTVTFfT2JqU3RvcmU/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3e44cd4d-0017-4d5f-ba9c-d2d924064dd5" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/shares/||SU1FileServer.azurestack.local|SU1_ObjStore\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af/||SU1FileServer.azurestack.local|SU1_ObjStore\",\r\n \"type\": \"Microsoft.Storage.Admin/farms/shares\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"shareName\": \"||SU1FileServer.azurestack.local|SU1_ObjStore\",\r\n \"uncPath\": \"\\\\\\\\SU1FileServer.azurestack.local\\\\SU1_ObjStore\",\r\n \"totalCapacity\": 2728176648192,\r\n \"usedCapacity\": 400509059072,\r\n \"freeCapacity\": 2327667589120,\r\n \"healthStatus\": \"Healthy\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "696" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:25 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvok4Gcl7GaTZ4wm8hBxK2oWw5jmgTrgGZKs4RmvHcof3CtJ+E8u0dh/tnAb5EYwVIx0KYIl+ubhGGFsxxpIlu+uwF92zbP9n/JKbRqRX/QitIjnfReXYjgrpZoP1TpIGU0Gc3kjkUSpMCcGhYhznj" - ], - "x-ms-request-id": [ - "74b942e5-086f-4369-af06-1cfb17345ae1" - ], - "x-ms-correlation-request-id": [ - "cb4ad34f-796c-43b8-bae4-79f64b2c7c34" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14812" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193126Z:cb4ad34f-796c-43b8-bae4-79f64b2c7c34" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "SubscriptionId": "9ad61516-995c-4873-a21f-7e44904f0ed2" - } -} \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetStorageAccount.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetStorageAccount.json index 3ea85b96a562..bd5fcea2a742 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetStorageAccount.json +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetStorageAccount.json @@ -1,200 +1,143 @@ { "Entries": [ { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts?api-version=2019-08-08-preview&summary=false", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldyZzdW1tYXJ5PWZhbHNl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a0b1028-f0fb-4038-8b0a-674539bc483a" + "02c1347f-da7a-44d1-bbd8-2d1934ad17ca" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "Prefer": [ + "odata.maxpagesize=1000" + ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"type\": \"Microsoft.Storage.Admin/farms\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"version\": \"2015-12-01-preview\",\r\n \"settingsStore\": \"AzS-ACS01.azurestack.local:19000\",\r\n \"settings\": {\r\n \"settingsPollingIntervalInSecond\": 60,\r\n \"retentionPeriodForDeletedStorageAccountsInDays\": 0,\r\n \"hostStyleHttpPort\": 0,\r\n \"hostStyleHttpsPort\": 0,\r\n \"corsAllowedOriginsList\": \"https://adminportal.local.azurestack.external/;https://adminportal.local.azurestack.external:12649/;https://portal.local.azurestack.external/;https://portal.local.azurestack.external:12649/\",\r\n \"dataCenterUriHostSuffixes\": \"local.azurestack.external\",\r\n \"bandwidthThrottleIsEnabled\": false,\r\n \"usageCollectionIntervalInSeconds\": 10,\r\n \"feedbackRefreshIntervalInSeconds\": 10,\r\n \"numberOfAccountsToSync\": 20,\r\n \"defaultThrottleProbabilityDecayIntervalInSeconds\": 240,\r\n \"gracePeriodForFullThrottlingInRefreshIntervals\": 3,\r\n \"gracePeriodMaxThrottleProbability\": 0.9,\r\n \"overallRequestThresholdInTps\": 10000.0,\r\n \"defaultRequestThresholdInTps\": 200.0,\r\n \"minimumRequestThresholdInTps\": 1.0,\r\n \"toleranceFactorForTps\": 2.0,\r\n \"overallIngressThresholdInGbps\": 25.0,\r\n \"defaultIngressThresholdInGbps\": 2.0,\r\n \"minimumIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIngress\": 2.0,\r\n \"overallIntranetIngressThresholdInGbps\": 25.0,\r\n \"defaultIntranetIngressThresholdInGbps\": 2.0,\r\n \"minimumIntranetIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetIngress\": 2.0,\r\n \"overallEgressThresholdInGbps\": 30.0,\r\n \"defaultEgressThresholdInGbps\": 3.0,\r\n \"minimumEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForEgress\": 2.0,\r\n \"overallIntranetEgressThresholdInGbps\": 30.0,\r\n \"defaultIntranetEgressThresholdInGbps\": 3.0,\r\n \"minimumIntranetEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetEgress\": 2.0,\r\n \"overallTotalIngressThresholdInGbps\": 50.0,\r\n \"defaultTotalIngressThresholdInGbps\": 5.0,\r\n \"minimumTotalIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalIngress\": 2.0,\r\n \"overallTotalEgressThresholdInGbps\": 50.0,\r\n \"defaultTotalEgressThresholdInGbps\": 5.0,\r\n \"minimumTotalEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalEgress\": 2.0\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "2888" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:19 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "d9274dca-197a-4277-a349-2c0c87ef45e9" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvXcLVigi9Yrd5slllMU5rMRTQBUbaB4KpfPGo/Sua8X9ppa5RvxpVV9MAje6Lz0UJlj4j//8We+5Svt58PWZ5gnayw66cQxVDrk/8YxhVa0CoDY0Y1VMA5vpVaw1g1qw4hErF9xStNF8PjxY/vSzd" - ], - "x-ms-request-id": [ - "f76c4359-a11f-484d-bde3-951f77589f52" - ], - "x-ms-correlation-request-id": [ - "2d4a5f47-476a-4f21-87cb-d9ae2a16128f" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvU7pRwjHx+x02VacB4mNmdeBoc8fc29dwMu9oTxJhdrMcK+eatMxtcShDX5A2xmzfi79Ff0LaMkxbO6KI37uTBIwJgSTLiA8pghzHIYD8u3/KdFD+uSpx1UbQuLVvOES8ZhqjqHaDq3TjCFcXWu0d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14864" + "14654" + ], + "x-ms-request-id": [ + "d9274dca-197a-4277-a349-2c0c87ef45e9" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193119Z:2d4a5f47-476a-4f21-87cb-d9ae2a16128f" + "LOCAL:20190917T022941Z:d9274dca-197a-4277-a349-2c0c87ef45e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts?api-version=2015-12-01-preview&summary=false", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXcmc3VtbWFyeT1mYWxzZQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6b787b85-cf59-4699-b1d6-3d83d0d03d10" ], - "accept-language": [ - "en-US" + "Date": [ + "Tue, 17 Sep 2019 02:29:41 GMT" ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/0180624c67694706a4066782d83057a5\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"0180624c67694706a4066782d83057a5\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata004.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata004.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata004.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageaccounts/adminkvlclproddata004\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata004\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"0180624c67694706a4066782d83057a5\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:27.41\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/04106a84393f4a12ab8efdbc0a69bb65\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"04106a84393f4a12ab8efdbc0a69bb65\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata005.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata005.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata005.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageaccounts/adminkvlclproddata005\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata005\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"04106a84393f4a12ab8efdbc0a69bb65\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:27.847\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/06e296e00b284f5cb5708dfabd6ad74c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"06e296e00b284f5cb5708dfabd6ad74c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://wasphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://wasphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://wasphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/wasphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"wasphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"06e296e00b284f5cb5708dfabd6ad74c\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:12.47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/0a6b4f6b1de14cc08aa1fefadcc481eb\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"0a6b4f6b1de14cc08aa1fefadcc481eb\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://frphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://frphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://frphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/frphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"frphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"0a6b4f6b1de14cc08aa1fefadcc481eb\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:02.527\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/0d724e3f75004e48948c1bfa0b4a964a\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"0d724e3f75004e48948c1bfa0b4a964a\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://systemgallery.blob.local.azurestack.external/\",\r\n \"queue\": \"https://systemgallery.queue.local.azurestack.external/\",\r\n \"table\": \"https://systemgallery.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/systemgallery\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"systemgallery\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"0d724e3f75004e48948c1bfa0b4a964a\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:29.467\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/0dda0879146341178603ba151d7da010\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"0dda0879146341178603ba151d7da010\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://nrpeventsaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://nrpeventsaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://nrpeventsaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/nrpeventsaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"nrpeventsaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"0dda0879146341178603ba151d7da010\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:23.84\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/15612011f6094654abcb6031a4394ef5\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"15612011f6094654abcb6031a4394ef5\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvrphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvrphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvrphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/kvrphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvrphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"15612011f6094654abcb6031a4394ef5\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:36.193\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/17829fa81c154239ad8a6fae05f44793\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"17829fa81c154239ad8a6fae05f44793\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srpusageaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srpusageaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srpusageaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/srpusageaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"srpusageaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"17829fa81c154239ad8a6fae05f44793\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:15.38\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/1db56fd5982f4c7289df85965988ff19\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"1db56fd5982f4c7289df85965988ff19\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://systemtemp.blob.local.azurestack.external/\",\r\n \"queue\": \"https://systemtemp.queue.local.azurestack.external/\",\r\n \"table\": \"https://systemtemp.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/systemtemp\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"systemtemp\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"1db56fd5982f4c7289df85965988ff19\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:43.66\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/224b73ac66fb409ba83db3d26ac4ec7c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"224b73ac66fb409ba83db3d26ac4ec7c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://tenantextadminaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://tenantextadminaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://tenantextadminaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/tenantextadminaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"tenantextadminaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"224b73ac66fb409ba83db3d26ac4ec7c\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:24.32\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/2ff57b811ca04500a68c4e68daf76823\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"2ff57b811ca04500a68c4e68daf76823\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclprodbackup.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclprodbackup.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclprodbackup.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageaccounts/adminkvlclprodbackup\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"adminkvlclprodbackup\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"2ff57b811ca04500a68c4e68daf76823\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:19.163\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/35340422c5c64cb3ae510e262aaed591\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"35340422c5c64cb3ae510e262aaed591\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://nrphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://nrphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://nrphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/nrphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"nrphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"35340422c5c64cb3ae510e262aaed591\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:23.45\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/36be42f131ae4852b035ccba24f529c0\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"36be42f131ae4852b035ccba24f529c0\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvusage.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvusage.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvusage.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageaccounts/adminkvusage\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"adminkvusage\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"36be42f131ae4852b035ccba24f529c0\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:19.543\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/37ed7aabf28347eca9d03509aa6a4ae7\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"37ed7aabf28347eca9d03509aa6a4ae7\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://nrpusageaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://nrpusageaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://nrpusageaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/nrpusageaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"nrpusageaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"37ed7aabf28347eca9d03509aa6a4ae7\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:24.25\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/38f227dcf5314aa18c97cc4b4e0b72a8\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"38f227dcf5314aa18c97cc4b4e0b72a8\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srphyadmaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srphyadmaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srphyadmaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/srphyadmaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"srphyadmaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"38f227dcf5314aa18c97cc4b4e0b72a8\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:16.853\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/3fe86317cc0d40e0a0d4833641a64fdb\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"3fe86317cc0d40e0a0d4833641a64fdb\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/srphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"srphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"3fe86317cc0d40e0a0d4833641a64fdb\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:14.473\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/4639bcee762c46b493fe4d611f79504b\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"4639bcee762c46b493fe4d611f79504b\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata001.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata001.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata001.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageaccounts/adminkvlclproddata001\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata001\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"4639bcee762c46b493fe4d611f79504b\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:26.23\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/5018238804f74d69abd13279fee118ba\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"5018238804f74d69abd13279fee118ba\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srphytenaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srphytenaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srphytenaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/srphytenaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"srphytenaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"5018238804f74d69abd13279fee118ba\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:16.39\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/61dd00ce90ba432a97aa66565c61abd0\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"61dd00ce90ba432a97aa66565c61abd0\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://publicsystemevents.blob.local.azurestack.external/\",\r\n \"queue\": \"https://publicsystemevents.queue.local.azurestack.external/\",\r\n \"table\": \"https://publicsystemevents.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/publicsystemevents\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"publicsystemevents\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"61dd00ce90ba432a97aa66565c61abd0\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:29.997\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/651d470800ab4633a1ac7361d243202c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"651d470800ab4633a1ac7361d243202c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://authadminprod.blob.local.azurestack.external/\",\r\n \"queue\": \"https://authadminprod.queue.local.azurestack.external/\",\r\n \"table\": \"https://authadminprod.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/authadminprod\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"authadminprod\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"651d470800ab4633a1ac7361d243202c\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:30.37\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/6941dfa7916c43d68ccf8c022b8f0446\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"6941dfa7916c43d68ccf8c022b8f0446\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://tenantextaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://tenantextaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://tenantextaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/tenantextaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"tenantextaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"6941dfa7916c43d68ccf8c022b8f0446\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:29.293\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/7acc15fcd147499a880921a074adb5de\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"7acc15fcd147499a880921a074adb5de\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvstoreprodlcl.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvstoreprodlcl.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvstoreprodlcl.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageaccounts/adminkvstoreprodlcl\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"adminkvstoreprodlcl\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"7acc15fcd147499a880921a074adb5de\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:18.777\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/7c8133ff973d4032b564dd5e34e10398\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"7c8133ff973d4032b564dd5e34e10398\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://systemportal.blob.local.azurestack.external/\",\r\n \"queue\": \"https://systemportal.queue.local.azurestack.external/\",\r\n \"table\": \"https://systemportal.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/systemportal\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"systemportal\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"7c8133ff973d4032b564dd5e34e10398\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:29.64\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/8dbaecbea3354e4cbdb89631684b612d\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"8dbaecbea3354e4cbdb89631684b612d\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://armprod.blob.local.azurestack.external/\",\r\n \"queue\": \"https://armprod.queue.local.azurestack.external/\",\r\n \"table\": \"https://armprod.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/armprod\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"armprod\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"8dbaecbea3354e4cbdb89631684b612d\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:31.17\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/8f8be5bef33f44e3a1354f2822e3165d\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"8f8be5bef33f44e3a1354f2822e3165d\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata002.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata002.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata002.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageaccounts/adminkvlclproddata002\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata002\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"8f8be5bef33f44e3a1354f2822e3165d\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:26.617\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/916252a6959543229fa45122b23f6d40\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"916252a6959543229fa45122b23f6d40\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata002.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata002.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata002.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageaccounts/kvlclproddata002\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvlclproddata002\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"916252a6959543229fa45122b23f6d40\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:34.667\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/9576f47167b644e6a0895ad0e4627a95\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"9576f47167b644e6a0895ad0e4627a95\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crpusageaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://crpusageaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://crpusageaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/crpusageaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"crpusageaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"9576f47167b644e6a0895ad0e4627a95\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:38.963\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/990c6816faa644fdb72933dc4ea77cc7\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"990c6816faa644fdb72933dc4ea77cc7\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://systemevents.blob.local.azurestack.external/\",\r\n \"queue\": \"https://systemevents.queue.local.azurestack.external/\",\r\n \"table\": \"https://systemevents.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/systemevents\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"systemevents\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"990c6816faa644fdb72933dc4ea77cc7\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:30.577\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/996281397eab4405a1575151c1d4b573\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"996281397eab4405a1575151c1d4b573\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclprodbackup.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclprodbackup.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclprodbackup.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageaccounts/kvlclprodbackup\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvlclprodbackup\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"996281397eab4405a1575151c1d4b573\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:41.333\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/9f70a4f764be465ca2434ff43c7c5be4\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"9f70a4f764be465ca2434ff43c7c5be4\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata005.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata005.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata005.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageaccounts/kvlclproddata005\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvlclproddata005\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"9f70a4f764be465ca2434ff43c7c5be4\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:35.803\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/ab9e6c77f96d42af9068ae8527214f36\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"ab9e6c77f96d42af9068ae8527214f36\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvusage.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvusage.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvusage.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageaccounts/kvusage\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvusage\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"ab9e6c77f96d42af9068ae8527214f36\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:41.713\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/ad28eb5b219f4ab6b7a5b62a3d7ca90c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"ad28eb5b219f4ab6b7a5b62a3d7ca90c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srpeventsaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srpeventsaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srpeventsaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/srpeventsaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"srpeventsaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"ad28eb5b219f4ab6b7a5b62a3d7ca90c\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:14.93\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/b27b21524dda4256876a7ee404c39183\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"b27b21524dda4256876a7ee404c39183\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata004.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata004.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata004.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageaccounts/kvlclproddata004\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvlclproddata004\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"b27b21524dda4256876a7ee404c39183\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:35.427\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/b37939f0ab67457080efbed73a12a322\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"b37939f0ab67457080efbed73a12a322\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://updateadminaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://updateadminaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://updateadminaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/updateadminaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"updateadminaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"b37939f0ab67457080efbed73a12a322\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:46.06\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/b619a28863294abab5a865e9d0fb7a7c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"b619a28863294abab5a865e9d0fb7a7c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata001.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata001.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata001.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageaccounts/kvlclproddata001\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvlclproddata001\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"b619a28863294abab5a865e9d0fb7a7c\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:34.287\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/b83acb181ff84c3e98679849c5aaa742\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"b83acb181ff84c3e98679849c5aaa742\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata003.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata003.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata003.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageaccounts/kvlclproddata003\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvlclproddata003\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"b83acb181ff84c3e98679849c5aaa742\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:35.037\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/bad37ca8583341658074db993999a8cc\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"bad37ca8583341658074db993999a8cc\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://armadminprod.blob.local.azurestack.external/\",\r\n \"queue\": \"https://armadminprod.queue.local.azurestack.external/\",\r\n \"table\": \"https://armadminprod.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/armadminprod\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"armadminprod\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"bad37ca8583341658074db993999a8cc\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:29.817\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/bd326c553a4a4914adaab93be8536269\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"bd326c553a4a4914adaab93be8536269\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvstoreprodlcl.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvstoreprodlcl.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvstoreprodlcl.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageaccounts/kvstoreprodlcl\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvstoreprodlcl\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"bd326c553a4a4914adaab93be8536269\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:40.953\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/be57c92cec0d4c268b00b70fc3c64023\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"be57c92cec0d4c268b00b70fc3c64023\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata003.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata003.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata003.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageaccounts/adminkvlclproddata003\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata003\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"be57c92cec0d4c268b00b70fc3c64023\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:26.997\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/c2a6bdd19e404154afe27e2637e64ee1\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"c2a6bdd19e404154afe27e2637e64ee1\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://hrphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://hrphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://hrphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/hrphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"hrphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"c2a6bdd19e404154afe27e2637e64ee1\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:29.983\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/c7cf2e4007614bf79741482ae435964a\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"c7cf2e4007614bf79741482ae435964a\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvvnsproddata.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvvnsproddata.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvvnsproddata.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.keyvault/providers/Microsoft.Storage/storageaccounts/kvvnsproddata\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvvnsproddata\",\r\n \"tenantResourceGroupName\": \"system.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"c7cf2e4007614bf79741482ae435964a\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:32.52\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/d5ab5566744f4480b7d891e214c208f6\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"d5ab5566744f4480b7d891e214c208f6\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://publicsystemportal.blob.local.azurestack.external/\",\r\n \"queue\": \"https://publicsystemportal.queue.local.azurestack.external/\",\r\n \"table\": \"https://publicsystemportal.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/publicsystemportal\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"publicsystemportal\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"d5ab5566744f4480b7d891e214c208f6\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:30.18\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/d927ac58d8154ff18a7834a368cf1442\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"d927ac58d8154ff18a7834a368cf1442\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crpeventsaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://crpeventsaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://crpeventsaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/crpeventsaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"crpeventsaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"d927ac58d8154ff18a7834a368cf1442\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:38.573\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/df790261d6794180ae2b22387f05e3ee\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"df790261d6794180ae2b22387f05e3ee\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://urphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://urphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://urphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/urphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"urphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"df790261d6794180ae2b22387f05e3ee\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:45.627\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/e2ee913734b040e392b1d0b2969bd098\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"e2ee913734b040e392b1d0b2969bd098\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://azurebridgerp.blob.local.azurestack.external/\",\r\n \"queue\": \"https://azurebridgerp.queue.local.azurestack.external/\",\r\n \"table\": \"https://azurebridgerp.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/azurebridgerp\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"azurebridgerp\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"e2ee913734b040e392b1d0b2969bd098\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:30.767\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/ede6aaff1e6247d99da14ec11b512c3f\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"ede6aaff1e6247d99da14ec11b512c3f\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://brphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://brphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://brphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/brphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"brphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"ede6aaff1e6247d99da14ec11b512c3f\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:21.627\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/f2e9a98feb57479880b2c66bae1c9745\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"f2e9a98feb57479880b2c66bae1c9745\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://crphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://crphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/crphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"crphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"f2e9a98feb57479880b2c66bae1c9745\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:38.157\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/f93c9df9e7af487fbda484a9201d9c18\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"f93c9df9e7af487fbda484a9201d9c18\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://authprod.blob.local.azurestack.external/\",\r\n \"queue\": \"https://authprod.queue.local.azurestack.external/\",\r\n \"table\": \"https://authprod.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/authprod\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"authprod\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"f93c9df9e7af487fbda484a9201d9c18\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:30.983\"\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { "Content-Length": [ - "74969" + "176674" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:19 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5vpKr26MDDfpBZOXQ1E8e+kzfjy3/CY5iQTRetP4j0jkwakrK9KAPolgMsown4h4gnZuyWMZeXzZPv+AauDKLaiqy1HUqeQRZMG2PmXknPqejB0SOXqCckvUBmKUdA9kywSpO+HUcuD/mB4njTAi" - ], - "x-ms-request-id": [ - "2589e3b1-2ea8-4beb-823c-1091edae5404" - ], - "x-ms-correlation-request-id": [ - "6b919807-b25a-4127-8d7c-52a133a66a34" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14863" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193119Z:6b919807-b25a-4127-8d7c-52a133a66a34" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"161d2969192b4330afd8c50ec70be923\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://112srp02test112.blob.local.azurestack.external/\",\r\n \"queue\": \"https://112srp02test112.queue.local.azurestack.external/\",\r\n \"table\": \"https://112srp02test112.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 7:43:30 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 7:43:30 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 7:43:30 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/112srp02test112\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"112srp02test112\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"161d2969192b4330afd8c50ec70be923\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/6/2019 7:43:30 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/161d2969192b4330afd8c50ec70be923\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"3cca152472c84ce58d24546fa28670f7\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://505srp02test505.blob.local.azurestack.external/\",\r\n \"queue\": \"https://505srp02test505.queue.local.azurestack.external/\",\r\n \"table\": \"https://505srp02test505.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 7:11:09 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 7:11:09 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 7:11:09 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/505srp02test505\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"505srp02test505\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"3cca152472c84ce58d24546fa28670f7\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/6/2019 7:11:09 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/3cca152472c84ce58d24546fa28670f7\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"a34ab1167f1e4cb5b45865bc761ad5af\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://972srp02test972.blob.local.azurestack.external/\",\r\n \"queue\": \"https://972srp02test972.queue.local.azurestack.external/\",\r\n \"table\": \"https://972srp02test972.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 6:52:55 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 6:52:55 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 6:52:55 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/972srp02test972\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"972srp02test972\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"a34ab1167f1e4cb5b45865bc761ad5af\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/6/2019 6:52:55 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/a34ab1167f1e4cb5b45865bc761ad5af\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"287904ee8f424b8cb33774793b628d37\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://account0b5e0e0c5543418.blob.local.azurestack.external/\",\r\n \"queue\": \"https://account0b5e0e0c5543418.queue.local.azurestack.external/\",\r\n \"table\": \"https://account0b5e0e0c5543418.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:48:40 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:48:40 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:48:40 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/xrprgtestggoqug/providers/Microsoft.Storage/storageAccounts/account0b5e0e0c5543418\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"account0b5e0e0c5543418\",\r\n \"tenantResourceGroupName\": \"xrprgtestggoqug\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"287904ee8f424b8cb33774793b628d37\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:48:40 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/287904ee8f424b8cb33774793b628d37\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"57dbe5ba426f421f8af4f70b03f8b83a\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://account39a28a838e4d454.blob.local.azurestack.external/\",\r\n \"queue\": \"https://account39a28a838e4d454.queue.local.azurestack.external/\",\r\n \"table\": \"https://account39a28a838e4d454.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:25:44 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:25:44 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:25:44 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/xrprgtestapexrs/providers/Microsoft.Storage/storageAccounts/account39a28a838e4d454\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"account39a28a838e4d454\",\r\n \"tenantResourceGroupName\": \"xrprgtestapexrs\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"57dbe5ba426f421f8af4f70b03f8b83a\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:25:44 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/57dbe5ba426f421f8af4f70b03f8b83a\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"7186b489ab9f42cd8c3b278c72abfb30\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://accountb5eafb70c159445b9.blob.local.azurestack.external/\",\r\n \"queue\": \"https://accountb5eafb70c159445b9.queue.local.azurestack.external/\",\r\n \"table\": \"https://accountb5eafb70c159445b9.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:51:28 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:51:28 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:51:28 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/xrprgtestggoqug/providers/Microsoft.Storage/storageAccounts/accountb5eafb70c159445b9\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"accountb5eafb70c159445b9\",\r\n \"tenantResourceGroupName\": \"xrprgtestggoqug\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"7186b489ab9f42cd8c3b278c72abfb30\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:51:28 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/7186b489ab9f42cd8c3b278c72abfb30\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"5c4bbb40093549f08e0ff1e8190a6bb5\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://accountec581e1d0dba4b2.blob.local.azurestack.external/\",\r\n \"queue\": \"https://accountec581e1d0dba4b2.queue.local.azurestack.external/\",\r\n \"table\": \"https://accountec581e1d0dba4b2.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:51:33 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:51:33 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:51:33 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/xrprgtestgwmeqg/providers/Microsoft.Storage/storageAccounts/accountec581e1d0dba4b2\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"accountec581e1d0dba4b2\",\r\n \"tenantResourceGroupName\": \"xrprgtestgwmeqg\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"5c4bbb40093549f08e0ff1e8190a6bb5\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:51:33 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/5c4bbb40093549f08e0ff1e8190a6bb5\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"a3cb304128304b2984406244ac1c0734\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclprodbackup.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclprodbackup.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclprodbackup.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:30 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:30 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:30 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageAccounts/adminkvlclprodbackup\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"adminkvlclprodbackup\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"a3cb304128304b2984406244ac1c0734\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:30 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/a3cb304128304b2984406244ac1c0734\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"0939bebf584c4aaeaf32f2ff1510f010\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata001.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata001.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata001.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:52 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:52 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:52 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageAccounts/adminkvlclproddata001\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata001\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"0939bebf584c4aaeaf32f2ff1510f010\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:52 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/0939bebf584c4aaeaf32f2ff1510f010\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"80369ee57bd04f7787319a6637fc5606\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata002.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata002.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata002.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:55 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:55 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:55 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageAccounts/adminkvlclproddata002\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata002\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"80369ee57bd04f7787319a6637fc5606\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:55 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/80369ee57bd04f7787319a6637fc5606\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"f872844aae664f18a67eace8a7dc3736\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata003.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata003.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata003.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:56 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:56 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:56 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageAccounts/adminkvlclproddata003\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata003\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"f872844aae664f18a67eace8a7dc3736\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:56 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/f872844aae664f18a67eace8a7dc3736\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"4d7e9ada2c6a4858bd9adb2fe1274412\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata004.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata004.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata004.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:57 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:57 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:57 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageAccounts/adminkvlclproddata004\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata004\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"4d7e9ada2c6a4858bd9adb2fe1274412\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:57 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/4d7e9ada2c6a4858bd9adb2fe1274412\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"e3744b99afb74ac6b555a7c954252744\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata005.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata005.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata005.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:57 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:57 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:57 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageAccounts/adminkvlclproddata005\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata005\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"e3744b99afb74ac6b555a7c954252744\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:57 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/e3744b99afb74ac6b555a7c954252744\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"5e025d6176d446d39cda464dc750edcb\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvstoreprodlcl.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvstoreprodlcl.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvstoreprodlcl.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:29 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:29 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:29 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageAccounts/adminkvstoreprodlcl\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"adminkvstoreprodlcl\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"5e025d6176d446d39cda464dc750edcb\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:29 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/5e025d6176d446d39cda464dc750edcb\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"14d24a720da64b378ce945cb1de4f6a9\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvusage.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvusage.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvusage.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:30 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:30 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:30 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageAccounts/adminkvusage\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"adminkvusage\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"14d24a720da64b378ce945cb1de4f6a9\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:30 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/14d24a720da64b378ce945cb1de4f6a9\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"ce7c53b5a4dc4124988748ac9ebd3846\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://armadminprod.blob.local.azurestack.external/\",\r\n \"queue\": \"https://armadminprod.queue.local.azurestack.external/\",\r\n \"table\": \"https://armadminprod.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/armadminprod\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"armadminprod\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"ce7c53b5a4dc4124988748ac9ebd3846\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/ce7c53b5a4dc4124988748ac9ebd3846\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"64fbb5fc13fc4463b5467e6f18e3dcf0\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://armprod.blob.local.azurestack.external/\",\r\n \"queue\": \"https://armprod.queue.local.azurestack.external/\",\r\n \"table\": \"https://armprod.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/armprod\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"armprod\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"64fbb5fc13fc4463b5467e6f18e3dcf0\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/64fbb5fc13fc4463b5467e6f18e3dcf0\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"338890ebeee84074bd1f61b41b471c16\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://authadminprod.blob.local.azurestack.external/\",\r\n \"queue\": \"https://authadminprod.queue.local.azurestack.external/\",\r\n \"table\": \"https://authadminprod.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:33 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:33 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:33 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/authadminprod\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"authadminprod\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"338890ebeee84074bd1f61b41b471c16\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:33 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/338890ebeee84074bd1f61b41b471c16\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"f12c40fd5b6c45e6b62abe9b32d49ca0\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://authprod.blob.local.azurestack.external/\",\r\n \"queue\": \"https://authprod.queue.local.azurestack.external/\",\r\n \"table\": \"https://authprod.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/authprod\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"authprod\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"f12c40fd5b6c45e6b62abe9b32d49ca0\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/f12c40fd5b6c45e6b62abe9b32d49ca0\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"c5694dbdc21047828f206a7a1821aaae\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://azurebridgerp.blob.local.azurestack.external/\",\r\n \"queue\": \"https://azurebridgerp.queue.local.azurestack.external/\",\r\n \"table\": \"https://azurebridgerp.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/azurebridgerp\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"azurebridgerp\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"c5694dbdc21047828f206a7a1821aaae\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/c5694dbdc21047828f206a7a1821aaae\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"feedde92f4bb4a96a7fabf54498bcc00\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://bcdrbvtsa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://bcdrbvtsa.queue.local.azurestack.external/\",\r\n \"table\": \"https://bcdrbvtsa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 3:57:16 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 3:57:16 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 3:57:16 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/bcdrbvtsa\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"bcdrbvtsa\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"feedde92f4bb4a96a7fabf54498bcc00\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 3:57:16 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/feedde92f4bb4a96a7fabf54498bcc00\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"6aa9acaf71864043a1e332c0863a6e32\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://brphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://brphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://brphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:29 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:29 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:29 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/brphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"brphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"6aa9acaf71864043a1e332c0863a6e32\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:29 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/6aa9acaf71864043a1e332c0863a6e32\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"c25e6613c3494ebf877e0c83847a2114\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cnur72654921sa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://cnur72654921sa.queue.local.azurestack.external/\",\r\n \"table\": \"https://cnur72654921sa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:41:13 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:41:13 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:41:13 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/e9f9bfc4-adfa-4082-ae8b-144b186ab1a1/resourcegroups/cnur7265/providers/Microsoft.Storage/storageAccounts/cnur72654921sa\",\r\n \"tenantSubscriptionId\": \"e9f9bfc4-adfa-4082-ae8b-144b186ab1a1\",\r\n \"tenantStorageAccountName\": \"cnur72654921sa\",\r\n \"tenantResourceGroupName\": \"cnur7265\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"c25e6613c3494ebf877e0c83847a2114\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:41:13 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/c25e6613c3494ebf877e0c83847a2114\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"650d0726cbbd4ebcb76c03c6c6d957c7\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cnvr91sa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://cnvr91sa.queue.local.azurestack.external/\",\r\n \"table\": \"https://cnvr91sa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:15 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:15 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:15 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/e9f9bfc4-adfa-4082-ae8b-144b186ab1a1/resourcegroups/cnvr9/providers/Microsoft.Storage/storageAccounts/cnvr91sa\",\r\n \"tenantSubscriptionId\": \"e9f9bfc4-adfa-4082-ae8b-144b186ab1a1\",\r\n \"tenantStorageAccountName\": \"cnvr91sa\",\r\n \"tenantResourceGroupName\": \"cnvr9\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"650d0726cbbd4ebcb76c03c6c6d957c7\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:47:15 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/650d0726cbbd4ebcb76c03c6c6d957c7\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"bed148cdd2524f8da9c3788cce3cc023\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cnvr92sa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://cnvr92sa.queue.local.azurestack.external/\",\r\n \"table\": \"https://cnvr92sa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:20 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:20 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:20 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/e9f9bfc4-adfa-4082-ae8b-144b186ab1a1/resourcegroups/cnvr9/providers/Microsoft.Storage/storageAccounts/cnvr92sa\",\r\n \"tenantSubscriptionId\": \"e9f9bfc4-adfa-4082-ae8b-144b186ab1a1\",\r\n \"tenantStorageAccountName\": \"cnvr92sa\",\r\n \"tenantResourceGroupName\": \"cnvr9\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"bed148cdd2524f8da9c3788cce3cc023\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:47:20 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/bed148cdd2524f8da9c3788cce3cc023\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"dc8cb1efbc144b1abee3ccf21f876d8a\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cnvr93sa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://cnvr93sa.queue.local.azurestack.external/\",\r\n \"table\": \"https://cnvr93sa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:19 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:19 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:19 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/e9f9bfc4-adfa-4082-ae8b-144b186ab1a1/resourcegroups/cnvr9/providers/Microsoft.Storage/storageAccounts/cnvr93sa\",\r\n \"tenantSubscriptionId\": \"e9f9bfc4-adfa-4082-ae8b-144b186ab1a1\",\r\n \"tenantStorageAccountName\": \"cnvr93sa\",\r\n \"tenantResourceGroupName\": \"cnvr9\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"dc8cb1efbc144b1abee3ccf21f876d8a\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:47:19 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/dc8cb1efbc144b1abee3ccf21f876d8a\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"6516f1d584a34d3e944e8bd5d01fa732\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cnvr94sa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://cnvr94sa.queue.local.azurestack.external/\",\r\n \"table\": \"https://cnvr94sa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:16 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:16 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:16 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/e9f9bfc4-adfa-4082-ae8b-144b186ab1a1/resourcegroups/cnvr9/providers/Microsoft.Storage/storageAccounts/cnvr94sa\",\r\n \"tenantSubscriptionId\": \"e9f9bfc4-adfa-4082-ae8b-144b186ab1a1\",\r\n \"tenantStorageAccountName\": \"cnvr94sa\",\r\n \"tenantResourceGroupName\": \"cnvr9\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"6516f1d584a34d3e944e8bd5d01fa732\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:47:16 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/6516f1d584a34d3e944e8bd5d01fa732\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"6857c879a31c4ff48956748881efbd40\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crpeventsaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://crpeventsaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://crpeventsaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:41 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:41 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:41 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/crpeventsaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"crpeventsaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"6857c879a31c4ff48956748881efbd40\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:41 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/6857c879a31c4ff48956748881efbd40\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"9953cac373334354828e593e62c66b8d\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://crphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://crphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:41 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:41 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:41 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/crphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"crphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"9953cac373334354828e593e62c66b8d\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:41 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/9953cac373334354828e593e62c66b8d\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"851a1e1e996045298d59a35ad29a8582\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crpusageaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://crpusageaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://crpusageaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:42 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:42 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:42 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/crpusageaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"crpusageaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"851a1e1e996045298d59a35ad29a8582\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:42 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/851a1e1e996045298d59a35ad29a8582\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"d6eae104e11f43129aaf8950619d8b72\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://deploymentrp.blob.local.azurestack.external/\",\r\n \"queue\": \"https://deploymentrp.queue.local.azurestack.external/\",\r\n \"table\": \"https://deploymentrp.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/deploymentrp\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"deploymentrp\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"d6eae104e11f43129aaf8950619d8b72\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/d6eae104e11f43129aaf8950619d8b72\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"064454e138b446cba667db3fde601772\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://diagsetsaprimary.blob.local.azurestack.external/\",\r\n \"queue\": \"https://diagsetsaprimary.queue.local.azurestack.external/\",\r\n \"table\": \"https://diagsetsaprimary.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:49 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:49 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:49 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.AzureMonitor/providers/Microsoft.Storage/storageAccounts/diagsetsaprimary\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"diagsetsaprimary\",\r\n \"tenantResourceGroupName\": \"system.local.AzureMonitor\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"064454e138b446cba667db3fde601772\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:49 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/064454e138b446cba667db3fde601772\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"df9af90cffe54fbd904bb6df4699fb8f\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://diagsetsaprimaryadmin.blob.local.azurestack.external/\",\r\n \"queue\": \"https://diagsetsaprimaryadmin.queue.local.azurestack.external/\",\r\n \"table\": \"https://diagsetsaprimaryadmin.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:31 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:31 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:31 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.AzureMonitor/providers/Microsoft.Storage/storageAccounts/diagsetsaprimaryadmin\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"diagsetsaprimaryadmin\",\r\n \"tenantResourceGroupName\": \"system.local.AzureMonitor\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"df9af90cffe54fbd904bb6df4699fb8f\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:31 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/df9af90cffe54fbd904bb6df4699fb8f\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"66343e89738549388f9678fb3604e579\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://diskhealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://diskhealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://diskhealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:33 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:33 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:33 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/diskhealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"diskhealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"66343e89738549388f9678fb3604e579\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:33 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/66343e89738549388f9678fb3604e579\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"2ac24401adaf4197803f847628138250\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://diskusageaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://diskusageaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://diskusageaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:34 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:34 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:34 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/diskusageaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"diskusageaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"2ac24401adaf4197803f847628138250\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:34 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/2ac24401adaf4197803f847628138250\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"f3e01aa9fe0541e79cf7c9fa9240906f\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://extensionpackages.blob.local.azurestack.external/\",\r\n \"queue\": \"https://extensionpackages.queue.local.azurestack.external/\",\r\n \"table\": \"https://extensionpackages.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/extensionpackages\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"extensionpackages\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"f3e01aa9fe0541e79cf7c9fa9240906f\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/f3e01aa9fe0541e79cf7c9fa9240906f\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"77bec2066b084c5a9b976fd040de93b2\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://frphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://frphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://frphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:02 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:02 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:02 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/frphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"frphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"77bec2066b084c5a9b976fd040de93b2\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:02 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/77bec2066b084c5a9b976fd040de93b2\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"5982e4d694354b39ac0b938f89a868c0\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://hintserviceacc.blob.local.azurestack.external/\",\r\n \"queue\": \"https://hintserviceacc.queue.local.azurestack.external/\",\r\n \"table\": \"https://hintserviceacc.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:22 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:22 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:22 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/hintserviceacc\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"hintserviceacc\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"5982e4d694354b39ac0b938f89a868c0\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:22 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/5982e4d694354b39ac0b938f89a868c0\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"c6af7a075fe64d35adf34651cee28960\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://hrphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://hrphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://hrphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:22 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:22 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:22 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/hrphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"hrphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"c6af7a075fe64d35adf34651cee28960\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:22 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/c6af7a075fe64d35adf34651cee28960\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"740b452ed8c94dc581edca12a19fad2c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ibcstaging.blob.local.azurestack.external/\",\r\n \"queue\": \"https://ibcstaging.queue.local.azurestack.external/\",\r\n \"table\": \"https://ibcstaging.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:00 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:00 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:00 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/ibcstaging\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"ibcstaging\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"740b452ed8c94dc581edca12a19fad2c\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:00 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/740b452ed8c94dc581edca12a19fad2c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"62b7f44913704d53bddeee884dfd57bf\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclprodbackup.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclprodbackup.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclprodbackup.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:40 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:40 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:40 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageAccounts/kvlclprodbackup\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvlclprodbackup\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"62b7f44913704d53bddeee884dfd57bf\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:40 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/62b7f44913704d53bddeee884dfd57bf\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"df99cdb4bf4e4900ad0b755d81ea182b\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata001.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata001.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata001.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:10 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:10 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:10 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageAccounts/kvlclproddata001\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvlclproddata001\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"df99cdb4bf4e4900ad0b755d81ea182b\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:10 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/df99cdb4bf4e4900ad0b755d81ea182b\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"02cfd6e2e9c84a70ba5c56d7c1955457\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata002.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata002.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata002.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:11 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:11 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:11 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageAccounts/kvlclproddata002\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvlclproddata002\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"02cfd6e2e9c84a70ba5c56d7c1955457\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:11 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/02cfd6e2e9c84a70ba5c56d7c1955457\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"1db4b47714aa413ca5946906b1b35753\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata003.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata003.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata003.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:12 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:12 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:12 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageAccounts/kvlclproddata003\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvlclproddata003\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"1db4b47714aa413ca5946906b1b35753\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:12 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/1db4b47714aa413ca5946906b1b35753\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"a5ab43038ead4b579fa4893f3620df51\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata004.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata004.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata004.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:12 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:12 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:12 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageAccounts/kvlclproddata004\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvlclproddata004\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"a5ab43038ead4b579fa4893f3620df51\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:12 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/a5ab43038ead4b579fa4893f3620df51\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"430bef19e7a6481e896d42d8b6acd18e\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata005.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata005.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata005.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:13 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:13 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:13 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageAccounts/kvlclproddata005\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvlclproddata005\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"430bef19e7a6481e896d42d8b6acd18e\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:13 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/430bef19e7a6481e896d42d8b6acd18e\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"51d83b74202a45bf92be8d1fe4b62d7c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvrphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvrphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvrphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:14 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:14 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:14 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/kvrphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvrphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"51d83b74202a45bf92be8d1fe4b62d7c\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:14 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/51d83b74202a45bf92be8d1fe4b62d7c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"ac2089a9551a481aaea1f9f567f68dec\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvstoreprodlcl.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvstoreprodlcl.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvstoreprodlcl.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:39 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:39 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:39 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageAccounts/kvstoreprodlcl\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvstoreprodlcl\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"ac2089a9551a481aaea1f9f567f68dec\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:39 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/ac2089a9551a481aaea1f9f567f68dec\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"5142147549c14b38a69edfe80eda0ddb\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvusage.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvusage.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvusage.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:41 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:41 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:41 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageAccounts/kvusage\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvusage\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"5142147549c14b38a69edfe80eda0ddb\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:41 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/5142147549c14b38a69edfe80eda0ddb\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"94120346959148b6bbb646280f395561\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvvnsproddata.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvvnsproddata.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvvnsproddata.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:04 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:04 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:04 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.keyvault/providers/Microsoft.Storage/storageAccounts/kvvnsproddata\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvvnsproddata\",\r\n \"tenantResourceGroupName\": \"system.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"94120346959148b6bbb646280f395561\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:04 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/94120346959148b6bbb646280f395561\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"3f7056fa43f34153bbccf3c424dc8419\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://md-000bvzpxsyogq4.blob.local.azurestack.external/\",\r\n \"queue\": \"https://md-000bvzpxsyogq4.queue.local.azurestack.external/\",\r\n \"table\": \"https://md-000bvzpxsyogq4.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:32:36 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:32:36 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:32:36 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/System.local/providers/Microsoft.Storage/storageAccounts/md-000bvzpxsyogq4\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"md-000bvzpxsyogq4\",\r\n \"tenantResourceGroupName\": \"System.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"3f7056fa43f34153bbccf3c424dc8419\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:32:36 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/3f7056fa43f34153bbccf3c424dc8419\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"7b7d6df983f0474d8a2929b62c6043db\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://md-000ti1db.blob.local.azurestack.external/\",\r\n \"queue\": \"https://md-000ti1db.queue.local.azurestack.external/\",\r\n \"table\": \"https://md-000ti1db.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:48:54 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:48:54 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:48:54 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/System.local/providers/Microsoft.Storage/storageAccounts/md-000ti1db\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"md-000ti1db\",\r\n \"tenantResourceGroupName\": \"System.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"7b7d6df983f0474d8a2929b62c6043db\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:48:54 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/7b7d6df983f0474d8a2929b62c6043db\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"ed4532a3330d41758a3e8b90bda208d9\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://mdmcachesvcacc00.blob.local.azurestack.external/\",\r\n \"queue\": \"https://mdmcachesvcacc00.queue.local.azurestack.external/\",\r\n \"table\": \"https://mdmcachesvcacc00.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:16 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:16 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:16 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/mdmcachesvcacc00\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"mdmcachesvcacc00\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"ed4532a3330d41758a3e8b90bda208d9\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:16 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/ed4532a3330d41758a3e8b90bda208d9\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"944148a44cbd4b34856689c2508e7c37\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://mdmcachesvcacc01.blob.local.azurestack.external/\",\r\n \"queue\": \"https://mdmcachesvcacc01.queue.local.azurestack.external/\",\r\n \"table\": \"https://mdmcachesvcacc01.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:17 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:17 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:17 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/mdmcachesvcacc01\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"mdmcachesvcacc01\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"944148a44cbd4b34856689c2508e7c37\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:17 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/944148a44cbd4b34856689c2508e7c37\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"3524ef087be34c7595c4ed54bc196b2b\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://mdmcachesvcacc02.blob.local.azurestack.external/\",\r\n \"queue\": \"https://mdmcachesvcacc02.queue.local.azurestack.external/\",\r\n \"table\": \"https://mdmcachesvcacc02.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:17 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:17 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:17 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/mdmcachesvcacc02\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"mdmcachesvcacc02\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"3524ef087be34c7595c4ed54bc196b2b\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:17 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/3524ef087be34c7595c4ed54bc196b2b\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"30cebc847e884d6da43ee24b1ef3f4f7\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://mdmcachesvcacc03.blob.local.azurestack.external/\",\r\n \"queue\": \"https://mdmcachesvcacc03.queue.local.azurestack.external/\",\r\n \"table\": \"https://mdmcachesvcacc03.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:18 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:18 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:18 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/mdmcachesvcacc03\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"mdmcachesvcacc03\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"30cebc847e884d6da43ee24b1ef3f4f7\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:18 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/30cebc847e884d6da43ee24b1ef3f4f7\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"f5362a7ac8da4678a21176809b2e577d\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://mdmcachesvcacc04.blob.local.azurestack.external/\",\r\n \"queue\": \"https://mdmcachesvcacc04.queue.local.azurestack.external/\",\r\n \"table\": \"https://mdmcachesvcacc04.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:21 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:21 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:21 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/mdmcachesvcacc04\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"mdmcachesvcacc04\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"f5362a7ac8da4678a21176809b2e577d\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:21 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/f5362a7ac8da4678a21176809b2e577d\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"598f7339cc4a4713979f317a4c0c7467\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://mdmconfigacc.blob.local.azurestack.external/\",\r\n \"queue\": \"https://mdmconfigacc.queue.local.azurestack.external/\",\r\n \"table\": \"https://mdmconfigacc.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:27 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:27 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:27 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/mdmconfigacc\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"mdmconfigacc\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"598f7339cc4a4713979f317a4c0c7467\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:27 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/598f7339cc4a4713979f317a4c0c7467\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"c2f733330d144c308afe6d477cac04c8\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://metricsrpsa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://metricsrpsa.queue.local.azurestack.external/\",\r\n \"table\": \"https://metricsrpsa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:06 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:06 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:06 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.AzureMonitor/providers/Microsoft.Storage/storageAccounts/metricsrpsa\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"metricsrpsa\",\r\n \"tenantResourceGroupName\": \"system.local.AzureMonitor\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"c2f733330d144c308afe6d477cac04c8\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:06 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/c2f733330d144c308afe6d477cac04c8\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"b4003b09031f4779973792ee578bd9d7\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://metricsrpsaadmin.blob.local.azurestack.external/\",\r\n \"queue\": \"https://metricsrpsaadmin.queue.local.azurestack.external/\",\r\n \"table\": \"https://metricsrpsaadmin.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:08 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:08 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:08 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.AzureMonitor/providers/Microsoft.Storage/storageAccounts/metricsrpsaadmin\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"metricsrpsaadmin\",\r\n \"tenantResourceGroupName\": \"system.local.AzureMonitor\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"b4003b09031f4779973792ee578bd9d7\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:08 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/b4003b09031f4779973792ee578bd9d7\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"9ea9d696319f40c4bce8e74ae1714ae6\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://metricsstoreacc0.blob.local.azurestack.external/\",\r\n \"queue\": \"https://metricsstoreacc0.queue.local.azurestack.external/\",\r\n \"table\": \"https://metricsstoreacc0.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:23 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:23 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:23 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/metricsstoreacc0\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"metricsstoreacc0\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"9ea9d696319f40c4bce8e74ae1714ae6\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:23 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/9ea9d696319f40c4bce8e74ae1714ae6\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"8e83e5950cea4d8c980a24735861a11e\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://metricsstoreacc1.blob.local.azurestack.external/\",\r\n \"queue\": \"https://metricsstoreacc1.queue.local.azurestack.external/\",\r\n \"table\": \"https://metricsstoreacc1.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:24 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:24 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:24 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/metricsstoreacc1\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"metricsstoreacc1\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"8e83e5950cea4d8c980a24735861a11e\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:24 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/8e83e5950cea4d8c980a24735861a11e\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"703dc2d6c3fa434a9dc230fb87096826\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://metricsstoreacc2.blob.local.azurestack.external/\",\r\n \"queue\": \"https://metricsstoreacc2.queue.local.azurestack.external/\",\r\n \"table\": \"https://metricsstoreacc2.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:25 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:25 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:25 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/metricsstoreacc2\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"metricsstoreacc2\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"703dc2d6c3fa434a9dc230fb87096826\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:25 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/703dc2d6c3fa434a9dc230fb87096826\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"d2ad82d81a1342a6b9705a83792733a8\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://metricsstoreacc3.blob.local.azurestack.external/\",\r\n \"queue\": \"https://metricsstoreacc3.queue.local.azurestack.external/\",\r\n \"table\": \"https://metricsstoreacc3.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:25 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:25 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:25 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/metricsstoreacc3\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"metricsstoreacc3\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"d2ad82d81a1342a6b9705a83792733a8\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:25 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/d2ad82d81a1342a6b9705a83792733a8\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"1ab19101400a40488404bd16bea8e5d0\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://metricsstoreacc4.blob.local.azurestack.external/\",\r\n \"queue\": \"https://metricsstoreacc4.queue.local.azurestack.external/\",\r\n \"table\": \"https://metricsstoreacc4.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:26 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:26 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:26 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/metricsstoreacc4\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"metricsstoreacc4\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"1ab19101400a40488404bd16bea8e5d0\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:26 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/1ab19101400a40488404bd16bea8e5d0\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"2170af5ed61a4069b57f18e6a9a29cd2\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://monitoringrepositorysa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://monitoringrepositorysa.queue.local.azurestack.external/\",\r\n \"table\": \"https://monitoringrepositorysa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:49 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:49 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:49 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.AzureMonitor/providers/Microsoft.Storage/storageAccounts/monitoringrepositorysa\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"monitoringrepositorysa\",\r\n \"tenantResourceGroupName\": \"system.local.AzureMonitor\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"2170af5ed61a4069b57f18e6a9a29cd2\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:49 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/2170af5ed61a4069b57f18e6a9a29cd2\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"645c6b03d5cf41d98bbd2f39c41b036f\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://nrpeventsaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://nrpeventsaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://nrpeventsaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:05 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:05 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:05 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/nrpeventsaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"nrpeventsaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"645c6b03d5cf41d98bbd2f39c41b036f\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:05 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/645c6b03d5cf41d98bbd2f39c41b036f\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"4f42cba0545947218bb90e724f826eff\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://nrphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://nrphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://nrphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:05 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:05 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:05 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/nrphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"nrphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"4f42cba0545947218bb90e724f826eff\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:05 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/4f42cba0545947218bb90e724f826eff\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"8c857a44ac7b4e269fad63b294ee62b2\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://nrpusageaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://nrpusageaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://nrpusageaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:06 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:06 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:06 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/nrpusageaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"nrpusageaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"8c857a44ac7b4e269fad63b294ee62b2\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:06 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/8c857a44ac7b4e269fad63b294ee62b2\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"c4b9ab7014904681bee02c34bd751d7a\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://obometadata.blob.local.azurestack.external/\",\r\n \"queue\": \"https://obometadata.queue.local.azurestack.external/\",\r\n \"table\": \"https://obometadata.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:36 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:36 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:36 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.AzureMonitor/providers/Microsoft.Storage/storageAccounts/obometadata\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"obometadata\",\r\n \"tenantResourceGroupName\": \"system.local.AzureMonitor\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"c4b9ab7014904681bee02c34bd751d7a\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:36 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/c4b9ab7014904681bee02c34bd751d7a\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"2e4b8c28f8f747daa81cc57e8a7a1726\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://obometadataadmin.blob.local.azurestack.external/\",\r\n \"queue\": \"https://obometadataadmin.queue.local.azurestack.external/\",\r\n \"table\": \"https://obometadataadmin.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:37 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:37 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:37 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.AzureMonitor/providers/Microsoft.Storage/storageAccounts/obometadataadmin\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"obometadataadmin\",\r\n \"tenantResourceGroupName\": \"system.local.AzureMonitor\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"2e4b8c28f8f747daa81cc57e8a7a1726\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:37 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/2e4b8c28f8f747daa81cc57e8a7a1726\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"4d6d4612160d49eeafddc5d58badcadb\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://onboardrpdatasa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://onboardrpdatasa.queue.local.azurestack.external/\",\r\n \"table\": \"https://onboardrpdatasa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:44 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:44 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:44 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.AzureMonitor/providers/Microsoft.Storage/storageAccounts/onboardrpdatasa\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"onboardrpdatasa\",\r\n \"tenantResourceGroupName\": \"system.local.AzureMonitor\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"4d6d4612160d49eeafddc5d58badcadb\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:44 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/4d6d4612160d49eeafddc5d58badcadb\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"55e0c73a2365487e94cba8225fd85b8c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://portalhostingrp.blob.local.azurestack.external/\",\r\n \"queue\": \"https://portalhostingrp.queue.local.azurestack.external/\",\r\n \"table\": \"https://portalhostingrp.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:29 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:29 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:29 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/portalhostingrp\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"portalhostingrp\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"55e0c73a2365487e94cba8225fd85b8c\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:29 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/55e0c73a2365487e94cba8225fd85b8c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"64c8d5e5df6a42c694dbd61262b52191\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://publicportalhostingrp.blob.local.azurestack.external/\",\r\n \"queue\": \"https://publicportalhostingrp.queue.local.azurestack.external/\",\r\n \"table\": \"https://publicportalhostingrp.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/publicportalhostingrp\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"publicportalhostingrp\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"64c8d5e5df6a42c694dbd61262b52191\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/64c8d5e5df6a42c694dbd61262b52191\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"8501902ca0cd4e63a0da28da03e02f4c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://publicsystemevents.blob.local.azurestack.external/\",\r\n \"queue\": \"https://publicsystemevents.queue.local.azurestack.external/\",\r\n \"table\": \"https://publicsystemevents.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:27 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:27 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:27 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/publicsystemevents\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"publicsystemevents\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"8501902ca0cd4e63a0da28da03e02f4c\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:27 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/8501902ca0cd4e63a0da28da03e02f4c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"b06d2f9e795041a5b8038f964392fd51\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://publicsystemportal.blob.local.azurestack.external/\",\r\n \"queue\": \"https://publicsystemportal.queue.local.azurestack.external/\",\r\n \"table\": \"https://publicsystemportal.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/publicsystemportal\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"publicsystemportal\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"b06d2f9e795041a5b8038f964392fd51\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/b06d2f9e795041a5b8038f964392fd51\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"9c22af53e46244699a2f8187ae4c5e76\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sbrphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://sbrphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://sbrphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:02 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:02 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:02 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/sbrphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"sbrphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"9c22af53e46244699a2f8187ae4c5e76\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:02 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/9c22af53e46244699a2f8187ae4c5e76\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"2f1daa81bc224ed68b556593d3b5b5df\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://secondhintserviceacc.blob.local.azurestack.external/\",\r\n \"queue\": \"https://secondhintserviceacc.queue.local.azurestack.external/\",\r\n \"table\": \"https://secondhintserviceacc.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:23 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:23 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:23 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/secondhintserviceacc\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"secondhintserviceacc\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"2f1daa81bc224ed68b556593d3b5b5df\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:23 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/2f1daa81bc224ed68b556593d3b5b5df\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"51068b684780438ca233303c1969dede\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sfphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://sfphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://sfphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:46 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:46 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:46 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/sfphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"sfphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"51068b684780438ca233303c1969dede\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:46 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/51068b684780438ca233303c1969dede\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"05db89bad35341c6ae0748c814cb5fca\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srpeventsaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srpeventsaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srpeventsaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:33 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:33 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:33 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/srpeventsaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"srpeventsaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"05db89bad35341c6ae0748c814cb5fca\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:33 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/05db89bad35341c6ae0748c814cb5fca\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"874ac5b42e9d4c9b9c8c1ca4adc15adf\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:32 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:32 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:32 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/srphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"srphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"874ac5b42e9d4c9b9c8c1ca4adc15adf\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:32 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/874ac5b42e9d4c9b9c8c1ca4adc15adf\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"36c7de49f5a94efd9dc2fff290e4f92f\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srphyadmaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srphyadmaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srphyadmaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:38 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:38 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:38 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/srphyadmaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"srphyadmaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"36c7de49f5a94efd9dc2fff290e4f92f\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:38 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/36c7de49f5a94efd9dc2fff290e4f92f\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"1500aae54fa64b66bb994e8b6e09c9c1\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srphytenaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srphytenaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srphytenaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:38 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:38 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:38 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/srphytenaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"srphytenaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"1500aae54fa64b66bb994e8b6e09c9c1\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:38 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/1500aae54fa64b66bb994e8b6e09c9c1\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"81c8020224744cdc83905cf9b60d7859\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srpusageaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srpusageaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srpusageaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:37 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:37 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:37 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/srpusageaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"srpusageaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"81c8020224744cdc83905cf9b60d7859\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:37 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/81c8020224744cdc83905cf9b60d7859\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"263c3a055c2f48d0a99703739ace8142\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://systemevents.blob.local.azurestack.external/\",\r\n \"queue\": \"https://systemevents.queue.local.azurestack.external/\",\r\n \"table\": \"https://systemevents.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:43 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:43 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:43 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/systemevents\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"systemevents\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"263c3a055c2f48d0a99703739ace8142\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:43 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/263c3a055c2f48d0a99703739ace8142\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"ca8b593ba5374c3082ab0ed50bb81a41\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://systemgallery.blob.local.azurestack.external/\",\r\n \"queue\": \"https://systemgallery.queue.local.azurestack.external/\",\r\n \"table\": \"https://systemgallery.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/systemgallery\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"systemgallery\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"ca8b593ba5374c3082ab0ed50bb81a41\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/ca8b593ba5374c3082ab0ed50bb81a41\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"eb3455a164b941939a508671b4b642a5\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://systemportal.blob.local.azurestack.external/\",\r\n \"queue\": \"https://systemportal.queue.local.azurestack.external/\",\r\n \"table\": \"https://systemportal.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:33 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:33 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:33 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/systemportal\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"systemportal\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"eb3455a164b941939a508671b4b642a5\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:33 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/eb3455a164b941939a508671b4b642a5\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"eb9c63f8fa9c427084c8e5d00d27ded3\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://systemtemp.blob.local.azurestack.external/\",\r\n \"queue\": \"https://systemtemp.queue.local.azurestack.external/\",\r\n \"table\": \"https://systemtemp.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:24 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:24 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:24 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/systemtemp\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"systemtemp\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"eb9c63f8fa9c427084c8e5d00d27ded3\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:24 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/eb9c63f8fa9c427084c8e5d00d27ded3\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"2b55957ef12143b5a0d9fb79d74229fd\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://tenantextaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://tenantextaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://tenantextaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/tenantextaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"tenantextaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"2b55957ef12143b5a0d9fb79d74229fd\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/2b55957ef12143b5a0d9fb79d74229fd\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"2a194b24858443e39e23ebf319931d01\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://tenantextadminaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://tenantextadminaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://tenantextadminaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/tenantextadminaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"tenantextadminaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"2a194b24858443e39e23ebf319931d01\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/2a194b24858443e39e23ebf319931d01\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"b742f01b2f4b426b9323c3e11007abf9\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://updateadminaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://updateadminaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://updateadminaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:50:59 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:50:59 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:50:59 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/updateadminaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"updateadminaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"b742f01b2f4b426b9323c3e11007abf9\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:50:59 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/b742f01b2f4b426b9323c3e11007abf9\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"8b64694a95ae4b30ab1aec8b83bfa9e1\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://urphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://urphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://urphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:50:57 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:50:57 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:50:57 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/urphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"urphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"8b64694a95ae4b30ab1aec8b83bfa9e1\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:50:57 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/8b64694a95ae4b30ab1aec8b83bfa9e1\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"0a20e097132d4e5195f7a60f95da344b\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vhdsto2e4caea5.blob.local.azurestack.external/\",\r\n \"queue\": \"https://vhdsto2e4caea5.queue.local.azurestack.external/\",\r\n \"table\": \"https://vhdsto2e4caea5.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:27:02 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:27:02 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:27:02 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/vhdrgb378517a/providers/Microsoft.Storage/storageAccounts/vhdsto2e4caea5\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"vhdsto2e4caea5\",\r\n \"tenantResourceGroupName\": \"vhdrgb378517a\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"0a20e097132d4e5195f7a60f95da344b\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:27:02 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/0a20e097132d4e5195f7a60f95da344b\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"98acf4fd7ea34d8ea3317df65d63d25d\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vhdstod2b8b431.blob.local.azurestack.external/\",\r\n \"queue\": \"https://vhdstod2b8b431.queue.local.azurestack.external/\",\r\n \"table\": \"https://vhdstod2b8b431.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:26:35 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:26:35 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:26:35 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/vhdrgc2fedfc7/providers/Microsoft.Storage/storageAccounts/vhdstod2b8b431\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"vhdstod2b8b431\",\r\n \"tenantResourceGroupName\": \"vhdrgc2fedfc7\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"98acf4fd7ea34d8ea3317df65d63d25d\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:26:35 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/98acf4fd7ea34d8ea3317df65d63d25d\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"8130056ffeee44abbbd26af6ef5d6778\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vhdstoebddd5a1.blob.local.azurestack.external/\",\r\n \"queue\": \"https://vhdstoebddd5a1.queue.local.azurestack.external/\",\r\n \"table\": \"https://vhdstoebddd5a1.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:27:00 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:27:00 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:27:00 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/vhdrg2d8dca5e/providers/Microsoft.Storage/storageAccounts/vhdstoebddd5a1\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"vhdstoebddd5a1\",\r\n \"tenantResourceGroupName\": \"vhdrg2d8dca5e\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"8130056ffeee44abbbd26af6ef5d6778\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:27:00 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/8130056ffeee44abbbd26af6ef5d6778\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"3473c8d4b609420281c06539af72e25b\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://wasphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://wasphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://wasphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:20 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:20 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:20 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/wasphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"wasphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"3473c8d4b609420281c06539af72e25b\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:20 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/3473c8d4b609420281c06539af72e25b\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/0180624c67694706a4066782d83057a5?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cy8wMTgwNjI0YzY3Njk0NzA2YTQwNjY3ODJkODMwNTdhNT9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts/161d2969192b4330afd8c50ec70be923?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzLzE2MWQyOTY5MTkyYjQzMzBhZmQ4YzUwZWM3MGJlOTIzP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a405bc38-b062-4d4d-967f-ff18965642fc" + "871e5611-4526-4435-9de8-7048881b28a2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/0180624c67694706a4066782d83057a5\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"0180624c67694706a4066782d83057a5\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata004.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata004.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata004.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageaccounts/adminkvlclproddata004\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata004\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"0180624c67694706a4066782d83057a5\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:27.41\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1490" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:19 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "30724f33-65df-4fd3-bcf5-ea7b3c9a62bb" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvvW+CYuo4GG5mpnymannbCIase0Ev124qwEzfuWAA/zmWgTSFOOjBXGqDQI0Q5P/Yg6AzKxsMXcmu89iXArwRKQu+2ebewyRlZRkFONBCnbswLx7cf7pYWUShpWcLt2VW7z8wxMruDE3KJJtP++EA" - ], - "x-ms-request-id": [ - "6687ebf8-2e04-456b-b3e5-0ddf8d83f71d" - ], - "x-ms-correlation-request-id": [ - "dd3ee7c3-ee54-4459-927d-107514d1cec8" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDTSc/qmw9OqpkJ6fuWCjuvOi/VSuxr9wjYfUIakok3m0Fmv1RJKlaiKcmjwFp7fTHTek01oeldW68lt7yh6RuDIYLX9hPxtzcmguNz7Ncl9Dnbdm6et3mts4AY3RR5QuWyYRHQshCAI+C2gy+vHL" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14857" + "14653" + ], + "x-ms-request-id": [ + "30724f33-65df-4fd3-bcf5-ea7b3c9a62bb" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193120Z:dd3ee7c3-ee54-4459-927d-107514d1cec8" + "LOCAL:20190917T022941Z:30724f33-65df-4fd3-bcf5-ea7b3c9a62bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:41 GMT" + ], + "Content-Length": [ + "1657" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"161d2969192b4330afd8c50ec70be923\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://112srp02test112.blob.local.azurestack.external/\",\r\n \"queue\": \"https://112srp02test112.queue.local.azurestack.external/\",\r\n \"table\": \"https://112srp02test112.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 7:43:30 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 7:43:30 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 7:43:30 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/112srp02test112\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"112srp02test112\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"161d2969192b4330afd8c50ec70be923\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/6/2019 7:43:30 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/161d2969192b4330afd8c50ec70be923\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "9ad61516-995c-4873-a21f-7e44904f0ed2" + "SubscriptionId": "047e87e6-327f-4c44-8184-fb6bc35e8b38" } } \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetStorageQuota.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetStorageQuota.json index 1510df4386b0..6e9579dafbe0 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetStorageQuota.json +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetStorageQuota.json @@ -1,136 +1,140 @@ { "Entries": [ { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/providers/Microsoft.Storage.Admin/locations/local/quotas?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzP2FwaS12ZXJzaW9uPTIwMTUtMTItMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9698b7f4-8de2-4d5c-8efd-f3ecd5ec9888" + "1d5100b0-a858-49ef-a42d-844fa1541dcd" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/providers/Microsoft.Storage.Admin/locations/local/quotas/Default Quota\",\r\n \"name\": \"local/Default Quota\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 20,\r\n \"capacityInGb\": 2048\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "403" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:25 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "a4a22aea-0a62-4031-b5b8-65378acddab7" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv6OnahnPz/PNdMDVaTeX3FVEon8ngsWhmh1vIDrpxOyfcmIp6+vI6sln+qNp1LahsP1Zv0zyjGbekilHtAwlEN4S35EdDdWT6MaegHESLomsf05zrvnU1DqIkYwYfI5xrPmFKSuR55lqzVYTmAG6F" - ], - "x-ms-request-id": [ - "1c492768-fb47-4d6e-bb68-f1e697745cc2" - ], - "x-ms-correlation-request-id": [ - "c498f9cc-71af-4118-b955-3c6dbb5cb799" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvIrX/FlutKxwSnaSubTT4oeTseactfHBApiMK+08MKsBlwL7ZwxRCEkxYS5XU5cGIvI3J+IWWjbEc3ZT1GvkA4Y1MZvDF4GkGHj3j7Hdz8GRIMB8r4bn3Z0ww/1LAW9SgBu4jG93B/zptWyAN2mzM" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14811" + "14765" + ], + "x-ms-request-id": [ + "a4a22aea-0a62-4031-b5b8-65378acddab7" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193126Z:c498f9cc-71af-4118-b955-3c6dbb5cb799" + "LOCAL:20190917T022927Z:a4a22aea-0a62-4031-b5b8-65378acddab7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:26 GMT" + ], + "Content-Length": [ + "2848" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/ascanstorquota391\",\r\n \"name\": \"local/ascanstorquota391\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 200,\r\n \"capacityInGb\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/Basic\",\r\n \"name\": \"local/Basic\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 2,\r\n \"capacityInGb\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/Default Quota\",\r\n \"name\": \"local/Default Quota\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 20,\r\n \"capacityInGb\": 2048\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/EventRPBVTTenantSubscriptionQuota\",\r\n \"name\": \"local/EventRPBVTTenantSubscriptionQuota\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 10000,\r\n \"capacityInGb\": 500000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/NewStorageQuota1\",\r\n \"name\": \"local/NewStorageQuota1\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 10000,\r\n \"capacityInGb\": 200000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/Quota_2cccdb26-9cbd-4627-aab9-dd261d75da57\",\r\n \"name\": \"local/Quota_2cccdb26-9cbd-4627-aab9-dd261d75da57\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 20,\r\n \"capacityInGb\": 500\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/Quota_9d7a22e1-6623-41e5-85f8-88d1bd02d5c6\",\r\n \"name\": \"local/Quota_9d7a22e1-6623-41e5-85f8-88d1bd02d5c6\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 20,\r\n \"capacityInGb\": 500\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/providers/Microsoft.Storage.Admin/locations/local/quotas/Default%20Quota?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL0RlZmF1bHQlMjBRdW90YT9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/ascanstorquota391?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL2FzY2Fuc3RvcnF1b3RhMzkxP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "510eaf7f-9a82-4821-99e2-d11ddbe72c73" + "7ee16455-dd85-48a3-80c3-53015544a77d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/providers/Microsoft.Storage.Admin/locations/local/quotas/Default Quota\",\r\n \"name\": \"local/Default Quota\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 20,\r\n \"capacityInGb\": 2048\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "338" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:25 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "08392cee-a5b0-4c8b-b030-83a4add2032d" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvpmqRfJjP2sNDlVVbZxiio9ZbWxBnB7UaNctr7D+vluR4A0kclPMoPTSUz/TjKqb7TAnkiL2P5/toIyWeclEkdT2qxzBT/is2v50uq7qJkj1//tlQq/Zw6UkxJoCf9XOypsaRleVpP/tdKCWJeKGp" - ], - "x-ms-request-id": [ - "12a79452-9cf0-4747-9a89-17a85630f5c2" - ], - "x-ms-correlation-request-id": [ - "cc80107c-d64c-4480-b594-e6225e65e197" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvAeic0ClJ5+assHZAJOcFfp7bugwty9GRT5QOY4CJS2lBDIkN60Oz7Bk1sget8a2cS6etjh2n8EBmFQq+hCt0hlxJUe3pVbuWbT0OoMHe/DMO0TnJnZBY457v05oFZ1dn5A6IIPiZ8Iy8LWVeto8q" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14810" + "14764" + ], + "x-ms-request-id": [ + "08392cee-a5b0-4c8b-b030-83a4add2032d" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193126Z:cc80107c-d64c-4480-b594-e6225e65e197" + "LOCAL:20190917T022927Z:08392cee-a5b0-4c8b-b030-83a4add2032d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:26 GMT" + ], + "Content-Length": [ + "347" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/ascanstorquota391\",\r\n \"name\": \"local/ascanstorquota391\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 200,\r\n \"capacityInGb\": 1000\r\n }\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "9ad61516-995c-4873-a21f-7e44904f0ed2" + "SubscriptionId": "047e87e6-327f-4c44-8184-fb6bc35e8b38" } } \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetTableService.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetTableService.json deleted file mode 100644 index 915c4590d7a6..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/GetTableService.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "52a79d23-1dcf-4547-9770-28c0728cc70d" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"type\": \"Microsoft.Storage.Admin/farms\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"version\": \"2015-12-01-preview\",\r\n \"settingsStore\": \"AzS-ACS01.azurestack.local:19000\",\r\n \"settings\": {\r\n \"settingsPollingIntervalInSecond\": 60,\r\n \"retentionPeriodForDeletedStorageAccountsInDays\": 0,\r\n \"hostStyleHttpPort\": 0,\r\n \"hostStyleHttpsPort\": 0,\r\n \"corsAllowedOriginsList\": \"https://adminportal.local.azurestack.external/;https://adminportal.local.azurestack.external:12649/;https://portal.local.azurestack.external/;https://portal.local.azurestack.external:12649/\",\r\n \"dataCenterUriHostSuffixes\": \"local.azurestack.external\",\r\n \"bandwidthThrottleIsEnabled\": false,\r\n \"usageCollectionIntervalInSeconds\": 10,\r\n \"feedbackRefreshIntervalInSeconds\": 10,\r\n \"numberOfAccountsToSync\": 20,\r\n \"defaultThrottleProbabilityDecayIntervalInSeconds\": 240,\r\n \"gracePeriodForFullThrottlingInRefreshIntervals\": 3,\r\n \"gracePeriodMaxThrottleProbability\": 0.9,\r\n \"overallRequestThresholdInTps\": 10000.0,\r\n \"defaultRequestThresholdInTps\": 200.0,\r\n \"minimumRequestThresholdInTps\": 1.0,\r\n \"toleranceFactorForTps\": 2.0,\r\n \"overallIngressThresholdInGbps\": 25.0,\r\n \"defaultIngressThresholdInGbps\": 2.0,\r\n \"minimumIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIngress\": 2.0,\r\n \"overallIntranetIngressThresholdInGbps\": 25.0,\r\n \"defaultIntranetIngressThresholdInGbps\": 2.0,\r\n \"minimumIntranetIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetIngress\": 2.0,\r\n \"overallEgressThresholdInGbps\": 30.0,\r\n \"defaultEgressThresholdInGbps\": 3.0,\r\n \"minimumEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForEgress\": 2.0,\r\n \"overallIntranetEgressThresholdInGbps\": 30.0,\r\n \"defaultIntranetEgressThresholdInGbps\": 3.0,\r\n \"minimumIntranetEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetEgress\": 2.0,\r\n \"overallTotalIngressThresholdInGbps\": 50.0,\r\n \"defaultTotalIngressThresholdInGbps\": 5.0,\r\n \"minimumTotalIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalIngress\": 2.0,\r\n \"overallTotalEgressThresholdInGbps\": 50.0,\r\n \"defaultTotalEgressThresholdInGbps\": 5.0,\r\n \"minimumTotalEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalEgress\": 2.0\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2888" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:22 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvIYbdqoKuqwPMwBFEF8eYcLj4nOr8Z5nWdqRPSl2esHSsDUnCIe8wWjVFF+FpqReXxIsH9/EU7H+EQVcAnWrT7aUgsEPUd5SqieTGRczq+jiN1E084WQRn5Z9GDMPTuc/DXDmZ2Ap7mc8RKr0Sh8i" - ], - "x-ms-request-id": [ - "7f8e7ec6-652d-47ba-8a2f-2d35321c0008" - ], - "x-ms-correlation-request-id": [ - "25b804e8-ac0e-48c2-8c3a-26fb37f4a902" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14844" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193122Z:25b804e8-ac0e-48c2-8c3a-26fb37f4a902" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/tableservices/default?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3RhYmxlc2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d0d8cdee-bb78-4adc-a109-070167387935" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/tableservices/default\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af/default\",\r\n \"type\": \"Microsoft.Storage.Admin/farms/tableservices\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"settings\": {\r\n \"frontEndHttpListenPort\": 11002,\r\n \"frontEndHttpsListenPort\": 11102,\r\n \"frontEndCallbackThreadsCount\": 1600,\r\n \"frontEndCpuBasedKeepAliveThrottlingEnabled\": true,\r\n \"frontEndCpuBasedKeepAliveThrottlingPercentCpuThreshold\": 90.0,\r\n \"frontEndCpuBasedKeepAliveThrottlingPercentRequestsToThrottle\": 2.0,\r\n \"frontEndCpuBasedKeepAliveThrottlingCpuMonitorIntervalInSeconds\": 5,\r\n \"frontEndMemoryThrottlingEnabled\": true,\r\n \"frontEndMaxMillisecondsBetweenMemorySamples\": 10000,\r\n \"frontEndMemoryThrottleThresholdSettings\": \"5,100,0;7,50,0;10,25,0;15,0,25;\",\r\n \"frontEndMinThreadPoolThreads\": 1850,\r\n \"frontEndThreadPoolBasedKeepAliveIOCompletionThreshold\": 1500,\r\n \"frontEndThreadPoolBasedKeepAliveWorkerThreadThreshold\": 1500,\r\n \"frontEndThreadPoolBasedKeepAliveMonitorIntervalInSeconds\": 30,\r\n \"frontEndThreadPoolBasedKeepAlivePercentage\": 10.0,\r\n \"frontEndUseSlaTimeInAvailability\": true\r\n },\r\n \"version\": \"1.0\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1374" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:22 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvviNA9GCNIEtE7OjWDg+dykJlEVDgVtmTGXovrjua5y1xzA24lAGjjaIvj+8ao3c6ypfh9xq0hkmWb80ylc0X2dftBwH2U0gy+XOVt54nc5iE/m636mBOuitOoycpnzu7MkSJ0wKI9nO+LpAJO5v5" - ], - "x-ms-request-id": [ - "4a9b2d0f-f14b-4301-ac59-390ec7d492df" - ], - "x-ms-correlation-request-id": [ - "a21ef3b0-acd5-4f73-86cc-e321f008358a" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14843" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193122Z:a21ef3b0-acd5-4f73-86cc-e321f008358a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "SubscriptionId": "9ad61516-995c-4873-a21f-7e44904f0ed2" - } -} \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllAcquisitions.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllAcquisitions.json index f9a95776e944..06d38067eea8 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllAcquisitions.json +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllAcquisitions.json @@ -1,136 +1,74 @@ { "Entries": [ { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/acquisitions?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvYWNxdWlzaXRpb25zP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "843acd22-1d53-429c-9dc6-1f7b44f28c20" + "4b1bbcee-1ec7-44f3-be8c-ac1c5659e08b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"type\": \"Microsoft.Storage.Admin/farms\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"version\": \"2015-12-01-preview\",\r\n \"settingsStore\": \"AzS-ACS01.azurestack.local:19000\",\r\n \"settings\": {\r\n \"settingsPollingIntervalInSecond\": 60,\r\n \"retentionPeriodForDeletedStorageAccountsInDays\": 0,\r\n \"hostStyleHttpPort\": 0,\r\n \"hostStyleHttpsPort\": 0,\r\n \"corsAllowedOriginsList\": \"https://adminportal.local.azurestack.external/;https://adminportal.local.azurestack.external:12649/;https://portal.local.azurestack.external/;https://portal.local.azurestack.external:12649/\",\r\n \"dataCenterUriHostSuffixes\": \"local.azurestack.external\",\r\n \"bandwidthThrottleIsEnabled\": false,\r\n \"usageCollectionIntervalInSeconds\": 10,\r\n \"feedbackRefreshIntervalInSeconds\": 10,\r\n \"numberOfAccountsToSync\": 20,\r\n \"defaultThrottleProbabilityDecayIntervalInSeconds\": 240,\r\n \"gracePeriodForFullThrottlingInRefreshIntervals\": 3,\r\n \"gracePeriodMaxThrottleProbability\": 0.9,\r\n \"overallRequestThresholdInTps\": 10000.0,\r\n \"defaultRequestThresholdInTps\": 200.0,\r\n \"minimumRequestThresholdInTps\": 1.0,\r\n \"toleranceFactorForTps\": 2.0,\r\n \"overallIngressThresholdInGbps\": 25.0,\r\n \"defaultIngressThresholdInGbps\": 2.0,\r\n \"minimumIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIngress\": 2.0,\r\n \"overallIntranetIngressThresholdInGbps\": 25.0,\r\n \"defaultIntranetIngressThresholdInGbps\": 2.0,\r\n \"minimumIntranetIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetIngress\": 2.0,\r\n \"overallEgressThresholdInGbps\": 30.0,\r\n \"defaultEgressThresholdInGbps\": 3.0,\r\n \"minimumEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForEgress\": 2.0,\r\n \"overallIntranetEgressThresholdInGbps\": 30.0,\r\n \"defaultIntranetEgressThresholdInGbps\": 3.0,\r\n \"minimumIntranetEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetEgress\": 2.0,\r\n \"overallTotalIngressThresholdInGbps\": 50.0,\r\n \"defaultTotalIngressThresholdInGbps\": 5.0,\r\n \"minimumTotalIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalIngress\": 2.0,\r\n \"overallTotalEgressThresholdInGbps\": 50.0,\r\n \"defaultTotalEgressThresholdInGbps\": 5.0,\r\n \"minimumTotalEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalEgress\": 2.0\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "2888" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:23 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "a8754375-ee88-47d2-ac88-55e6eaf26d7c" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvbr/Fgw9g7xZryRAGoXf15FCsrSAyvCzWbdt+hCoWl9Py0+9d5fgzVdslUUZMOXACGJNMagsBGg9COKh6zi80DcITMcYajXy1qSIHCZ7/sVfEosTwRM9W1HJiq/zZGLA9GtigoD38Pu4/1wNGr8Kk" - ], - "x-ms-request-id": [ - "d7c04419-c165-465e-83a2-fac87e195505" - ], - "x-ms-correlation-request-id": [ - "45fb5956-24c8-419f-9d67-705f2d408d96" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvN2H3/CGWsy1supBx1F6d8RbrQx4WorYTuIEVFAJLcS74cQiHeJZCzuN4kYQh7TVGGghS6h9vT6SiNd5f4tM+69QB+mc22QaVLT+KrkzzDNM9h4UQhjRNkhWq6H7vPifYeeJr/OleGJ3TMTvq6t0n" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14833" + "14766" + ], + "x-ms-request-id": [ + "a8754375-ee88-47d2-ac88-55e6eaf26d7c" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193123Z:45fb5956-24c8-419f-9d67-705f2d408d96" + "LOCAL:20190917T022926Z:a8754375-ee88-47d2-ac88-55e6eaf26d7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/acquisitions?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL2FjcXVpc2l0aW9ucz9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a312c105-1b2c-4b10-86ae-a9e18fd22dc6" ], - "accept-language": [ - "en-US" + "Date": [ + "Tue, 17 Sep 2019 02:29:26 GMT" ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "[]", - "ResponseHeaders": { "Content-Length": [ - "2" + "2958" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:23 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv7UFG1XLTt7iPc2U9EROdTFOUv2UY/1MV12YEuExwhMkoz4V7arPzRP6JdV4dHKZ09rjgHrrtHjI9ko0f6H7bqsEX9QVq0vX3sCMYi64BhYRGL142NmHHTsJSNH5TuedmByZVPlcMRXQeMN35tkz3" - ], - "x-ms-request-id": [ - "ce5e0dd7-704a-4c83-8d9b-746e9234e527" - ], - "x-ms-correlation-request-id": [ - "0b410b30-5ade-4fc5-ac4a-50a05ce73ec5" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14832" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193123Z:0b410b30-5ade-4fc5-ac4a-50a05ce73ec5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"susbcriptionid\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"storageaccount\": \"md-000ti1db\",\r\n \"container\": \"7f1a91c5a6684f6dbdbb272a20c37a2d\",\r\n \"blob\": \"abcd.vhd\",\r\n \"acquisitionid\": \"aba2dee6-0a90-479a-9caa-a04b1a13db9b\",\r\n \"filePath\": \"C:\\\\ClusterStorage\\\\SU1_Volume\\\\Shares\\\\SU1_ObjStore\\\\BlobService\\\\Partition_00001_{09451176-E87E-4610-A057-AFC103B3691A}\\\\md-000ti1db\\\\7f1a91c5a6_116\\\\f8b6b5ac-ecfc-4534-9050-837aa46bb033.vhd\",\r\n \"filePathUnc\": \"\\\\\\\\SU1FileServer.azurestack.local\\\\SU1_ObjStore\\\\BlobService\\\\Partition_00001_{09451176-E87E-4610-A057-AFC103B3691A}\\\\md-000ti1db\\\\7f1a91c5a6_116\\\\f8b6b5ac-ecfc-4534-9050-837aa46bb033.vhd\",\r\n \"maximumblobsize\": 136365212160\r\n },\r\n {\r\n \"susbcriptionid\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"storageaccount\": \"md-000ti1db\",\r\n \"container\": \"8365a74d7033438dbc918da452bce807\",\r\n \"blob\": \"abcd.vhd\",\r\n \"acquisitionid\": \"d3fae079-1c16-432f-b2c4-5288089ed6b3\",\r\n \"filePath\": \"C:\\\\ClusterStorage\\\\SU1_Volume\\\\Shares\\\\SU1_ObjStore\\\\BlobService\\\\Partition_00001_{09451176-E87E-4610-A057-AFC103B3691A}\\\\md-000ti1db\\\\8365a74d70_11a\\\\dadbd9ab-3905-4453-b2e7-9efb61269c00.vhd\",\r\n \"filePathUnc\": \"\\\\\\\\SU1FileServer.azurestack.local\\\\SU1_ObjStore\\\\BlobService\\\\Partition_00001_{09451176-E87E-4610-A057-AFC103B3691A}\\\\md-000ti1db\\\\8365a74d70_11a\\\\dadbd9ab-3905-4453-b2e7-9efb61269c00.vhd\",\r\n \"maximumblobsize\": 5368709632\r\n },\r\n {\r\n \"susbcriptionid\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"storageaccount\": \"md-000ti1db\",\r\n \"container\": \"bc590dddcd71406581bba759510d48c3\",\r\n \"blob\": \"abcd.vhd\",\r\n \"acquisitionid\": \"2a0b7365-6a04-41b4-93a7-643eee6f1a5e\",\r\n \"filePath\": \"C:\\\\ClusterStorage\\\\SU1_Volume\\\\Shares\\\\SU1_ObjStore\\\\BlobService\\\\Partition_00001_{09451176-E87E-4610-A057-AFC103B3691A}\\\\md-000ti1db\\\\bc590dddcd_117\\\\c12f5481-446e-4b74-81d9-2a7da55bd4d7.vhd\",\r\n \"filePathUnc\": \"\\\\\\\\SU1FileServer.azurestack.local\\\\SU1_ObjStore\\\\BlobService\\\\Partition_00001_{09451176-E87E-4610-A057-AFC103B3691A}\\\\md-000ti1db\\\\bc590dddcd_117\\\\c12f5481-446e-4b74-81d9-2a7da55bd4d7.vhd\",\r\n \"maximumblobsize\": 136365212160\r\n },\r\n {\r\n \"susbcriptionid\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"storageaccount\": \"md-000ti1db\",\r\n \"container\": \"eec41a93821747d3880975038fa193da\",\r\n \"blob\": \"abcd.vhd\",\r\n \"acquisitionid\": \"d3fae079-1c16-432f-b2c4-5288089ed6b3\",\r\n \"filePath\": \"C:\\\\ClusterStorage\\\\SU1_Volume\\\\Shares\\\\SU1_ObjStore\\\\BlobService\\\\Partition_00001_{09451176-E87E-4610-A057-AFC103B3691A}\\\\md-000ti1db\\\\eec41a9382_119\\\\52baa99e-0ec3-4df6-8d62-06902d9e98b9.vhd\",\r\n \"filePathUnc\": \"\\\\\\\\SU1FileServer.azurestack.local\\\\SU1_ObjStore\\\\BlobService\\\\Partition_00001_{09451176-E87E-4610-A057-AFC103B3691A}\\\\md-000ti1db\\\\eec41a9382_119\\\\52baa99e-0ec3-4df6-8d62-06902d9e98b9.vhd\",\r\n \"maximumblobsize\": 5368709632\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "9ad61516-995c-4873-a21f-7e44904f0ed2" + "SubscriptionId": "047e87e6-327f-4c44-8184-fb6bc35e8b38" } } \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllFarmMetricDefinitions.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllFarmMetricDefinitions.json deleted file mode 100644 index 689cb4a91ea6..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllFarmMetricDefinitions.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "85dd34ab-60da-4104-a198-0fa00ccb0d7b" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"type\": \"Microsoft.Storage.Admin/farms\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"version\": \"2015-12-01-preview\",\r\n \"settingsStore\": \"AzS-ACS01.azurestack.local:19000\",\r\n \"settings\": {\r\n \"settingsPollingIntervalInSecond\": 60,\r\n \"retentionPeriodForDeletedStorageAccountsInDays\": 0,\r\n \"hostStyleHttpPort\": 0,\r\n \"hostStyleHttpsPort\": 0,\r\n \"corsAllowedOriginsList\": \"https://adminportal.local.azurestack.external/;https://adminportal.local.azurestack.external:12649/;https://portal.local.azurestack.external/;https://portal.local.azurestack.external:12649/\",\r\n \"dataCenterUriHostSuffixes\": \"local.azurestack.external\",\r\n \"bandwidthThrottleIsEnabled\": false,\r\n \"usageCollectionIntervalInSeconds\": 10,\r\n \"feedbackRefreshIntervalInSeconds\": 10,\r\n \"numberOfAccountsToSync\": 20,\r\n \"defaultThrottleProbabilityDecayIntervalInSeconds\": 240,\r\n \"gracePeriodForFullThrottlingInRefreshIntervals\": 3,\r\n \"gracePeriodMaxThrottleProbability\": 0.9,\r\n \"overallRequestThresholdInTps\": 10000.0,\r\n \"defaultRequestThresholdInTps\": 200.0,\r\n \"minimumRequestThresholdInTps\": 1.0,\r\n \"toleranceFactorForTps\": 2.0,\r\n \"overallIngressThresholdInGbps\": 25.0,\r\n \"defaultIngressThresholdInGbps\": 2.0,\r\n \"minimumIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIngress\": 2.0,\r\n \"overallIntranetIngressThresholdInGbps\": 25.0,\r\n \"defaultIntranetIngressThresholdInGbps\": 2.0,\r\n \"minimumIntranetIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetIngress\": 2.0,\r\n \"overallEgressThresholdInGbps\": 30.0,\r\n \"defaultEgressThresholdInGbps\": 3.0,\r\n \"minimumEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForEgress\": 2.0,\r\n \"overallIntranetEgressThresholdInGbps\": 30.0,\r\n \"defaultIntranetEgressThresholdInGbps\": 3.0,\r\n \"minimumIntranetEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetEgress\": 2.0,\r\n \"overallTotalIngressThresholdInGbps\": 50.0,\r\n \"defaultTotalIngressThresholdInGbps\": 5.0,\r\n \"minimumTotalIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalIngress\": 2.0,\r\n \"overallTotalEgressThresholdInGbps\": 50.0,\r\n \"defaultTotalEgressThresholdInGbps\": 5.0,\r\n \"minimumTotalEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalEgress\": 2.0\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2888" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:02 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvaP+jFxUUoWk+InoSiQakDXzVrzyyoxOavHrsukmCiEVKnhMrJtgtNcu2VtkGMneftoREtLgVaQZnyMSCmvbsKSqSpqI49QmL3x13rcSaqKBcWaiz0uqKG6bdyEVIsuaNGOiSo9hFjne5EvnGFm2c" - ], - "x-ms-request-id": [ - "83fc84cb-3867-4733-ae67-f96382d8a6de" - ], - "x-ms-correlation-request-id": [ - "9951d2cc-7ed6-4a92-9379-43930e340942" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14923" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193102Z:9951d2cc-7ed6-4a92-9379-43930e340942" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/metricdefinitions?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL21ldHJpY2RlZmluaXRpb25zP2FwaS12ZXJzaW9uPTIwMTUtMTItMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "98363c6e-53b1-47bd-b52f-e72d9beed520" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Processor time percentage\",\r\n \"value\": \"ProcessorTime\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Available memory\",\r\n \"value\": \"AvailableMemory\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Total Capacity\",\r\n \"value\": \"TotalCapacity\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Used Capacity\",\r\n \"value\": \"UsedCapacity\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Free Space\",\r\n \"value\": \"FreeSpace\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Used Capacity Percentage\",\r\n \"value\": \"UsedCapacityPercentage \"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Free Space Percentage\",\r\n \"value\": \"FreeSpacePercentage \"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "3040" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:02 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv79NWLRl7Fv+rhWiWHzDLJvOabt06nMYOL6CvkbDuxf4V3UzWUjpYyXfF5tq4yJ14T8/SCqOoJbS3SPyY6gyDUczJVE9SRu1ANLiCpkWVO13t7bJ5BPWyuFcBVJshet9CctVV8RsFG8EUxbps5qIo" - ], - "x-ms-request-id": [ - "5be90891-afcf-4cc1-b766-3393b14ea8ab" - ], - "x-ms-correlation-request-id": [ - "f2848396-47b1-4c38-9914-7a35fb08e81d" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14922" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193102Z:f2848396-47b1-4c38-9914-7a35fb08e81d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "SubscriptionId": "9ad61516-995c-4873-a21f-7e44904f0ed2" - } -} \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllFarmMetrics.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllFarmMetrics.json deleted file mode 100644 index 102c81124333..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllFarmMetrics.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6b6380ca-2ef4-4a26-b18a-6725acde815f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"type\": \"Microsoft.Storage.Admin/farms\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"version\": \"2015-12-01-preview\",\r\n \"settingsStore\": \"AzS-ACS01.azurestack.local:19000\",\r\n \"settings\": {\r\n \"settingsPollingIntervalInSecond\": 60,\r\n \"retentionPeriodForDeletedStorageAccountsInDays\": 0,\r\n \"hostStyleHttpPort\": 0,\r\n \"hostStyleHttpsPort\": 0,\r\n \"corsAllowedOriginsList\": \"https://adminportal.local.azurestack.external/;https://adminportal.local.azurestack.external:12649/;https://portal.local.azurestack.external/;https://portal.local.azurestack.external:12649/\",\r\n \"dataCenterUriHostSuffixes\": \"local.azurestack.external\",\r\n \"bandwidthThrottleIsEnabled\": false,\r\n \"usageCollectionIntervalInSeconds\": 10,\r\n \"feedbackRefreshIntervalInSeconds\": 10,\r\n \"numberOfAccountsToSync\": 20,\r\n \"defaultThrottleProbabilityDecayIntervalInSeconds\": 240,\r\n \"gracePeriodForFullThrottlingInRefreshIntervals\": 3,\r\n \"gracePeriodMaxThrottleProbability\": 0.9,\r\n \"overallRequestThresholdInTps\": 10000.0,\r\n \"defaultRequestThresholdInTps\": 200.0,\r\n \"minimumRequestThresholdInTps\": 1.0,\r\n \"toleranceFactorForTps\": 2.0,\r\n \"overallIngressThresholdInGbps\": 25.0,\r\n \"defaultIngressThresholdInGbps\": 2.0,\r\n \"minimumIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIngress\": 2.0,\r\n \"overallIntranetIngressThresholdInGbps\": 25.0,\r\n \"defaultIntranetIngressThresholdInGbps\": 2.0,\r\n \"minimumIntranetIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetIngress\": 2.0,\r\n \"overallEgressThresholdInGbps\": 30.0,\r\n \"defaultEgressThresholdInGbps\": 3.0,\r\n \"minimumEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForEgress\": 2.0,\r\n \"overallIntranetEgressThresholdInGbps\": 30.0,\r\n \"defaultIntranetEgressThresholdInGbps\": 3.0,\r\n \"minimumIntranetEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetEgress\": 2.0,\r\n \"overallTotalIngressThresholdInGbps\": 50.0,\r\n \"defaultTotalIngressThresholdInGbps\": 5.0,\r\n \"minimumTotalIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalIngress\": 2.0,\r\n \"overallTotalEgressThresholdInGbps\": 50.0,\r\n \"defaultTotalEgressThresholdInGbps\": 5.0,\r\n \"minimumTotalEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalEgress\": 2.0\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2888" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:02 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvnE0BG8p9xV1f6J+Ui/k6lsBSo4hryAvcRAXLrwH/EUkeuXyLT9i3UyQrm2SFfZTAESjWo0iQI7bQ8AT/0/4OYUWLFbTkZzmJHQ+/ppukxOqZGANwhKYJxcHplqJG2d0BA2NqtoccVmUmrRnKPO71" - ], - "x-ms-request-id": [ - "b726b3c5-0585-415e-bfe7-18bd98f61303" - ], - "x-ms-correlation-request-id": [ - "af951ff2-3c28-45a9-8247-dd87931cd425" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14921" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193103Z:af951ff2-3c28-45a9-8247-dd87931cd425" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/metrics?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL21ldHJpY3M/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ad2566ca-ad4a-4ebb-8e29-91bdbfbb8c62" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"endTime\": \"2018-01-30T19:31:03.1837713Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [],\r\n \"name\": {\r\n \"localizedValue\": \"Processor time percentage\",\r\n \"value\": \"ProcessorTime\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:03.1837713Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [],\r\n \"name\": {\r\n \"localizedValue\": \"Available memory\",\r\n \"value\": \"AvailableMemory\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:03.1837713Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [\r\n {\r\n \"average\": 2728176648192.0,\r\n \"timeStamp\": \"2018-01-29T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 2728176648192.0,\r\n \"timeStamp\": \"2018-01-28T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 2728176648192.0,\r\n \"timeStamp\": \"2018-01-27T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 2728176648192.0,\r\n \"timeStamp\": \"2018-01-26T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 2728176648192.0,\r\n \"timeStamp\": \"2018-01-25T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 2728176648192.0,\r\n \"timeStamp\": \"2018-01-24T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 2728176648192.0,\r\n \"timeStamp\": \"2018-01-23T00:00:00Z\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Total Capacity\",\r\n \"value\": \"TotalCapacity\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:03.1837713Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [\r\n {\r\n \"average\": 389873692672.0,\r\n \"timeStamp\": \"2018-01-29T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 379637998762.66669,\r\n \"timeStamp\": \"2018-01-28T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 369550244352.0,\r\n \"timeStamp\": \"2018-01-27T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 359099803818.66669,\r\n \"timeStamp\": \"2018-01-26T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 348343386965.33331,\r\n \"timeStamp\": \"2018-01-25T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 338910678186.66669,\r\n \"timeStamp\": \"2018-01-24T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 330334962346.66669,\r\n \"timeStamp\": \"2018-01-23T00:00:00Z\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Used Capacity\",\r\n \"value\": \"UsedCapacity\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:03.1837713Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [\r\n {\r\n \"average\": 2338302955520.0,\r\n \"timeStamp\": \"2018-01-29T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 2348538649429.3335,\r\n \"timeStamp\": \"2018-01-28T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 2358626403840.0,\r\n \"timeStamp\": \"2018-01-27T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 2369076844373.3335,\r\n \"timeStamp\": \"2018-01-26T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 2379833261226.6665,\r\n \"timeStamp\": \"2018-01-25T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 2389265970005.3335,\r\n \"timeStamp\": \"2018-01-24T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 2397841685845.3335,\r\n \"timeStamp\": \"2018-01-23T00:00:00Z\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Free Space\",\r\n \"value\": \"FreeSpace\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:03.1837713Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [\r\n {\r\n \"average\": 0.14290632277436091,\r\n \"timeStamp\": \"2018-01-29T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 0.139154478510128,\r\n \"timeStamp\": \"2018-01-28T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 0.13545686075603133,\r\n \"timeStamp\": \"2018-01-27T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 0.13162630215189586,\r\n \"timeStamp\": \"2018-01-26T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 0.12768358940253569,\r\n \"timeStamp\": \"2018-01-25T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 0.12422607546738861,\r\n \"timeStamp\": \"2018-01-24T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 0.12108268816302059,\r\n \"timeStamp\": \"2018-01-23T00:00:00Z\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Used Capacity Percentage\",\r\n \"value\": \"UsedCapacityPercentage \"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:03.1837713Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [\r\n {\r\n \"average\": 0.857093677225639,\r\n \"timeStamp\": \"2018-01-29T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 0.86084552148987215,\r\n \"timeStamp\": \"2018-01-28T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 0.86454313924396864,\r\n \"timeStamp\": \"2018-01-27T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 0.86837369784810392,\r\n \"timeStamp\": \"2018-01-26T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 0.87231641059746445,\r\n \"timeStamp\": \"2018-01-25T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 0.8757739245326116,\r\n \"timeStamp\": \"2018-01-24T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 0.87891731183697941,\r\n \"timeStamp\": \"2018-01-23T00:00:00Z\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Free Space Percentage\",\r\n \"value\": \"FreeSpacePercentage \"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "6076" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:02 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvIjudq0FMKnlGo+HCgt12hn08yaDBXNJ3vaBw7psGcorkY4DPz239vEyi4OJpXxvkhJlKKY9X5sCmRa+DJ68lPXzqpUeDDcNjBy1bv1l+nAnuQTjUIAuhHwY30pgHyS2cHaADHfGmbC7N9C3kfxfI" - ], - "x-ms-request-id": [ - "93e9f954-8d15-435c-825c-067d5ef8eaf2" - ], - "x-ms-correlation-request-id": [ - "a81066b0-b126-40b0-8180-429b1c0ff192" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193103Z:a81066b0-b126-40b0-8180-429b1c0ff192" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "SubscriptionId": "9ad61516-995c-4873-a21f-7e44904f0ed2" - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllQueueServiceMetricDefinitions.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllQueueServiceMetricDefinitions.json deleted file mode 100644 index 2d9f077160b8..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllQueueServiceMetricDefinitions.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f5264a0c-e021-40df-9953-5b1ceca4ac7e" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"type\": \"Microsoft.Storage.Admin/farms\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"version\": \"2015-12-01-preview\",\r\n \"settingsStore\": \"AzS-ACS01.azurestack.local:19000\",\r\n \"settings\": {\r\n \"settingsPollingIntervalInSecond\": 60,\r\n \"retentionPeriodForDeletedStorageAccountsInDays\": 0,\r\n \"hostStyleHttpPort\": 0,\r\n \"hostStyleHttpsPort\": 0,\r\n \"corsAllowedOriginsList\": \"https://adminportal.local.azurestack.external/;https://adminportal.local.azurestack.external:12649/;https://portal.local.azurestack.external/;https://portal.local.azurestack.external:12649/\",\r\n \"dataCenterUriHostSuffixes\": \"local.azurestack.external\",\r\n \"bandwidthThrottleIsEnabled\": false,\r\n \"usageCollectionIntervalInSeconds\": 10,\r\n \"feedbackRefreshIntervalInSeconds\": 10,\r\n \"numberOfAccountsToSync\": 20,\r\n \"defaultThrottleProbabilityDecayIntervalInSeconds\": 240,\r\n \"gracePeriodForFullThrottlingInRefreshIntervals\": 3,\r\n \"gracePeriodMaxThrottleProbability\": 0.9,\r\n \"overallRequestThresholdInTps\": 10000.0,\r\n \"defaultRequestThresholdInTps\": 200.0,\r\n \"minimumRequestThresholdInTps\": 1.0,\r\n \"toleranceFactorForTps\": 2.0,\r\n \"overallIngressThresholdInGbps\": 25.0,\r\n \"defaultIngressThresholdInGbps\": 2.0,\r\n \"minimumIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIngress\": 2.0,\r\n \"overallIntranetIngressThresholdInGbps\": 25.0,\r\n \"defaultIntranetIngressThresholdInGbps\": 2.0,\r\n \"minimumIntranetIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetIngress\": 2.0,\r\n \"overallEgressThresholdInGbps\": 30.0,\r\n \"defaultEgressThresholdInGbps\": 3.0,\r\n \"minimumEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForEgress\": 2.0,\r\n \"overallIntranetEgressThresholdInGbps\": 30.0,\r\n \"defaultIntranetEgressThresholdInGbps\": 3.0,\r\n \"minimumIntranetEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetEgress\": 2.0,\r\n \"overallTotalIngressThresholdInGbps\": 50.0,\r\n \"defaultTotalIngressThresholdInGbps\": 5.0,\r\n \"minimumTotalIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalIngress\": 2.0,\r\n \"overallTotalEgressThresholdInGbps\": 50.0,\r\n \"defaultTotalEgressThresholdInGbps\": 5.0,\r\n \"minimumTotalEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalEgress\": 2.0\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2888" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:23 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvB0+ds/LjY9ZKkg2oRxmNUwm+du7PWFVJ6wHuxgj4Df0C6mOpukHwLncsy8O2ebLhwVmOixKYrSQGE5b01FltYZ7H/EMFVB6mOlX4mFXUeLlwaid0oED48GfO7/ODRjKU59EmMD+SrSg+r0i7zGh8" - ], - "x-ms-request-id": [ - "02fc0c3b-b22d-406a-90c0-de2a5cc7b444" - ], - "x-ms-correlation-request-id": [ - "39ce8d8f-272c-46a7-b4d1-956b8ef7b505" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14831" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193123Z:39ce8d8f-272c-46a7-b4d1-956b8ef7b505" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/queueservices/default/metricdefinitions?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3F1ZXVlc2VydmljZXMvZGVmYXVsdC9tZXRyaWNkZWZpbml0aW9ucz9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "41d38394-0530-4c31-ae1d-86c2f7db9dfa" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P1D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"End-to-end latency (QueueService)\",\r\n \"value\": \"E2ELatency\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P1D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Server latency (QueueService)\",\r\n \"value\": \"ServerLatency\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P1D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Availability (QueueService)\",\r\n \"value\": \"Availability\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P1D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Total requests (QueueService)\",\r\n \"value\": \"TotalRequests\"\r\n },\r\n \"primaryAggregationType\": \"Total\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P1D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Ingress (QueueService)\",\r\n \"value\": \"Ingress\"\r\n },\r\n \"primaryAggregationType\": \"Total\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P1D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Egress (QueueService)\",\r\n \"value\": \"Egress\"\r\n },\r\n \"primaryAggregationType\": \"Total\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Requests per second (QueueFrontEnd)\",\r\n \"value\": \"QueueFrontEndRequestsPerSecond\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"CountPerSecond\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"End-to-end latency (QueueFrontEnd)\",\r\n \"value\": \"QueueFrontEndE2ELatency\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Server latency (QueueFrontEnd)\",\r\n \"value\": \"QueueFrontEndServerLatency\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Concurrent requests (QueueFrontEnd)\",\r\n \"value\": \"QueueFrontEndConcurrentRequests\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"The count of pending requests in the request queue (QueueFrontEnd)\",\r\n \"value\": \"QueueFrontEndRequestQueueLength\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Processor time percentage (QueueFrontEnd)\",\r\n \"value\": \"QueueFrontEndProcessorTime\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "6169" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:23 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvFlEb+BwrlnPPeLL7gPEbrRLkfYQeTfY8C9Yw2LgDaV+lrqjRY+NAZzfSW3MCbpGT+CE8ih7btuMlqk1mGKv6Bp3C1g/+DXQHJuXG1sTARZm/15bv/4bG7yGJfuCIQKLI5ZKMtLt9qm2MkAD+iQY0" - ], - "x-ms-request-id": [ - "ddbefd9b-9f04-4c2e-9d85-e72bcd43c568" - ], - "x-ms-correlation-request-id": [ - "54dff284-8031-407b-8cc4-76c596cecc32" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14830" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193124Z:54dff284-8031-407b-8cc4-76c596cecc32" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "SubscriptionId": "9ad61516-995c-4873-a21f-7e44904f0ed2" - } -} \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllQueueServiceMetrics.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllQueueServiceMetrics.json deleted file mode 100644 index 699f5de64ad8..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllQueueServiceMetrics.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "34a7b723-5886-4e9a-9a25-77cb3601f3a1" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"type\": \"Microsoft.Storage.Admin/farms\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"version\": \"2015-12-01-preview\",\r\n \"settingsStore\": \"AzS-ACS01.azurestack.local:19000\",\r\n \"settings\": {\r\n \"settingsPollingIntervalInSecond\": 60,\r\n \"retentionPeriodForDeletedStorageAccountsInDays\": 0,\r\n \"hostStyleHttpPort\": 0,\r\n \"hostStyleHttpsPort\": 0,\r\n \"corsAllowedOriginsList\": \"https://adminportal.local.azurestack.external/;https://adminportal.local.azurestack.external:12649/;https://portal.local.azurestack.external/;https://portal.local.azurestack.external:12649/\",\r\n \"dataCenterUriHostSuffixes\": \"local.azurestack.external\",\r\n \"bandwidthThrottleIsEnabled\": false,\r\n \"usageCollectionIntervalInSeconds\": 10,\r\n \"feedbackRefreshIntervalInSeconds\": 10,\r\n \"numberOfAccountsToSync\": 20,\r\n \"defaultThrottleProbabilityDecayIntervalInSeconds\": 240,\r\n \"gracePeriodForFullThrottlingInRefreshIntervals\": 3,\r\n \"gracePeriodMaxThrottleProbability\": 0.9,\r\n \"overallRequestThresholdInTps\": 10000.0,\r\n \"defaultRequestThresholdInTps\": 200.0,\r\n \"minimumRequestThresholdInTps\": 1.0,\r\n \"toleranceFactorForTps\": 2.0,\r\n \"overallIngressThresholdInGbps\": 25.0,\r\n \"defaultIngressThresholdInGbps\": 2.0,\r\n \"minimumIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIngress\": 2.0,\r\n \"overallIntranetIngressThresholdInGbps\": 25.0,\r\n \"defaultIntranetIngressThresholdInGbps\": 2.0,\r\n \"minimumIntranetIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetIngress\": 2.0,\r\n \"overallEgressThresholdInGbps\": 30.0,\r\n \"defaultEgressThresholdInGbps\": 3.0,\r\n \"minimumEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForEgress\": 2.0,\r\n \"overallIntranetEgressThresholdInGbps\": 30.0,\r\n \"defaultIntranetEgressThresholdInGbps\": 3.0,\r\n \"minimumIntranetEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetEgress\": 2.0,\r\n \"overallTotalIngressThresholdInGbps\": 50.0,\r\n \"defaultTotalIngressThresholdInGbps\": 5.0,\r\n \"minimumTotalIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalIngress\": 2.0,\r\n \"overallTotalEgressThresholdInGbps\": 50.0,\r\n \"defaultTotalEgressThresholdInGbps\": 5.0,\r\n \"minimumTotalEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalEgress\": 2.0\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2888" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:24 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvDQNJcX81RlN+LBNeWyjA/ssHOUnpFRtlWZ3qrPCoIkhKLMQhvlRq9Tmp09GnpipqwqqrZtNZQZDr7S/cx1aPg693KWckfDCnQvLQm2s3UnNLVa+eqsjxRKPGz4evAA0EcWByOOYqFfuPLBLByxpN" - ], - "x-ms-request-id": [ - "8006838f-19bd-446d-8fd3-0bb2f458efdb" - ], - "x-ms-correlation-request-id": [ - "dddd229a-7120-495a-b8da-e7b2aa77ae7d" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14827" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193124Z:dddd229a-7120-495a-b8da-e7b2aa77ae7d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/queueservices/default/metrics?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3F1ZXVlc2VydmljZXMvZGVmYXVsdC9tZXRyaWNzP2FwaS12ZXJzaW9uPTIwMTUtMTItMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d2d1f9da-cc6a-437e-9e13-899d25f246e8" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"endTime\": \"2018-01-30T19:31:24.5345914Z\",\r\n \"metricUnit\": \"CountPerSecond\",\r\n \"metricValues\": [],\r\n \"name\": {\r\n \"localizedValue\": \"Requests per second (QueueFrontEnd)\",\r\n \"value\": \"QueueFrontEndRequestsPerSecond\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:24.5345914Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [],\r\n \"name\": {\r\n \"localizedValue\": \"End-to-end latency (QueueFrontEnd)\",\r\n \"value\": \"QueueFrontEndE2ELatency\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:24.5345914Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [],\r\n \"name\": {\r\n \"localizedValue\": \"Server latency (QueueFrontEnd)\",\r\n \"value\": \"QueueFrontEndServerLatency\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:24.5345914Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [],\r\n \"name\": {\r\n \"localizedValue\": \"Concurrent requests (QueueFrontEnd)\",\r\n \"value\": \"QueueFrontEndConcurrentRequests\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:24.5345914Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [],\r\n \"name\": {\r\n \"localizedValue\": \"The count of pending requests in the request queue (QueueFrontEnd)\",\r\n \"value\": \"QueueFrontEndRequestQueueLength\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:24.5345914Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [],\r\n \"name\": {\r\n \"localizedValue\": \"Processor time percentage (QueueFrontEnd)\",\r\n \"value\": \"QueueFrontEndProcessorTime\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:24.5345914Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [\r\n {\r\n \"average\": 1.88592776264484,\r\n \"timeStamp\": \"2018-01-23T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 1.85851217466339,\r\n \"timeStamp\": \"2018-01-24T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 1.87040051806059,\r\n \"timeStamp\": \"2018-01-25T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 1.90624102793048,\r\n \"timeStamp\": \"2018-01-26T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 1.93359342860519,\r\n \"timeStamp\": \"2018-01-27T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 1.91756062246845,\r\n \"timeStamp\": \"2018-01-28T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 1.90350660188966,\r\n \"timeStamp\": \"2018-01-29T00:00:00Z\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"End-to-end latency (QueueService)\",\r\n \"value\": \"E2ELatency\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:24.5345914Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [\r\n {\r\n \"average\": 1.81003101711863,\r\n \"timeStamp\": \"2018-01-23T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 1.78567652998375,\r\n \"timeStamp\": \"2018-01-24T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 1.79746391271282,\r\n \"timeStamp\": \"2018-01-25T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 1.83270876455636,\r\n \"timeStamp\": \"2018-01-26T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 1.85885443391132,\r\n \"timeStamp\": \"2018-01-27T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 1.84392369316924,\r\n \"timeStamp\": \"2018-01-28T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 1.82936276116956,\r\n \"timeStamp\": \"2018-01-29T00:00:00Z\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Server latency (QueueService)\",\r\n \"value\": \"ServerLatency\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:24.5345914Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [\r\n {\r\n \"average\": 100.0,\r\n \"timeStamp\": \"2018-01-23T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 100.0,\r\n \"timeStamp\": \"2018-01-24T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 100.0,\r\n \"timeStamp\": \"2018-01-25T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 100.0,\r\n \"timeStamp\": \"2018-01-26T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 100.0,\r\n \"timeStamp\": \"2018-01-27T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 100.0,\r\n \"timeStamp\": \"2018-01-28T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 100.0,\r\n \"timeStamp\": \"2018-01-29T00:00:00Z\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Availability (QueueService)\",\r\n \"value\": \"Availability\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:24.5345914Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [\r\n {\r\n \"timeStamp\": \"2018-01-23T00:00:00Z\",\r\n \"total\": 709694.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-24T00:00:00Z\",\r\n \"total\": 706686.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-25T00:00:00Z\",\r\n \"total\": 706644.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-26T00:00:00Z\",\r\n \"total\": 707869.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-27T00:00:00Z\",\r\n \"total\": 711097.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-28T00:00:00Z\",\r\n \"total\": 711197.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-29T00:00:00Z\",\r\n \"total\": 713652.0\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Total requests (QueueService)\",\r\n \"value\": \"TotalRequests\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:24.5345914Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [\r\n {\r\n \"timeStamp\": \"2018-01-23T00:00:00Z\",\r\n \"total\": 330187754.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-24T00:00:00Z\",\r\n \"total\": 328237824.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-25T00:00:00Z\",\r\n \"total\": 328220543.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-26T00:00:00Z\",\r\n \"total\": 328897291.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-27T00:00:00Z\",\r\n \"total\": 330626016.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-28T00:00:00Z\",\r\n \"total\": 330693320.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-29T00:00:00Z\",\r\n \"total\": 332315876.0\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Ingress (QueueService)\",\r\n \"value\": \"Ingress\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:24.5345914Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [\r\n {\r\n \"timeStamp\": \"2018-01-23T00:00:00Z\",\r\n \"total\": 179169105.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-24T00:00:00Z\",\r\n \"total\": 178217533.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-25T00:00:00Z\",\r\n \"total\": 178211569.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-26T00:00:00Z\",\r\n \"total\": 178640382.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-27T00:00:00Z\",\r\n \"total\": 179836179.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-28T00:00:00Z\",\r\n \"total\": 179870886.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-29T00:00:00Z\",\r\n \"total\": 180647853.0\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Egress (QueueService)\",\r\n \"value\": \"Egress\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "8330" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:24 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvH7/aozPIB8Vepa/CvuFMQbh5pNxJeYBbmzY21HCX664vdnseCjVRzjFoUR1iLaWgcn4H6kwa+JA8ov0rojoQkBf9IUv5tQwpA/MDTsnxUPLOk4GM+2GmQxZJRt/yv7DwbYF40pMgDJ5Ek7rLrAsH" - ], - "x-ms-request-id": [ - "044523b4-d43f-48dd-90e9-47df6cd2a52f" - ], - "x-ms-correlation-request-id": [ - "a08b7968-bdeb-469b-8310-056121fa5fa7" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14826" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193124Z:a08b7968-bdeb-469b-8310-056121fa5fa7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "SubscriptionId": "9ad61516-995c-4873-a21f-7e44904f0ed2" - } -} \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllShareMetricDefinitions.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllShareMetricDefinitions.json deleted file mode 100644 index c5b463c13862..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllShareMetricDefinitions.json +++ /dev/null @@ -1,200 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "93fc1f4c-068a-4eeb-808e-fe6505d48a2f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"type\": \"Microsoft.Storage.Admin/farms\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"version\": \"2015-12-01-preview\",\r\n \"settingsStore\": \"AzS-ACS01.azurestack.local:19000\",\r\n \"settings\": {\r\n \"settingsPollingIntervalInSecond\": 60,\r\n \"retentionPeriodForDeletedStorageAccountsInDays\": 0,\r\n \"hostStyleHttpPort\": 0,\r\n \"hostStyleHttpsPort\": 0,\r\n \"corsAllowedOriginsList\": \"https://adminportal.local.azurestack.external/;https://adminportal.local.azurestack.external:12649/;https://portal.local.azurestack.external/;https://portal.local.azurestack.external:12649/\",\r\n \"dataCenterUriHostSuffixes\": \"local.azurestack.external\",\r\n \"bandwidthThrottleIsEnabled\": false,\r\n \"usageCollectionIntervalInSeconds\": 10,\r\n \"feedbackRefreshIntervalInSeconds\": 10,\r\n \"numberOfAccountsToSync\": 20,\r\n \"defaultThrottleProbabilityDecayIntervalInSeconds\": 240,\r\n \"gracePeriodForFullThrottlingInRefreshIntervals\": 3,\r\n \"gracePeriodMaxThrottleProbability\": 0.9,\r\n \"overallRequestThresholdInTps\": 10000.0,\r\n \"defaultRequestThresholdInTps\": 200.0,\r\n \"minimumRequestThresholdInTps\": 1.0,\r\n \"toleranceFactorForTps\": 2.0,\r\n \"overallIngressThresholdInGbps\": 25.0,\r\n \"defaultIngressThresholdInGbps\": 2.0,\r\n \"minimumIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIngress\": 2.0,\r\n \"overallIntranetIngressThresholdInGbps\": 25.0,\r\n \"defaultIntranetIngressThresholdInGbps\": 2.0,\r\n \"minimumIntranetIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetIngress\": 2.0,\r\n \"overallEgressThresholdInGbps\": 30.0,\r\n \"defaultEgressThresholdInGbps\": 3.0,\r\n \"minimumEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForEgress\": 2.0,\r\n \"overallIntranetEgressThresholdInGbps\": 30.0,\r\n \"defaultIntranetEgressThresholdInGbps\": 3.0,\r\n \"minimumIntranetEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetEgress\": 2.0,\r\n \"overallTotalIngressThresholdInGbps\": 50.0,\r\n \"defaultTotalIngressThresholdInGbps\": 5.0,\r\n \"minimumTotalIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalIngress\": 2.0,\r\n \"overallTotalEgressThresholdInGbps\": 50.0,\r\n \"defaultTotalEgressThresholdInGbps\": 5.0,\r\n \"minimumTotalEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalEgress\": 2.0\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2888" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:24 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvzrQzYCxn4BWKXY6r5izAJTf0nNkdira1gx8Ov14/qu1VhMV48lSF2t63XKtEfHwowWz9DCSMinb4jF9xftszqS8wqvAJpPWlYwwECDvWY6xY505S1FoJ/c0fZbdfnq9S4YSbBezXQ5Xl98jGuESy" - ], - "x-ms-request-id": [ - "091c7c55-18d6-4067-a468-d2fa9825b3e1" - ], - "x-ms-correlation-request-id": [ - "e3a32b09-94fa-46cd-97dc-a07153769709" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14825" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193124Z:e3a32b09-94fa-46cd-97dc-a07153769709" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/shares?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3NoYXJlcz9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "70814826-14cc-47c4-84cb-b11bb128a049" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "[\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/shares/||SU1FileServer.azurestack.local|SU1_ObjStore\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af/||SU1FileServer.azurestack.local|SU1_ObjStore\",\r\n \"type\": \"Microsoft.Storage.Admin/farms/shares\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"shareName\": \"||SU1FileServer.azurestack.local|SU1_ObjStore\",\r\n \"uncPath\": \"\\\\\\\\SU1FileServer.azurestack.local\\\\SU1_ObjStore\",\r\n \"totalCapacity\": 2728176648192,\r\n \"usedCapacity\": 400509059072,\r\n \"freeCapacity\": 2327667589120,\r\n \"healthStatus\": \"Healthy\"\r\n }\r\n }\r\n]", - "ResponseHeaders": { - "Content-Length": [ - "730" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:24 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvbxKXa3T4LtFMNYDm7zAbL2xrgKRbeOGyOWq9i4hTzey+zbsvGbzmWMk4pmR8XYlruSB2Gs/nG+ZsMqj2UT+HTTBmseoqe4Q47VlNHgIpjWympNm85yj00nBafyof5z4RQe4JOLYR1j0GgEcu5CmG" - ], - "x-ms-request-id": [ - "9ba59452-65b9-42b7-ae91-11e14d9932d5" - ], - "x-ms-correlation-request-id": [ - "0bb090e5-23c9-419d-bf26-0edd6f35483f" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14824" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193124Z:0bb090e5-23c9-419d-bf26-0edd6f35483f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/shares/%7C%7CSU1FileServer.azurestack.local%7CSU1_ObjStore/metricdefinitions?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3NoYXJlcy8lN0MlN0NTVTFGaWxlU2VydmVyLmF6dXJlc3RhY2subG9jYWwlN0NTVTFfT2JqU3RvcmUvbWV0cmljZGVmaW5pdGlvbnM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7bb61f7e-3d8a-4cae-b502-a4e0fcb2cb76" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Total Capacity\",\r\n \"value\": \"TotalCapacity\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Used Capacity\",\r\n \"value\": \"UsedCapacity\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Free Space\",\r\n \"value\": \"FreeSpace\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Used Capacity Percentage\",\r\n \"value\": \"UsedCapacityPercentage \"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Free Space Percentage\",\r\n \"value\": \"FreeSpacePercentage \"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2051" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:24 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv17AIM6QTaf37+5OyHJsCvgp+oX0881WEKv/6098WWxCJyC12O/uMLGnOf9at2OdCq9wEb8/UKebqiPOjORuCspdK4t2zeszDSzdtcQ1IPQpvHk5eyD+CDXADpuXV7fwyCRnMsNztTEwNBgkG2XEK" - ], - "x-ms-request-id": [ - "7965cdd2-df96-4437-84f5-9b1c4d5da196" - ], - "x-ms-correlation-request-id": [ - "76ff94b9-bbc7-44ab-be02-53aef16222f7" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14823" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193124Z:76ff94b9-bbc7-44ab-be02-53aef16222f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "SubscriptionId": "9ad61516-995c-4873-a21f-7e44904f0ed2" - } -} \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllShareMetrics.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllShareMetrics.json deleted file mode 100644 index a01b8e67c82a..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllShareMetrics.json +++ /dev/null @@ -1,200 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e2bfc574-2483-40a1-8522-44664387c91b" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"type\": \"Microsoft.Storage.Admin/farms\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"version\": \"2015-12-01-preview\",\r\n \"settingsStore\": \"AzS-ACS01.azurestack.local:19000\",\r\n \"settings\": {\r\n \"settingsPollingIntervalInSecond\": 60,\r\n \"retentionPeriodForDeletedStorageAccountsInDays\": 0,\r\n \"hostStyleHttpPort\": 0,\r\n \"hostStyleHttpsPort\": 0,\r\n \"corsAllowedOriginsList\": \"https://adminportal.local.azurestack.external/;https://adminportal.local.azurestack.external:12649/;https://portal.local.azurestack.external/;https://portal.local.azurestack.external:12649/\",\r\n \"dataCenterUriHostSuffixes\": \"local.azurestack.external\",\r\n \"bandwidthThrottleIsEnabled\": false,\r\n \"usageCollectionIntervalInSeconds\": 10,\r\n \"feedbackRefreshIntervalInSeconds\": 10,\r\n \"numberOfAccountsToSync\": 20,\r\n \"defaultThrottleProbabilityDecayIntervalInSeconds\": 240,\r\n \"gracePeriodForFullThrottlingInRefreshIntervals\": 3,\r\n \"gracePeriodMaxThrottleProbability\": 0.9,\r\n \"overallRequestThresholdInTps\": 10000.0,\r\n \"defaultRequestThresholdInTps\": 200.0,\r\n \"minimumRequestThresholdInTps\": 1.0,\r\n \"toleranceFactorForTps\": 2.0,\r\n \"overallIngressThresholdInGbps\": 25.0,\r\n \"defaultIngressThresholdInGbps\": 2.0,\r\n \"minimumIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIngress\": 2.0,\r\n \"overallIntranetIngressThresholdInGbps\": 25.0,\r\n \"defaultIntranetIngressThresholdInGbps\": 2.0,\r\n \"minimumIntranetIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetIngress\": 2.0,\r\n \"overallEgressThresholdInGbps\": 30.0,\r\n \"defaultEgressThresholdInGbps\": 3.0,\r\n \"minimumEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForEgress\": 2.0,\r\n \"overallIntranetEgressThresholdInGbps\": 30.0,\r\n \"defaultIntranetEgressThresholdInGbps\": 3.0,\r\n \"minimumIntranetEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetEgress\": 2.0,\r\n \"overallTotalIngressThresholdInGbps\": 50.0,\r\n \"defaultTotalIngressThresholdInGbps\": 5.0,\r\n \"minimumTotalIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalIngress\": 2.0,\r\n \"overallTotalEgressThresholdInGbps\": 50.0,\r\n \"defaultTotalEgressThresholdInGbps\": 5.0,\r\n \"minimumTotalEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalEgress\": 2.0\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2888" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:24 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvr9BMjbRHnEISoxSYAS9eXfV3pDG0G937cV1Dy5leM/ZifJ6Ab52xed3vN5wQvsZdDnL/Ebz249r276nizCZHxfSMEpBLuXkfFVmdi0T0XoJdbaWwwH70vtzhYBkCERCKZBN8rHtxWBArRsqGpKHO" - ], - "x-ms-request-id": [ - "4dc01f0d-3081-4c71-8fbe-e1878549db91" - ], - "x-ms-correlation-request-id": [ - "06e0d2ec-a7df-40c2-9811-d78d2916467a" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14819" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193125Z:06e0d2ec-a7df-40c2-9811-d78d2916467a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/shares?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3NoYXJlcz9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fec3ade9-046d-40ed-ad2c-5807f1407b51" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "[\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/shares/||SU1FileServer.azurestack.local|SU1_ObjStore\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af/||SU1FileServer.azurestack.local|SU1_ObjStore\",\r\n \"type\": \"Microsoft.Storage.Admin/farms/shares\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"shareName\": \"||SU1FileServer.azurestack.local|SU1_ObjStore\",\r\n \"uncPath\": \"\\\\\\\\SU1FileServer.azurestack.local\\\\SU1_ObjStore\",\r\n \"totalCapacity\": 2728176648192,\r\n \"usedCapacity\": 400509059072,\r\n \"freeCapacity\": 2327667589120,\r\n \"healthStatus\": \"Healthy\"\r\n }\r\n }\r\n]", - "ResponseHeaders": { - "Content-Length": [ - "730" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:25 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvs6vff02JDVBCt8Lr4ejkbR+nYv4G2oczIA1/XvF/R0Al4oOsAKzHo7C8RxMVC3WnlqUqwRhqHYvt4HqZiOjaucEgvd1PUMCA5ikBeA3AyBzNBcx/bNNM/1Y/XQHbf6F0N3rC2dnjfaOaZYTccYpR" - ], - "x-ms-request-id": [ - "db29d6af-9cb0-4bdd-86e3-24c81e8f8d9c" - ], - "x-ms-correlation-request-id": [ - "fbc9fe3c-87a4-4bf3-8440-8392175db26c" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14818" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193125Z:fbc9fe3c-87a4-4bf3-8440-8392175db26c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/shares/%7C%7CSU1FileServer.azurestack.local%7CSU1_ObjStore/metrics?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3NoYXJlcy8lN0MlN0NTVTFGaWxlU2VydmVyLmF6dXJlc3RhY2subG9jYWwlN0NTVTFfT2JqU3RvcmUvbWV0cmljcz9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "48b9909e-225f-48ea-afad-6f7c235bed82" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"endTime\": \"2018-01-30T19:31:25.5502828Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [\r\n {\r\n \"average\": 2728176648192.0,\r\n \"timeStamp\": \"2018-01-29T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 2728176648192.0,\r\n \"timeStamp\": \"2018-01-28T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 2728176648192.0,\r\n \"timeStamp\": \"2018-01-27T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 2728176648192.0,\r\n \"timeStamp\": \"2018-01-26T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 2728176648192.0,\r\n \"timeStamp\": \"2018-01-25T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 2728176648192.0,\r\n \"timeStamp\": \"2018-01-24T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 2728176648192.0,\r\n \"timeStamp\": \"2018-01-23T00:00:00Z\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Total Capacity\",\r\n \"value\": \"TotalCapacity\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:25.5502828Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [\r\n {\r\n \"average\": 389873692672.0,\r\n \"timeStamp\": \"2018-01-29T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 379637998762.66669,\r\n \"timeStamp\": \"2018-01-28T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 369550244352.0,\r\n \"timeStamp\": \"2018-01-27T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 359099803818.66669,\r\n \"timeStamp\": \"2018-01-26T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 348343386965.33331,\r\n \"timeStamp\": \"2018-01-25T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 338910678186.66669,\r\n \"timeStamp\": \"2018-01-24T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 330334962346.66669,\r\n \"timeStamp\": \"2018-01-23T00:00:00Z\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Used Capacity\",\r\n \"value\": \"UsedCapacity\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:25.5502828Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [\r\n {\r\n \"average\": 2338302955520.0,\r\n \"timeStamp\": \"2018-01-29T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 2348538649429.3335,\r\n \"timeStamp\": \"2018-01-28T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 2358626403840.0,\r\n \"timeStamp\": \"2018-01-27T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 2369076844373.3335,\r\n \"timeStamp\": \"2018-01-26T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 2379833261226.6665,\r\n \"timeStamp\": \"2018-01-25T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 2389265970005.3335,\r\n \"timeStamp\": \"2018-01-24T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 2397841685845.3335,\r\n \"timeStamp\": \"2018-01-23T00:00:00Z\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Free Space\",\r\n \"value\": \"FreeSpace\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:25.5502828Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [\r\n {\r\n \"average\": 0.14290632277436091,\r\n \"timeStamp\": \"2018-01-29T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 0.139154478510128,\r\n \"timeStamp\": \"2018-01-28T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 0.13545686075603133,\r\n \"timeStamp\": \"2018-01-27T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 0.13162630215189586,\r\n \"timeStamp\": \"2018-01-26T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 0.12768358940253569,\r\n \"timeStamp\": \"2018-01-25T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 0.12422607546738861,\r\n \"timeStamp\": \"2018-01-24T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 0.12108268816302059,\r\n \"timeStamp\": \"2018-01-23T00:00:00Z\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Used Capacity Percentage\",\r\n \"value\": \"UsedCapacityPercentage \"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:25.5502828Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [\r\n {\r\n \"average\": 0.857093677225639,\r\n \"timeStamp\": \"2018-01-29T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 0.86084552148987215,\r\n \"timeStamp\": \"2018-01-28T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 0.86454313924396864,\r\n \"timeStamp\": \"2018-01-27T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 0.86837369784810392,\r\n \"timeStamp\": \"2018-01-26T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 0.87231641059746445,\r\n \"timeStamp\": \"2018-01-25T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 0.8757739245326116,\r\n \"timeStamp\": \"2018-01-24T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 0.87891731183697941,\r\n \"timeStamp\": \"2018-01-23T00:00:00Z\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Free Space Percentage\",\r\n \"value\": \"FreeSpacePercentage \"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "5465" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:25 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv1/6FdO8pcL8lloa9Yf2x4LdXUIzB7XV+efO4kCvhzpjSQuVT6HhIrG4dOYit6cTK2woXJO/tNESUSSGTtDDx6pf1WXr3gj1ouz2bEnKTHWox4I2wUBHHuVoRbeylc07yEBxaeXGY8x1fIIUHyv6w" - ], - "x-ms-request-id": [ - "e5063ee9-6c91-45e5-a7b7-e740dacbe643" - ], - "x-ms-correlation-request-id": [ - "d06aa347-b1b5-4d5c-851b-76dc89c024f3" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14817" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193125Z:d06aa347-b1b5-4d5c-851b-76dc89c024f3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "SubscriptionId": "9ad61516-995c-4873-a21f-7e44904f0ed2" - } -} \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllStorageAccounts.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllStorageAccounts.json index e7adb6735408..7739f73c4587 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllStorageAccounts.json +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllStorageAccounts.json @@ -1,136 +1,77 @@ { "Entries": [ { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageaccounts?api-version=2019-08-08-preview&summary=false", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc3RvcmFnZWFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldyZzdW1tYXJ5PWZhbHNl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff4e4229-8418-42a2-8f4e-399882c75853" + "bea70522-b36e-473a-8778-d40d24e6397b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "Prefer": [ + "odata.maxpagesize=1000" + ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"type\": \"Microsoft.Storage.Admin/farms\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"version\": \"2015-12-01-preview\",\r\n \"settingsStore\": \"AzS-ACS01.azurestack.local:19000\",\r\n \"settings\": {\r\n \"settingsPollingIntervalInSecond\": 60,\r\n \"retentionPeriodForDeletedStorageAccountsInDays\": 0,\r\n \"hostStyleHttpPort\": 0,\r\n \"hostStyleHttpsPort\": 0,\r\n \"corsAllowedOriginsList\": \"https://adminportal.local.azurestack.external/;https://adminportal.local.azurestack.external:12649/;https://portal.local.azurestack.external/;https://portal.local.azurestack.external:12649/\",\r\n \"dataCenterUriHostSuffixes\": \"local.azurestack.external\",\r\n \"bandwidthThrottleIsEnabled\": false,\r\n \"usageCollectionIntervalInSeconds\": 10,\r\n \"feedbackRefreshIntervalInSeconds\": 10,\r\n \"numberOfAccountsToSync\": 20,\r\n \"defaultThrottleProbabilityDecayIntervalInSeconds\": 240,\r\n \"gracePeriodForFullThrottlingInRefreshIntervals\": 3,\r\n \"gracePeriodMaxThrottleProbability\": 0.9,\r\n \"overallRequestThresholdInTps\": 10000.0,\r\n \"defaultRequestThresholdInTps\": 200.0,\r\n \"minimumRequestThresholdInTps\": 1.0,\r\n \"toleranceFactorForTps\": 2.0,\r\n \"overallIngressThresholdInGbps\": 25.0,\r\n \"defaultIngressThresholdInGbps\": 2.0,\r\n \"minimumIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIngress\": 2.0,\r\n \"overallIntranetIngressThresholdInGbps\": 25.0,\r\n \"defaultIntranetIngressThresholdInGbps\": 2.0,\r\n \"minimumIntranetIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetIngress\": 2.0,\r\n \"overallEgressThresholdInGbps\": 30.0,\r\n \"defaultEgressThresholdInGbps\": 3.0,\r\n \"minimumEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForEgress\": 2.0,\r\n \"overallIntranetEgressThresholdInGbps\": 30.0,\r\n \"defaultIntranetEgressThresholdInGbps\": 3.0,\r\n \"minimumIntranetEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetEgress\": 2.0,\r\n \"overallTotalIngressThresholdInGbps\": 50.0,\r\n \"defaultTotalIngressThresholdInGbps\": 5.0,\r\n \"minimumTotalIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalIngress\": 2.0,\r\n \"overallTotalEgressThresholdInGbps\": 50.0,\r\n \"defaultTotalEgressThresholdInGbps\": 5.0,\r\n \"minimumTotalEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalEgress\": 2.0\r\n }\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "2888" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:20 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "fe2b752c-45df-4489-ad54-9b1617cb5830" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv6yMVOPH1yyWdAXPZWCmhh5QfGDk/az/jOY7ND7OHJ42fxNfZM4pZCHJDVN7ar0iBuIRr+6DWYMKUFM+xv+eCUZk1XlR1ola+5c9CKVOKszfqR81DBL7H/fja4dMjZrKndDwQ3uoVRfe1ppxnKXWO" - ], - "x-ms-request-id": [ - "ede61e37-dd7b-449d-915e-46d9d438cf82" - ], - "x-ms-correlation-request-id": [ - "92e68f8d-2001-49ba-b2ef-b440ae043efd" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvjP3JFBNWy09BXUB2Cb3XN899SKXJNqAqNCaKgcKU+9y/SXFxSLbmOJYdvWSRWkWP9pdjmwRxgib9F5YZ2VnmIDkRdFCdDrjUjJam2ZrMmqQ/0UJ9PUxsrK+ALhxfC2k1ORgYt2hIgLpO94QsWL/w" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14854" + "14652" + ], + "x-ms-request-id": [ + "fe2b752c-45df-4489-ad54-9b1617cb5830" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193120Z:92e68f8d-2001-49ba-b2ef-b440ae043efd" + "LOCAL:20190917T022941Z:fe2b752c-45df-4489-ad54-9b1617cb5830" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts?api-version=2015-12-01-preview&summary=false", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3N0b3JhZ2VhY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXcmc3VtbWFyeT1mYWxzZQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "79dc30c4-9026-4991-aa0d-055c7e087e9f" ], - "accept-language": [ - "en-US" + "Date": [ + "Tue, 17 Sep 2019 02:29:41 GMT" ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/0180624c67694706a4066782d83057a5\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"0180624c67694706a4066782d83057a5\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata004.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata004.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata004.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageaccounts/adminkvlclproddata004\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata004\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"0180624c67694706a4066782d83057a5\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:27.41\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/04106a84393f4a12ab8efdbc0a69bb65\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"04106a84393f4a12ab8efdbc0a69bb65\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata005.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata005.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata005.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageaccounts/adminkvlclproddata005\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata005\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"04106a84393f4a12ab8efdbc0a69bb65\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:27.847\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/06e296e00b284f5cb5708dfabd6ad74c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"06e296e00b284f5cb5708dfabd6ad74c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://wasphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://wasphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://wasphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/wasphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"wasphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"06e296e00b284f5cb5708dfabd6ad74c\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:12.47\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/0a6b4f6b1de14cc08aa1fefadcc481eb\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"0a6b4f6b1de14cc08aa1fefadcc481eb\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://frphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://frphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://frphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/frphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"frphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"0a6b4f6b1de14cc08aa1fefadcc481eb\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:02.527\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/0d724e3f75004e48948c1bfa0b4a964a\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"0d724e3f75004e48948c1bfa0b4a964a\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://systemgallery.blob.local.azurestack.external/\",\r\n \"queue\": \"https://systemgallery.queue.local.azurestack.external/\",\r\n \"table\": \"https://systemgallery.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/systemgallery\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"systemgallery\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"0d724e3f75004e48948c1bfa0b4a964a\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:29.467\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/0dda0879146341178603ba151d7da010\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"0dda0879146341178603ba151d7da010\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://nrpeventsaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://nrpeventsaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://nrpeventsaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/nrpeventsaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"nrpeventsaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"0dda0879146341178603ba151d7da010\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:23.84\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/15612011f6094654abcb6031a4394ef5\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"15612011f6094654abcb6031a4394ef5\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvrphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvrphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvrphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/kvrphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvrphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"15612011f6094654abcb6031a4394ef5\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:36.193\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/17829fa81c154239ad8a6fae05f44793\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"17829fa81c154239ad8a6fae05f44793\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srpusageaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srpusageaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srpusageaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/srpusageaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"srpusageaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"17829fa81c154239ad8a6fae05f44793\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:15.38\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/1db56fd5982f4c7289df85965988ff19\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"1db56fd5982f4c7289df85965988ff19\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://systemtemp.blob.local.azurestack.external/\",\r\n \"queue\": \"https://systemtemp.queue.local.azurestack.external/\",\r\n \"table\": \"https://systemtemp.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/systemtemp\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"systemtemp\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"1db56fd5982f4c7289df85965988ff19\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:43.66\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/224b73ac66fb409ba83db3d26ac4ec7c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"224b73ac66fb409ba83db3d26ac4ec7c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://tenantextadminaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://tenantextadminaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://tenantextadminaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/tenantextadminaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"tenantextadminaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"224b73ac66fb409ba83db3d26ac4ec7c\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:24.32\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/2ff57b811ca04500a68c4e68daf76823\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"2ff57b811ca04500a68c4e68daf76823\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclprodbackup.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclprodbackup.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclprodbackup.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageaccounts/adminkvlclprodbackup\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"adminkvlclprodbackup\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"2ff57b811ca04500a68c4e68daf76823\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:19.163\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/35340422c5c64cb3ae510e262aaed591\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"35340422c5c64cb3ae510e262aaed591\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://nrphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://nrphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://nrphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/nrphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"nrphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"35340422c5c64cb3ae510e262aaed591\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:23.45\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/36be42f131ae4852b035ccba24f529c0\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"36be42f131ae4852b035ccba24f529c0\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvusage.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvusage.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvusage.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageaccounts/adminkvusage\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"adminkvusage\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"36be42f131ae4852b035ccba24f529c0\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:19.543\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/37ed7aabf28347eca9d03509aa6a4ae7\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"37ed7aabf28347eca9d03509aa6a4ae7\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://nrpusageaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://nrpusageaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://nrpusageaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/nrpusageaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"nrpusageaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"37ed7aabf28347eca9d03509aa6a4ae7\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:24.25\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/38f227dcf5314aa18c97cc4b4e0b72a8\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"38f227dcf5314aa18c97cc4b4e0b72a8\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srphyadmaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srphyadmaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srphyadmaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/srphyadmaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"srphyadmaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"38f227dcf5314aa18c97cc4b4e0b72a8\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:16.853\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/3fe86317cc0d40e0a0d4833641a64fdb\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"3fe86317cc0d40e0a0d4833641a64fdb\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/srphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"srphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"3fe86317cc0d40e0a0d4833641a64fdb\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:14.473\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/4639bcee762c46b493fe4d611f79504b\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"4639bcee762c46b493fe4d611f79504b\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata001.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata001.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata001.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageaccounts/adminkvlclproddata001\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata001\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"4639bcee762c46b493fe4d611f79504b\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:26.23\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/5018238804f74d69abd13279fee118ba\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"5018238804f74d69abd13279fee118ba\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srphytenaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srphytenaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srphytenaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/srphytenaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"srphytenaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"5018238804f74d69abd13279fee118ba\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:16.39\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/61dd00ce90ba432a97aa66565c61abd0\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"61dd00ce90ba432a97aa66565c61abd0\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://publicsystemevents.blob.local.azurestack.external/\",\r\n \"queue\": \"https://publicsystemevents.queue.local.azurestack.external/\",\r\n \"table\": \"https://publicsystemevents.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/publicsystemevents\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"publicsystemevents\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"61dd00ce90ba432a97aa66565c61abd0\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:29.997\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/651d470800ab4633a1ac7361d243202c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"651d470800ab4633a1ac7361d243202c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://authadminprod.blob.local.azurestack.external/\",\r\n \"queue\": \"https://authadminprod.queue.local.azurestack.external/\",\r\n \"table\": \"https://authadminprod.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/authadminprod\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"authadminprod\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"651d470800ab4633a1ac7361d243202c\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:30.37\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/6941dfa7916c43d68ccf8c022b8f0446\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"6941dfa7916c43d68ccf8c022b8f0446\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://tenantextaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://tenantextaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://tenantextaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/tenantextaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"tenantextaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"6941dfa7916c43d68ccf8c022b8f0446\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:29.293\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/7acc15fcd147499a880921a074adb5de\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"7acc15fcd147499a880921a074adb5de\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvstoreprodlcl.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvstoreprodlcl.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvstoreprodlcl.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageaccounts/adminkvstoreprodlcl\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"adminkvstoreprodlcl\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"7acc15fcd147499a880921a074adb5de\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:18.777\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/7c8133ff973d4032b564dd5e34e10398\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"7c8133ff973d4032b564dd5e34e10398\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://systemportal.blob.local.azurestack.external/\",\r\n \"queue\": \"https://systemportal.queue.local.azurestack.external/\",\r\n \"table\": \"https://systemportal.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/systemportal\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"systemportal\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"7c8133ff973d4032b564dd5e34e10398\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:29.64\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/8dbaecbea3354e4cbdb89631684b612d\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"8dbaecbea3354e4cbdb89631684b612d\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://armprod.blob.local.azurestack.external/\",\r\n \"queue\": \"https://armprod.queue.local.azurestack.external/\",\r\n \"table\": \"https://armprod.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/armprod\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"armprod\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"8dbaecbea3354e4cbdb89631684b612d\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:31.17\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/8f8be5bef33f44e3a1354f2822e3165d\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"8f8be5bef33f44e3a1354f2822e3165d\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata002.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata002.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata002.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageaccounts/adminkvlclproddata002\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata002\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"8f8be5bef33f44e3a1354f2822e3165d\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:26.617\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/916252a6959543229fa45122b23f6d40\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"916252a6959543229fa45122b23f6d40\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata002.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata002.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata002.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageaccounts/kvlclproddata002\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvlclproddata002\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"916252a6959543229fa45122b23f6d40\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:34.667\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/9576f47167b644e6a0895ad0e4627a95\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"9576f47167b644e6a0895ad0e4627a95\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crpusageaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://crpusageaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://crpusageaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/crpusageaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"crpusageaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"9576f47167b644e6a0895ad0e4627a95\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:38.963\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/990c6816faa644fdb72933dc4ea77cc7\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"990c6816faa644fdb72933dc4ea77cc7\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://systemevents.blob.local.azurestack.external/\",\r\n \"queue\": \"https://systemevents.queue.local.azurestack.external/\",\r\n \"table\": \"https://systemevents.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/systemevents\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"systemevents\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"990c6816faa644fdb72933dc4ea77cc7\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:30.577\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/996281397eab4405a1575151c1d4b573\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"996281397eab4405a1575151c1d4b573\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclprodbackup.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclprodbackup.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclprodbackup.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageaccounts/kvlclprodbackup\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvlclprodbackup\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"996281397eab4405a1575151c1d4b573\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:41.333\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/9f70a4f764be465ca2434ff43c7c5be4\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"9f70a4f764be465ca2434ff43c7c5be4\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata005.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata005.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata005.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageaccounts/kvlclproddata005\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvlclproddata005\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"9f70a4f764be465ca2434ff43c7c5be4\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:35.803\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/ab9e6c77f96d42af9068ae8527214f36\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"ab9e6c77f96d42af9068ae8527214f36\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvusage.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvusage.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvusage.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageaccounts/kvusage\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvusage\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"ab9e6c77f96d42af9068ae8527214f36\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:41.713\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/ad28eb5b219f4ab6b7a5b62a3d7ca90c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"ad28eb5b219f4ab6b7a5b62a3d7ca90c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srpeventsaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srpeventsaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srpeventsaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/srpeventsaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"srpeventsaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"ad28eb5b219f4ab6b7a5b62a3d7ca90c\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:14.93\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/b27b21524dda4256876a7ee404c39183\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"b27b21524dda4256876a7ee404c39183\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata004.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata004.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata004.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageaccounts/kvlclproddata004\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvlclproddata004\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"b27b21524dda4256876a7ee404c39183\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:35.427\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/b37939f0ab67457080efbed73a12a322\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"b37939f0ab67457080efbed73a12a322\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://updateadminaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://updateadminaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://updateadminaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/updateadminaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"updateadminaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"b37939f0ab67457080efbed73a12a322\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:46.06\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/b619a28863294abab5a865e9d0fb7a7c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"b619a28863294abab5a865e9d0fb7a7c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata001.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata001.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata001.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageaccounts/kvlclproddata001\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvlclproddata001\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"b619a28863294abab5a865e9d0fb7a7c\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:34.287\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/b83acb181ff84c3e98679849c5aaa742\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"b83acb181ff84c3e98679849c5aaa742\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata003.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata003.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata003.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageaccounts/kvlclproddata003\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvlclproddata003\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"b83acb181ff84c3e98679849c5aaa742\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:35.037\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/bad37ca8583341658074db993999a8cc\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"bad37ca8583341658074db993999a8cc\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://armadminprod.blob.local.azurestack.external/\",\r\n \"queue\": \"https://armadminprod.queue.local.azurestack.external/\",\r\n \"table\": \"https://armadminprod.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/armadminprod\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"armadminprod\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"bad37ca8583341658074db993999a8cc\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:29.817\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/bd326c553a4a4914adaab93be8536269\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"bd326c553a4a4914adaab93be8536269\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvstoreprodlcl.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvstoreprodlcl.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvstoreprodlcl.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageaccounts/kvstoreprodlcl\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvstoreprodlcl\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"bd326c553a4a4914adaab93be8536269\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:40.953\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/be57c92cec0d4c268b00b70fc3c64023\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"be57c92cec0d4c268b00b70fc3c64023\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata003.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata003.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata003.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageaccounts/adminkvlclproddata003\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata003\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"be57c92cec0d4c268b00b70fc3c64023\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:26.997\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/c2a6bdd19e404154afe27e2637e64ee1\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"c2a6bdd19e404154afe27e2637e64ee1\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://hrphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://hrphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://hrphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/hrphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"hrphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"c2a6bdd19e404154afe27e2637e64ee1\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:29.983\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/c7cf2e4007614bf79741482ae435964a\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"c7cf2e4007614bf79741482ae435964a\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvvnsproddata.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvvnsproddata.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvvnsproddata.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.keyvault/providers/Microsoft.Storage/storageaccounts/kvvnsproddata\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"kvvnsproddata\",\r\n \"tenantResourceGroupName\": \"system.keyvault\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"c7cf2e4007614bf79741482ae435964a\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:32.52\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/d5ab5566744f4480b7d891e214c208f6\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"d5ab5566744f4480b7d891e214c208f6\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://publicsystemportal.blob.local.azurestack.external/\",\r\n \"queue\": \"https://publicsystemportal.queue.local.azurestack.external/\",\r\n \"table\": \"https://publicsystemportal.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/publicsystemportal\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"publicsystemportal\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"d5ab5566744f4480b7d891e214c208f6\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:30.18\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/d927ac58d8154ff18a7834a368cf1442\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"d927ac58d8154ff18a7834a368cf1442\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crpeventsaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://crpeventsaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://crpeventsaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/crpeventsaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"crpeventsaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"d927ac58d8154ff18a7834a368cf1442\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:38.573\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/df790261d6794180ae2b22387f05e3ee\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"df790261d6794180ae2b22387f05e3ee\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://urphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://urphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://urphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/urphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"urphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"df790261d6794180ae2b22387f05e3ee\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:45.627\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/e2ee913734b040e392b1d0b2969bd098\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"e2ee913734b040e392b1d0b2969bd098\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://azurebridgerp.blob.local.azurestack.external/\",\r\n \"queue\": \"https://azurebridgerp.queue.local.azurestack.external/\",\r\n \"table\": \"https://azurebridgerp.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/azurebridgerp\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"azurebridgerp\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"e2ee913734b040e392b1d0b2969bd098\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:30.767\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/ede6aaff1e6247d99da14ec11b512c3f\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"ede6aaff1e6247d99da14ec11b512c3f\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://brphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://brphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://brphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/brphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"brphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"ede6aaff1e6247d99da14ec11b512c3f\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:21.627\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/f2e9a98feb57479880b2c66bae1c9745\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"f2e9a98feb57479880b2c66bae1c9745\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://crphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://crphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/crphealthaccount\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"crphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"f2e9a98feb57479880b2c66bae1c9745\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T02:10:38.157\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/storageaccounts/f93c9df9e7af487fbda484a9201d9c18\",\r\n \"type\": \"Microsoft.Storage.Admin/storageaccounts\",\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"f93c9df9e7af487fbda484a9201d9c18\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://authprod.blob.local.azurestack.external/\",\r\n \"queue\": \"https://authprod.queue.local.azurestack.external/\",\r\n \"table\": \"https://authprod.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"tenantViewId\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/system.local/providers/Microsoft.Storage/storageaccounts/authprod\",\r\n \"tenantSubscriptionId\": \"9ad61516-995c-4873-a21f-7e44904f0ed2\",\r\n \"tenantStorageAccountName\": \"authprod\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"currentOperation\": \"None\",\r\n \"acquisitionOperationCount\": 0,\r\n \"accountStatus\": \"Active\",\r\n \"permissions\": \"Full\",\r\n \"accountId\": \"f93c9df9e7af487fbda484a9201d9c18\",\r\n \"wacInternalState\": \"Active\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"2018-01-17T01:56:30.983\"\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { "Content-Length": [ - "74969" + "176674" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:20 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvQ0bTBmZ83JF5qeaa50PGCevUdzyTw/lRbckofiiW1Re8eNLi2wYVn9dAJjYg0aQ0d/dHIP4bHW7rnrB9i/o6V9h3+H0VGnhclyu4/yOvCUu4kffMrZp75kvK2JK53Mdz3F00VjQ1L6gZ1N0egYVt" - ], - "x-ms-request-id": [ - "7db3e4d0-6e41-4571-8fa5-d907cb7d6ef6" - ], - "x-ms-correlation-request-id": [ - "46102edb-37ba-40ea-ade5-a48eee80bc3d" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14853" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193120Z:46102edb-37ba-40ea-ade5-a48eee80bc3d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"161d2969192b4330afd8c50ec70be923\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://112srp02test112.blob.local.azurestack.external/\",\r\n \"queue\": \"https://112srp02test112.queue.local.azurestack.external/\",\r\n \"table\": \"https://112srp02test112.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 7:43:30 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 7:43:30 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 7:43:30 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/112srp02test112\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"112srp02test112\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"161d2969192b4330afd8c50ec70be923\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/6/2019 7:43:30 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/161d2969192b4330afd8c50ec70be923\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"3cca152472c84ce58d24546fa28670f7\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://505srp02test505.blob.local.azurestack.external/\",\r\n \"queue\": \"https://505srp02test505.queue.local.azurestack.external/\",\r\n \"table\": \"https://505srp02test505.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 7:11:09 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 7:11:09 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 7:11:09 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/505srp02test505\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"505srp02test505\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"3cca152472c84ce58d24546fa28670f7\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/6/2019 7:11:09 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/3cca152472c84ce58d24546fa28670f7\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"a34ab1167f1e4cb5b45865bc761ad5af\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://972srp02test972.blob.local.azurestack.external/\",\r\n \"queue\": \"https://972srp02test972.queue.local.azurestack.external/\",\r\n \"table\": \"https://972srp02test972.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 6:52:55 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 6:52:55 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/6/2019 6:52:55 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/972srp02test972\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"972srp02test972\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"a34ab1167f1e4cb5b45865bc761ad5af\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/6/2019 6:52:55 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/a34ab1167f1e4cb5b45865bc761ad5af\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"287904ee8f424b8cb33774793b628d37\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://account0b5e0e0c5543418.blob.local.azurestack.external/\",\r\n \"queue\": \"https://account0b5e0e0c5543418.queue.local.azurestack.external/\",\r\n \"table\": \"https://account0b5e0e0c5543418.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:48:40 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:48:40 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:48:40 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/xrprgtestggoqug/providers/Microsoft.Storage/storageAccounts/account0b5e0e0c5543418\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"account0b5e0e0c5543418\",\r\n \"tenantResourceGroupName\": \"xrprgtestggoqug\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"287904ee8f424b8cb33774793b628d37\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:48:40 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/287904ee8f424b8cb33774793b628d37\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"57dbe5ba426f421f8af4f70b03f8b83a\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://account39a28a838e4d454.blob.local.azurestack.external/\",\r\n \"queue\": \"https://account39a28a838e4d454.queue.local.azurestack.external/\",\r\n \"table\": \"https://account39a28a838e4d454.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:25:44 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:25:44 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:25:44 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/xrprgtestapexrs/providers/Microsoft.Storage/storageAccounts/account39a28a838e4d454\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"account39a28a838e4d454\",\r\n \"tenantResourceGroupName\": \"xrprgtestapexrs\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"57dbe5ba426f421f8af4f70b03f8b83a\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:25:44 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/57dbe5ba426f421f8af4f70b03f8b83a\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"7186b489ab9f42cd8c3b278c72abfb30\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://accountb5eafb70c159445b9.blob.local.azurestack.external/\",\r\n \"queue\": \"https://accountb5eafb70c159445b9.queue.local.azurestack.external/\",\r\n \"table\": \"https://accountb5eafb70c159445b9.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:51:28 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:51:28 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:51:28 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/xrprgtestggoqug/providers/Microsoft.Storage/storageAccounts/accountb5eafb70c159445b9\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"accountb5eafb70c159445b9\",\r\n \"tenantResourceGroupName\": \"xrprgtestggoqug\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"7186b489ab9f42cd8c3b278c72abfb30\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:51:28 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/7186b489ab9f42cd8c3b278c72abfb30\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"5c4bbb40093549f08e0ff1e8190a6bb5\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://accountec581e1d0dba4b2.blob.local.azurestack.external/\",\r\n \"queue\": \"https://accountec581e1d0dba4b2.queue.local.azurestack.external/\",\r\n \"table\": \"https://accountec581e1d0dba4b2.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:51:33 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:51:33 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:51:33 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/xrprgtestgwmeqg/providers/Microsoft.Storage/storageAccounts/accountec581e1d0dba4b2\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"accountec581e1d0dba4b2\",\r\n \"tenantResourceGroupName\": \"xrprgtestgwmeqg\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"5c4bbb40093549f08e0ff1e8190a6bb5\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:51:33 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/5c4bbb40093549f08e0ff1e8190a6bb5\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"a3cb304128304b2984406244ac1c0734\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclprodbackup.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclprodbackup.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclprodbackup.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:30 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:30 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:30 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageAccounts/adminkvlclprodbackup\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"adminkvlclprodbackup\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"a3cb304128304b2984406244ac1c0734\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:30 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/a3cb304128304b2984406244ac1c0734\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"0939bebf584c4aaeaf32f2ff1510f010\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata001.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata001.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata001.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:52 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:52 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:52 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageAccounts/adminkvlclproddata001\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata001\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"0939bebf584c4aaeaf32f2ff1510f010\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:52 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/0939bebf584c4aaeaf32f2ff1510f010\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"80369ee57bd04f7787319a6637fc5606\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata002.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata002.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata002.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:55 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:55 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:55 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageAccounts/adminkvlclproddata002\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata002\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"80369ee57bd04f7787319a6637fc5606\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:55 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/80369ee57bd04f7787319a6637fc5606\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"f872844aae664f18a67eace8a7dc3736\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata003.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata003.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata003.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:56 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:56 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:56 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageAccounts/adminkvlclproddata003\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata003\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"f872844aae664f18a67eace8a7dc3736\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:56 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/f872844aae664f18a67eace8a7dc3736\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"4d7e9ada2c6a4858bd9adb2fe1274412\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata004.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata004.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata004.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:57 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:57 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:57 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageAccounts/adminkvlclproddata004\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata004\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"4d7e9ada2c6a4858bd9adb2fe1274412\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:57 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/4d7e9ada2c6a4858bd9adb2fe1274412\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"e3744b99afb74ac6b555a7c954252744\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvlclproddata005.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvlclproddata005.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvlclproddata005.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:57 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:57 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:57 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageAccounts/adminkvlclproddata005\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"adminkvlclproddata005\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"e3744b99afb74ac6b555a7c954252744\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:57 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/e3744b99afb74ac6b555a7c954252744\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"5e025d6176d446d39cda464dc750edcb\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvstoreprodlcl.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvstoreprodlcl.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvstoreprodlcl.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:29 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:29 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:29 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageAccounts/adminkvstoreprodlcl\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"adminkvstoreprodlcl\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"5e025d6176d446d39cda464dc750edcb\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:29 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/5e025d6176d446d39cda464dc750edcb\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"14d24a720da64b378ce945cb1de4f6a9\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://adminkvusage.blob.local.azurestack.external/\",\r\n \"queue\": \"https://adminkvusage.queue.local.azurestack.external/\",\r\n \"table\": \"https://adminkvusage.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:30 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:30 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:30 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.adminkeyvault/providers/Microsoft.Storage/storageAccounts/adminkvusage\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"adminkvusage\",\r\n \"tenantResourceGroupName\": \"system.local.adminkeyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"14d24a720da64b378ce945cb1de4f6a9\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:30 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/14d24a720da64b378ce945cb1de4f6a9\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"ce7c53b5a4dc4124988748ac9ebd3846\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://armadminprod.blob.local.azurestack.external/\",\r\n \"queue\": \"https://armadminprod.queue.local.azurestack.external/\",\r\n \"table\": \"https://armadminprod.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/armadminprod\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"armadminprod\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"ce7c53b5a4dc4124988748ac9ebd3846\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/ce7c53b5a4dc4124988748ac9ebd3846\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"64fbb5fc13fc4463b5467e6f18e3dcf0\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://armprod.blob.local.azurestack.external/\",\r\n \"queue\": \"https://armprod.queue.local.azurestack.external/\",\r\n \"table\": \"https://armprod.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/armprod\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"armprod\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"64fbb5fc13fc4463b5467e6f18e3dcf0\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/64fbb5fc13fc4463b5467e6f18e3dcf0\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"338890ebeee84074bd1f61b41b471c16\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://authadminprod.blob.local.azurestack.external/\",\r\n \"queue\": \"https://authadminprod.queue.local.azurestack.external/\",\r\n \"table\": \"https://authadminprod.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:33 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:33 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:33 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/authadminprod\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"authadminprod\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"338890ebeee84074bd1f61b41b471c16\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:33 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/338890ebeee84074bd1f61b41b471c16\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"f12c40fd5b6c45e6b62abe9b32d49ca0\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://authprod.blob.local.azurestack.external/\",\r\n \"queue\": \"https://authprod.queue.local.azurestack.external/\",\r\n \"table\": \"https://authprod.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/authprod\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"authprod\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"f12c40fd5b6c45e6b62abe9b32d49ca0\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/f12c40fd5b6c45e6b62abe9b32d49ca0\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"c5694dbdc21047828f206a7a1821aaae\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://azurebridgerp.blob.local.azurestack.external/\",\r\n \"queue\": \"https://azurebridgerp.queue.local.azurestack.external/\",\r\n \"table\": \"https://azurebridgerp.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/azurebridgerp\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"azurebridgerp\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"c5694dbdc21047828f206a7a1821aaae\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/c5694dbdc21047828f206a7a1821aaae\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"feedde92f4bb4a96a7fabf54498bcc00\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://bcdrbvtsa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://bcdrbvtsa.queue.local.azurestack.external/\",\r\n \"table\": \"https://bcdrbvtsa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 3:57:16 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 3:57:16 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 3:57:16 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/bcdrbvtsa\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"bcdrbvtsa\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"feedde92f4bb4a96a7fabf54498bcc00\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 3:57:16 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/feedde92f4bb4a96a7fabf54498bcc00\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"6aa9acaf71864043a1e332c0863a6e32\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://brphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://brphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://brphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:29 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:29 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:29 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/brphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"brphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"6aa9acaf71864043a1e332c0863a6e32\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:29 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/6aa9acaf71864043a1e332c0863a6e32\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"c25e6613c3494ebf877e0c83847a2114\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cnur72654921sa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://cnur72654921sa.queue.local.azurestack.external/\",\r\n \"table\": \"https://cnur72654921sa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:41:13 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:41:13 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:41:13 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/e9f9bfc4-adfa-4082-ae8b-144b186ab1a1/resourcegroups/cnur7265/providers/Microsoft.Storage/storageAccounts/cnur72654921sa\",\r\n \"tenantSubscriptionId\": \"e9f9bfc4-adfa-4082-ae8b-144b186ab1a1\",\r\n \"tenantStorageAccountName\": \"cnur72654921sa\",\r\n \"tenantResourceGroupName\": \"cnur7265\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"c25e6613c3494ebf877e0c83847a2114\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:41:13 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/c25e6613c3494ebf877e0c83847a2114\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"650d0726cbbd4ebcb76c03c6c6d957c7\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cnvr91sa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://cnvr91sa.queue.local.azurestack.external/\",\r\n \"table\": \"https://cnvr91sa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:15 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:15 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:15 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/e9f9bfc4-adfa-4082-ae8b-144b186ab1a1/resourcegroups/cnvr9/providers/Microsoft.Storage/storageAccounts/cnvr91sa\",\r\n \"tenantSubscriptionId\": \"e9f9bfc4-adfa-4082-ae8b-144b186ab1a1\",\r\n \"tenantStorageAccountName\": \"cnvr91sa\",\r\n \"tenantResourceGroupName\": \"cnvr9\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"650d0726cbbd4ebcb76c03c6c6d957c7\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:47:15 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/650d0726cbbd4ebcb76c03c6c6d957c7\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"bed148cdd2524f8da9c3788cce3cc023\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cnvr92sa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://cnvr92sa.queue.local.azurestack.external/\",\r\n \"table\": \"https://cnvr92sa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:20 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:20 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:20 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/e9f9bfc4-adfa-4082-ae8b-144b186ab1a1/resourcegroups/cnvr9/providers/Microsoft.Storage/storageAccounts/cnvr92sa\",\r\n \"tenantSubscriptionId\": \"e9f9bfc4-adfa-4082-ae8b-144b186ab1a1\",\r\n \"tenantStorageAccountName\": \"cnvr92sa\",\r\n \"tenantResourceGroupName\": \"cnvr9\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"bed148cdd2524f8da9c3788cce3cc023\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:47:20 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/bed148cdd2524f8da9c3788cce3cc023\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"dc8cb1efbc144b1abee3ccf21f876d8a\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cnvr93sa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://cnvr93sa.queue.local.azurestack.external/\",\r\n \"table\": \"https://cnvr93sa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:19 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:19 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:19 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/e9f9bfc4-adfa-4082-ae8b-144b186ab1a1/resourcegroups/cnvr9/providers/Microsoft.Storage/storageAccounts/cnvr93sa\",\r\n \"tenantSubscriptionId\": \"e9f9bfc4-adfa-4082-ae8b-144b186ab1a1\",\r\n \"tenantStorageAccountName\": \"cnvr93sa\",\r\n \"tenantResourceGroupName\": \"cnvr9\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"dc8cb1efbc144b1abee3ccf21f876d8a\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:47:19 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/dc8cb1efbc144b1abee3ccf21f876d8a\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"6516f1d584a34d3e944e8bd5d01fa732\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cnvr94sa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://cnvr94sa.queue.local.azurestack.external/\",\r\n \"table\": \"https://cnvr94sa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:16 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:16 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:47:16 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/e9f9bfc4-adfa-4082-ae8b-144b186ab1a1/resourcegroups/cnvr9/providers/Microsoft.Storage/storageAccounts/cnvr94sa\",\r\n \"tenantSubscriptionId\": \"e9f9bfc4-adfa-4082-ae8b-144b186ab1a1\",\r\n \"tenantStorageAccountName\": \"cnvr94sa\",\r\n \"tenantResourceGroupName\": \"cnvr9\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"6516f1d584a34d3e944e8bd5d01fa732\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:47:16 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/6516f1d584a34d3e944e8bd5d01fa732\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"6857c879a31c4ff48956748881efbd40\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crpeventsaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://crpeventsaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://crpeventsaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:41 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:41 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:41 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/crpeventsaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"crpeventsaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"6857c879a31c4ff48956748881efbd40\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:41 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/6857c879a31c4ff48956748881efbd40\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"9953cac373334354828e593e62c66b8d\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://crphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://crphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:41 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:41 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:41 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/crphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"crphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"9953cac373334354828e593e62c66b8d\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:41 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/9953cac373334354828e593e62c66b8d\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"851a1e1e996045298d59a35ad29a8582\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crpusageaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://crpusageaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://crpusageaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:42 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:42 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:42 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/crpusageaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"crpusageaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"851a1e1e996045298d59a35ad29a8582\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:42 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/851a1e1e996045298d59a35ad29a8582\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"d6eae104e11f43129aaf8950619d8b72\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://deploymentrp.blob.local.azurestack.external/\",\r\n \"queue\": \"https://deploymentrp.queue.local.azurestack.external/\",\r\n \"table\": \"https://deploymentrp.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/deploymentrp\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"deploymentrp\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"d6eae104e11f43129aaf8950619d8b72\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/d6eae104e11f43129aaf8950619d8b72\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"064454e138b446cba667db3fde601772\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://diagsetsaprimary.blob.local.azurestack.external/\",\r\n \"queue\": \"https://diagsetsaprimary.queue.local.azurestack.external/\",\r\n \"table\": \"https://diagsetsaprimary.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:49 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:49 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:49 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.AzureMonitor/providers/Microsoft.Storage/storageAccounts/diagsetsaprimary\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"diagsetsaprimary\",\r\n \"tenantResourceGroupName\": \"system.local.AzureMonitor\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"064454e138b446cba667db3fde601772\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:49 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/064454e138b446cba667db3fde601772\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"df9af90cffe54fbd904bb6df4699fb8f\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://diagsetsaprimaryadmin.blob.local.azurestack.external/\",\r\n \"queue\": \"https://diagsetsaprimaryadmin.queue.local.azurestack.external/\",\r\n \"table\": \"https://diagsetsaprimaryadmin.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:31 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:31 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:31 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.AzureMonitor/providers/Microsoft.Storage/storageAccounts/diagsetsaprimaryadmin\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"diagsetsaprimaryadmin\",\r\n \"tenantResourceGroupName\": \"system.local.AzureMonitor\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"df9af90cffe54fbd904bb6df4699fb8f\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:31 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/df9af90cffe54fbd904bb6df4699fb8f\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"66343e89738549388f9678fb3604e579\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://diskhealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://diskhealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://diskhealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:33 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:33 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:33 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/diskhealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"diskhealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"66343e89738549388f9678fb3604e579\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:33 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/66343e89738549388f9678fb3604e579\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"2ac24401adaf4197803f847628138250\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://diskusageaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://diskusageaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://diskusageaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:34 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:34 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:34 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/diskusageaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"diskusageaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"2ac24401adaf4197803f847628138250\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:34 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/2ac24401adaf4197803f847628138250\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"f3e01aa9fe0541e79cf7c9fa9240906f\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://extensionpackages.blob.local.azurestack.external/\",\r\n \"queue\": \"https://extensionpackages.queue.local.azurestack.external/\",\r\n \"table\": \"https://extensionpackages.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/extensionpackages\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"extensionpackages\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"f3e01aa9fe0541e79cf7c9fa9240906f\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/f3e01aa9fe0541e79cf7c9fa9240906f\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"77bec2066b084c5a9b976fd040de93b2\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://frphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://frphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://frphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:02 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:02 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:02 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/frphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"frphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"77bec2066b084c5a9b976fd040de93b2\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:02 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/77bec2066b084c5a9b976fd040de93b2\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"5982e4d694354b39ac0b938f89a868c0\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://hintserviceacc.blob.local.azurestack.external/\",\r\n \"queue\": \"https://hintserviceacc.queue.local.azurestack.external/\",\r\n \"table\": \"https://hintserviceacc.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:22 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:22 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:22 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/hintserviceacc\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"hintserviceacc\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"5982e4d694354b39ac0b938f89a868c0\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:22 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/5982e4d694354b39ac0b938f89a868c0\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"c6af7a075fe64d35adf34651cee28960\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://hrphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://hrphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://hrphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:22 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:22 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:22 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/hrphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"hrphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"c6af7a075fe64d35adf34651cee28960\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:22 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/c6af7a075fe64d35adf34651cee28960\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"740b452ed8c94dc581edca12a19fad2c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://ibcstaging.blob.local.azurestack.external/\",\r\n \"queue\": \"https://ibcstaging.queue.local.azurestack.external/\",\r\n \"table\": \"https://ibcstaging.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:00 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:00 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:00 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/ibcstaging\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"ibcstaging\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"740b452ed8c94dc581edca12a19fad2c\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:00 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/740b452ed8c94dc581edca12a19fad2c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"62b7f44913704d53bddeee884dfd57bf\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclprodbackup.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclprodbackup.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclprodbackup.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:40 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:40 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:40 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageAccounts/kvlclprodbackup\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvlclprodbackup\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"62b7f44913704d53bddeee884dfd57bf\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:40 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/62b7f44913704d53bddeee884dfd57bf\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"df99cdb4bf4e4900ad0b755d81ea182b\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata001.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata001.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata001.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:10 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:10 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:10 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageAccounts/kvlclproddata001\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvlclproddata001\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"df99cdb4bf4e4900ad0b755d81ea182b\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:10 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/df99cdb4bf4e4900ad0b755d81ea182b\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"02cfd6e2e9c84a70ba5c56d7c1955457\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata002.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata002.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata002.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:11 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:11 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:11 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageAccounts/kvlclproddata002\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvlclproddata002\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"02cfd6e2e9c84a70ba5c56d7c1955457\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:11 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/02cfd6e2e9c84a70ba5c56d7c1955457\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"1db4b47714aa413ca5946906b1b35753\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata003.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata003.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata003.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:12 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:12 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:12 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageAccounts/kvlclproddata003\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvlclproddata003\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"1db4b47714aa413ca5946906b1b35753\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:12 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/1db4b47714aa413ca5946906b1b35753\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"a5ab43038ead4b579fa4893f3620df51\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata004.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata004.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata004.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:12 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:12 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:12 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageAccounts/kvlclproddata004\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvlclproddata004\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"a5ab43038ead4b579fa4893f3620df51\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:12 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/a5ab43038ead4b579fa4893f3620df51\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"430bef19e7a6481e896d42d8b6acd18e\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvlclproddata005.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvlclproddata005.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvlclproddata005.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:13 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:13 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:13 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageAccounts/kvlclproddata005\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvlclproddata005\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"430bef19e7a6481e896d42d8b6acd18e\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:13 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/430bef19e7a6481e896d42d8b6acd18e\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"51d83b74202a45bf92be8d1fe4b62d7c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvrphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvrphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvrphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:14 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:14 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:14 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/kvrphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvrphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"51d83b74202a45bf92be8d1fe4b62d7c\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:14 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/51d83b74202a45bf92be8d1fe4b62d7c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"ac2089a9551a481aaea1f9f567f68dec\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvstoreprodlcl.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvstoreprodlcl.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvstoreprodlcl.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:39 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:39 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:39 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageAccounts/kvstoreprodlcl\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvstoreprodlcl\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"ac2089a9551a481aaea1f9f567f68dec\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:39 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/ac2089a9551a481aaea1f9f567f68dec\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"5142147549c14b38a69edfe80eda0ddb\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvusage.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvusage.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvusage.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:41 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:41 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:41 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.keyvault/providers/Microsoft.Storage/storageAccounts/kvusage\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvusage\",\r\n \"tenantResourceGroupName\": \"system.local.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"5142147549c14b38a69edfe80eda0ddb\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:41 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/5142147549c14b38a69edfe80eda0ddb\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"94120346959148b6bbb646280f395561\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://kvvnsproddata.blob.local.azurestack.external/\",\r\n \"queue\": \"https://kvvnsproddata.queue.local.azurestack.external/\",\r\n \"table\": \"https://kvvnsproddata.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:04 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:04 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:04 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.keyvault/providers/Microsoft.Storage/storageAccounts/kvvnsproddata\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"kvvnsproddata\",\r\n \"tenantResourceGroupName\": \"system.keyvault\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"94120346959148b6bbb646280f395561\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:04 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/94120346959148b6bbb646280f395561\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"3f7056fa43f34153bbccf3c424dc8419\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://md-000bvzpxsyogq4.blob.local.azurestack.external/\",\r\n \"queue\": \"https://md-000bvzpxsyogq4.queue.local.azurestack.external/\",\r\n \"table\": \"https://md-000bvzpxsyogq4.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:32:36 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:32:36 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:32:36 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/System.local/providers/Microsoft.Storage/storageAccounts/md-000bvzpxsyogq4\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"md-000bvzpxsyogq4\",\r\n \"tenantResourceGroupName\": \"System.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"3f7056fa43f34153bbccf3c424dc8419\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:32:36 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/3f7056fa43f34153bbccf3c424dc8419\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"7b7d6df983f0474d8a2929b62c6043db\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://md-000ti1db.blob.local.azurestack.external/\",\r\n \"queue\": \"https://md-000ti1db.queue.local.azurestack.external/\",\r\n \"table\": \"https://md-000ti1db.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:48:54 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:48:54 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:48:54 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/System.local/providers/Microsoft.Storage/storageAccounts/md-000ti1db\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"md-000ti1db\",\r\n \"tenantResourceGroupName\": \"System.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"7b7d6df983f0474d8a2929b62c6043db\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:48:54 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/7b7d6df983f0474d8a2929b62c6043db\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"ed4532a3330d41758a3e8b90bda208d9\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://mdmcachesvcacc00.blob.local.azurestack.external/\",\r\n \"queue\": \"https://mdmcachesvcacc00.queue.local.azurestack.external/\",\r\n \"table\": \"https://mdmcachesvcacc00.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:16 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:16 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:16 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/mdmcachesvcacc00\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"mdmcachesvcacc00\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"ed4532a3330d41758a3e8b90bda208d9\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:16 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/ed4532a3330d41758a3e8b90bda208d9\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"944148a44cbd4b34856689c2508e7c37\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://mdmcachesvcacc01.blob.local.azurestack.external/\",\r\n \"queue\": \"https://mdmcachesvcacc01.queue.local.azurestack.external/\",\r\n \"table\": \"https://mdmcachesvcacc01.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:17 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:17 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:17 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/mdmcachesvcacc01\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"mdmcachesvcacc01\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"944148a44cbd4b34856689c2508e7c37\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:17 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/944148a44cbd4b34856689c2508e7c37\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"3524ef087be34c7595c4ed54bc196b2b\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://mdmcachesvcacc02.blob.local.azurestack.external/\",\r\n \"queue\": \"https://mdmcachesvcacc02.queue.local.azurestack.external/\",\r\n \"table\": \"https://mdmcachesvcacc02.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:17 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:17 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:17 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/mdmcachesvcacc02\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"mdmcachesvcacc02\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"3524ef087be34c7595c4ed54bc196b2b\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:17 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/3524ef087be34c7595c4ed54bc196b2b\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"30cebc847e884d6da43ee24b1ef3f4f7\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://mdmcachesvcacc03.blob.local.azurestack.external/\",\r\n \"queue\": \"https://mdmcachesvcacc03.queue.local.azurestack.external/\",\r\n \"table\": \"https://mdmcachesvcacc03.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:18 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:18 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:18 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/mdmcachesvcacc03\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"mdmcachesvcacc03\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"30cebc847e884d6da43ee24b1ef3f4f7\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:18 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/30cebc847e884d6da43ee24b1ef3f4f7\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"f5362a7ac8da4678a21176809b2e577d\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://mdmcachesvcacc04.blob.local.azurestack.external/\",\r\n \"queue\": \"https://mdmcachesvcacc04.queue.local.azurestack.external/\",\r\n \"table\": \"https://mdmcachesvcacc04.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:21 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:21 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:21 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/mdmcachesvcacc04\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"mdmcachesvcacc04\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"f5362a7ac8da4678a21176809b2e577d\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:21 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/f5362a7ac8da4678a21176809b2e577d\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"598f7339cc4a4713979f317a4c0c7467\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://mdmconfigacc.blob.local.azurestack.external/\",\r\n \"queue\": \"https://mdmconfigacc.queue.local.azurestack.external/\",\r\n \"table\": \"https://mdmconfigacc.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:27 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:27 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:27 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/mdmconfigacc\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"mdmconfigacc\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"598f7339cc4a4713979f317a4c0c7467\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:27 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/598f7339cc4a4713979f317a4c0c7467\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"c2f733330d144c308afe6d477cac04c8\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://metricsrpsa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://metricsrpsa.queue.local.azurestack.external/\",\r\n \"table\": \"https://metricsrpsa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:06 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:06 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:06 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.AzureMonitor/providers/Microsoft.Storage/storageAccounts/metricsrpsa\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"metricsrpsa\",\r\n \"tenantResourceGroupName\": \"system.local.AzureMonitor\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"c2f733330d144c308afe6d477cac04c8\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:06 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/c2f733330d144c308afe6d477cac04c8\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"b4003b09031f4779973792ee578bd9d7\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://metricsrpsaadmin.blob.local.azurestack.external/\",\r\n \"queue\": \"https://metricsrpsaadmin.queue.local.azurestack.external/\",\r\n \"table\": \"https://metricsrpsaadmin.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:08 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:08 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:08 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.AzureMonitor/providers/Microsoft.Storage/storageAccounts/metricsrpsaadmin\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"metricsrpsaadmin\",\r\n \"tenantResourceGroupName\": \"system.local.AzureMonitor\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"b4003b09031f4779973792ee578bd9d7\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:08 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/b4003b09031f4779973792ee578bd9d7\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"9ea9d696319f40c4bce8e74ae1714ae6\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://metricsstoreacc0.blob.local.azurestack.external/\",\r\n \"queue\": \"https://metricsstoreacc0.queue.local.azurestack.external/\",\r\n \"table\": \"https://metricsstoreacc0.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:23 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:23 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:23 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/metricsstoreacc0\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"metricsstoreacc0\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"9ea9d696319f40c4bce8e74ae1714ae6\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:23 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/9ea9d696319f40c4bce8e74ae1714ae6\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"8e83e5950cea4d8c980a24735861a11e\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://metricsstoreacc1.blob.local.azurestack.external/\",\r\n \"queue\": \"https://metricsstoreacc1.queue.local.azurestack.external/\",\r\n \"table\": \"https://metricsstoreacc1.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:24 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:24 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:24 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/metricsstoreacc1\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"metricsstoreacc1\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"8e83e5950cea4d8c980a24735861a11e\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:24 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/8e83e5950cea4d8c980a24735861a11e\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"703dc2d6c3fa434a9dc230fb87096826\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://metricsstoreacc2.blob.local.azurestack.external/\",\r\n \"queue\": \"https://metricsstoreacc2.queue.local.azurestack.external/\",\r\n \"table\": \"https://metricsstoreacc2.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:25 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:25 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:25 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/metricsstoreacc2\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"metricsstoreacc2\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"703dc2d6c3fa434a9dc230fb87096826\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:25 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/703dc2d6c3fa434a9dc230fb87096826\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"d2ad82d81a1342a6b9705a83792733a8\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://metricsstoreacc3.blob.local.azurestack.external/\",\r\n \"queue\": \"https://metricsstoreacc3.queue.local.azurestack.external/\",\r\n \"table\": \"https://metricsstoreacc3.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:25 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:25 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:25 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/metricsstoreacc3\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"metricsstoreacc3\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"d2ad82d81a1342a6b9705a83792733a8\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:25 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/d2ad82d81a1342a6b9705a83792733a8\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"1ab19101400a40488404bd16bea8e5d0\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://metricsstoreacc4.blob.local.azurestack.external/\",\r\n \"queue\": \"https://metricsstoreacc4.queue.local.azurestack.external/\",\r\n \"table\": \"https://metricsstoreacc4.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:26 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:26 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:26 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/metricsstoreacc4\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"metricsstoreacc4\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"1ab19101400a40488404bd16bea8e5d0\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:26 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/1ab19101400a40488404bd16bea8e5d0\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"2170af5ed61a4069b57f18e6a9a29cd2\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://monitoringrepositorysa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://monitoringrepositorysa.queue.local.azurestack.external/\",\r\n \"table\": \"https://monitoringrepositorysa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:49 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:49 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:49 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.AzureMonitor/providers/Microsoft.Storage/storageAccounts/monitoringrepositorysa\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"monitoringrepositorysa\",\r\n \"tenantResourceGroupName\": \"system.local.AzureMonitor\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"2170af5ed61a4069b57f18e6a9a29cd2\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:49 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/2170af5ed61a4069b57f18e6a9a29cd2\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"645c6b03d5cf41d98bbd2f39c41b036f\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://nrpeventsaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://nrpeventsaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://nrpeventsaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:05 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:05 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:05 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/nrpeventsaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"nrpeventsaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"645c6b03d5cf41d98bbd2f39c41b036f\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:05 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/645c6b03d5cf41d98bbd2f39c41b036f\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"4f42cba0545947218bb90e724f826eff\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://nrphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://nrphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://nrphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:05 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:05 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:05 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/nrphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"nrphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"4f42cba0545947218bb90e724f826eff\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:05 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/4f42cba0545947218bb90e724f826eff\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"8c857a44ac7b4e269fad63b294ee62b2\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://nrpusageaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://nrpusageaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://nrpusageaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:06 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:06 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:06 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/nrpusageaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"nrpusageaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"8c857a44ac7b4e269fad63b294ee62b2\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:06 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/8c857a44ac7b4e269fad63b294ee62b2\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"c4b9ab7014904681bee02c34bd751d7a\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://obometadata.blob.local.azurestack.external/\",\r\n \"queue\": \"https://obometadata.queue.local.azurestack.external/\",\r\n \"table\": \"https://obometadata.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:36 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:36 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:36 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.AzureMonitor/providers/Microsoft.Storage/storageAccounts/obometadata\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"obometadata\",\r\n \"tenantResourceGroupName\": \"system.local.AzureMonitor\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"c4b9ab7014904681bee02c34bd751d7a\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:36 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/c4b9ab7014904681bee02c34bd751d7a\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"2e4b8c28f8f747daa81cc57e8a7a1726\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://obometadataadmin.blob.local.azurestack.external/\",\r\n \"queue\": \"https://obometadataadmin.queue.local.azurestack.external/\",\r\n \"table\": \"https://obometadataadmin.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:37 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:37 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:37 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.AzureMonitor/providers/Microsoft.Storage/storageAccounts/obometadataadmin\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"obometadataadmin\",\r\n \"tenantResourceGroupName\": \"system.local.AzureMonitor\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"2e4b8c28f8f747daa81cc57e8a7a1726\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:37 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/2e4b8c28f8f747daa81cc57e8a7a1726\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"4d6d4612160d49eeafddc5d58badcadb\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://onboardrpdatasa.blob.local.azurestack.external/\",\r\n \"queue\": \"https://onboardrpdatasa.queue.local.azurestack.external/\",\r\n \"table\": \"https://onboardrpdatasa.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:44 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:44 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:44 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.AzureMonitor/providers/Microsoft.Storage/storageAccounts/onboardrpdatasa\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"onboardrpdatasa\",\r\n \"tenantResourceGroupName\": \"system.local.AzureMonitor\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"4d6d4612160d49eeafddc5d58badcadb\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:44 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/4d6d4612160d49eeafddc5d58badcadb\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"55e0c73a2365487e94cba8225fd85b8c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://portalhostingrp.blob.local.azurestack.external/\",\r\n \"queue\": \"https://portalhostingrp.queue.local.azurestack.external/\",\r\n \"table\": \"https://portalhostingrp.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:29 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:29 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:29 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/portalhostingrp\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"portalhostingrp\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"55e0c73a2365487e94cba8225fd85b8c\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:29 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/55e0c73a2365487e94cba8225fd85b8c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"64c8d5e5df6a42c694dbd61262b52191\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://publicportalhostingrp.blob.local.azurestack.external/\",\r\n \"queue\": \"https://publicportalhostingrp.queue.local.azurestack.external/\",\r\n \"table\": \"https://publicportalhostingrp.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/publicportalhostingrp\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"publicportalhostingrp\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"64c8d5e5df6a42c694dbd61262b52191\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/64c8d5e5df6a42c694dbd61262b52191\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"8501902ca0cd4e63a0da28da03e02f4c\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://publicsystemevents.blob.local.azurestack.external/\",\r\n \"queue\": \"https://publicsystemevents.queue.local.azurestack.external/\",\r\n \"table\": \"https://publicsystemevents.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:27 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:27 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:27 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/publicsystemevents\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"publicsystemevents\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"8501902ca0cd4e63a0da28da03e02f4c\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:27 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/8501902ca0cd4e63a0da28da03e02f4c\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"b06d2f9e795041a5b8038f964392fd51\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://publicsystemportal.blob.local.azurestack.external/\",\r\n \"queue\": \"https://publicsystemportal.queue.local.azurestack.external/\",\r\n \"table\": \"https://publicsystemportal.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/publicsystemportal\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"publicsystemportal\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"b06d2f9e795041a5b8038f964392fd51\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/b06d2f9e795041a5b8038f964392fd51\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"9c22af53e46244699a2f8187ae4c5e76\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sbrphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://sbrphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://sbrphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:02 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:02 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:02 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/sbrphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"sbrphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"9c22af53e46244699a2f8187ae4c5e76\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:02 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/9c22af53e46244699a2f8187ae4c5e76\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"2f1daa81bc224ed68b556593d3b5b5df\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://secondhintserviceacc.blob.local.azurestack.external/\",\r\n \"queue\": \"https://secondhintserviceacc.queue.local.azurestack.external/\",\r\n \"table\": \"https://secondhintserviceacc.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:23 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:23 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:23 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local.MDM/providers/Microsoft.Storage/storageAccounts/secondhintserviceacc\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"secondhintserviceacc\",\r\n \"tenantResourceGroupName\": \"system.local.MDM\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"2f1daa81bc224ed68b556593d3b5b5df\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:23 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/2f1daa81bc224ed68b556593d3b5b5df\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"51068b684780438ca233303c1969dede\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://sfphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://sfphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://sfphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:46 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:46 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:46 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/sfphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"sfphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"51068b684780438ca233303c1969dede\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:46 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/51068b684780438ca233303c1969dede\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"05db89bad35341c6ae0748c814cb5fca\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srpeventsaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srpeventsaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srpeventsaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:33 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:33 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:33 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/srpeventsaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"srpeventsaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"05db89bad35341c6ae0748c814cb5fca\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:33 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/05db89bad35341c6ae0748c814cb5fca\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"874ac5b42e9d4c9b9c8c1ca4adc15adf\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:32 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:32 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:32 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/srphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"srphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"874ac5b42e9d4c9b9c8c1ca4adc15adf\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:32 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/874ac5b42e9d4c9b9c8c1ca4adc15adf\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"36c7de49f5a94efd9dc2fff290e4f92f\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srphyadmaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srphyadmaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srphyadmaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:38 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:38 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:38 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/srphyadmaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"srphyadmaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"36c7de49f5a94efd9dc2fff290e4f92f\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:38 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/36c7de49f5a94efd9dc2fff290e4f92f\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"1500aae54fa64b66bb994e8b6e09c9c1\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srphytenaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srphytenaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srphytenaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:38 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:38 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:38 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/srphytenaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"srphytenaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"1500aae54fa64b66bb994e8b6e09c9c1\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:38 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/1500aae54fa64b66bb994e8b6e09c9c1\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"81c8020224744cdc83905cf9b60d7859\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://srpusageaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://srpusageaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://srpusageaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:37 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:37 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:37 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/srpusageaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"srpusageaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"81c8020224744cdc83905cf9b60d7859\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:37 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/81c8020224744cdc83905cf9b60d7859\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"263c3a055c2f48d0a99703739ace8142\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://systemevents.blob.local.azurestack.external/\",\r\n \"queue\": \"https://systemevents.queue.local.azurestack.external/\",\r\n \"table\": \"https://systemevents.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:43 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:43 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:52:43 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/systemevents\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"systemevents\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"263c3a055c2f48d0a99703739ace8142\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:52:43 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/263c3a055c2f48d0a99703739ace8142\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"ca8b593ba5374c3082ab0ed50bb81a41\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://systemgallery.blob.local.azurestack.external/\",\r\n \"queue\": \"https://systemgallery.queue.local.azurestack.external/\",\r\n \"table\": \"https://systemgallery.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:30 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/systemgallery\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"systemgallery\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"ca8b593ba5374c3082ab0ed50bb81a41\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:30 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/ca8b593ba5374c3082ab0ed50bb81a41\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"eb3455a164b941939a508671b4b642a5\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://systemportal.blob.local.azurestack.external/\",\r\n \"queue\": \"https://systemportal.queue.local.azurestack.external/\",\r\n \"table\": \"https://systemportal.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:33 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:33 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:33 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/systemportal\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"systemportal\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"eb3455a164b941939a508671b4b642a5\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:33 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/eb3455a164b941939a508671b4b642a5\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"eb9c63f8fa9c427084c8e5d00d27ded3\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://systemtemp.blob.local.azurestack.external/\",\r\n \"queue\": \"https://systemtemp.queue.local.azurestack.external/\",\r\n \"table\": \"https://systemtemp.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:24 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:24 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:24 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/systemtemp\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"systemtemp\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"eb9c63f8fa9c427084c8e5d00d27ded3\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:24 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/eb9c63f8fa9c427084c8e5d00d27ded3\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"2b55957ef12143b5a0d9fb79d74229fd\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://tenantextaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://tenantextaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://tenantextaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:32 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/tenantextaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"tenantextaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"2b55957ef12143b5a0d9fb79d74229fd\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:32 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/2b55957ef12143b5a0d9fb79d74229fd\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"2a194b24858443e39e23ebf319931d01\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://tenantextadminaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://tenantextadminaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://tenantextadminaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:23:31 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/tenantextadminaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"tenantextadminaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"2a194b24858443e39e23ebf319931d01\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:23:31 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/2a194b24858443e39e23ebf319931d01\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"b742f01b2f4b426b9323c3e11007abf9\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://updateadminaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://updateadminaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://updateadminaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:50:59 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:50:59 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:50:59 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/updateadminaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"updateadminaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"b742f01b2f4b426b9323c3e11007abf9\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:50:59 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/b742f01b2f4b426b9323c3e11007abf9\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"8b64694a95ae4b30ab1aec8b83bfa9e1\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://urphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://urphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://urphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:50:57 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:50:57 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:50:57 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/urphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"urphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"8b64694a95ae4b30ab1aec8b83bfa9e1\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:50:57 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/8b64694a95ae4b30ab1aec8b83bfa9e1\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"0a20e097132d4e5195f7a60f95da344b\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vhdsto2e4caea5.blob.local.azurestack.external/\",\r\n \"queue\": \"https://vhdsto2e4caea5.queue.local.azurestack.external/\",\r\n \"table\": \"https://vhdsto2e4caea5.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:27:02 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:27:02 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:27:02 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/vhdrgb378517a/providers/Microsoft.Storage/storageAccounts/vhdsto2e4caea5\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"vhdsto2e4caea5\",\r\n \"tenantResourceGroupName\": \"vhdrgb378517a\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"0a20e097132d4e5195f7a60f95da344b\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:27:02 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/0a20e097132d4e5195f7a60f95da344b\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"98acf4fd7ea34d8ea3317df65d63d25d\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vhdstod2b8b431.blob.local.azurestack.external/\",\r\n \"queue\": \"https://vhdstod2b8b431.queue.local.azurestack.external/\",\r\n \"table\": \"https://vhdstod2b8b431.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:26:35 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:26:35 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:26:35 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/vhdrgc2fedfc7/providers/Microsoft.Storage/storageAccounts/vhdstod2b8b431\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"vhdstod2b8b431\",\r\n \"tenantResourceGroupName\": \"vhdrgc2fedfc7\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"98acf4fd7ea34d8ea3317df65d63d25d\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:26:35 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/98acf4fd7ea34d8ea3317df65d63d25d\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"8130056ffeee44abbbd26af6ef5d6778\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://vhdstoebddd5a1.blob.local.azurestack.external/\",\r\n \"queue\": \"https://vhdstoebddd5a1.queue.local.azurestack.external/\",\r\n \"table\": \"https://vhdstoebddd5a1.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:27:00 PM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:27:00 PM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 1:27:00 PM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/vhdrg2d8dca5e/providers/Microsoft.Storage/storageAccounts/vhdstoebddd5a1\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"vhdstoebddd5a1\",\r\n \"tenantResourceGroupName\": \"vhdrg2d8dca5e\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"8130056ffeee44abbbd26af6ef5d6778\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 1:27:00 PM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/8130056ffeee44abbbd26af6ef5d6778\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n },\r\n {\r\n \"name\": \"3473c8d4b609420281c06539af72e25b\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://wasphealthaccount.blob.local.azurestack.external/\",\r\n \"queue\": \"https://wasphealthaccount.queue.local.azurestack.external/\",\r\n \"table\": \"https://wasphealthaccount.table.local.azurestack.external/\"\r\n },\r\n \"primaryLocation\": \"local\",\r\n \"statusOfPrimary\": \"Available\",\r\n \"encryption\": {\r\n \"services\": {\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:20 AM\"\r\n },\r\n \"table\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:20 AM\"\r\n },\r\n \"queue\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"9/3/2019 10:51:20 AM\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"tenantViewId\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/resourcegroups/system.local/providers/Microsoft.Storage/storageAccounts/wasphealthaccount\",\r\n \"tenantSubscriptionId\": \"047e87e6-327f-4c44-8184-fb6bc35e8b38\",\r\n \"tenantStorageAccountName\": \"wasphealthaccount\",\r\n \"tenantResourceGroupName\": \"system.local\",\r\n \"accountStatus\": \"Active\",\r\n \"accountId\": \"3473c8d4b609420281c06539af72e25b\",\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationTime\": \"9/3/2019 10:51:20 AM\"\r\n },\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/storageAccounts/3473c8d4b609420281c06539af72e25b\",\r\n \"type\": \"Microsoft.Storage.Admin/storageAccounts\"\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "9ad61516-995c-4873-a21f-7e44904f0ed2" + "SubscriptionId": "047e87e6-327f-4c44-8184-fb6bc35e8b38" } } \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllStorageQuotas.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllStorageQuotas.json index 2b0369705b6a..2dc6ec1b4912 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllStorageQuotas.json +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllStorageQuotas.json @@ -1,72 +1,74 @@ { "Entries": [ { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/providers/Microsoft.Storage.Admin/locations/local/quotas?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzP2FwaS12ZXJzaW9uPTIwMTUtMTItMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzP2FwaS12ZXJzaW9uPTIwMTktMDgtMDgtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c599589e-e1bf-4a37-8dec-cdd9b5cba2ed" + "50960e13-37ea-44ce-92f3-8ef001038344" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/providers/Microsoft.Storage.Admin/locations/local/quotas/Default Quota\",\r\n \"name\": \"local/Default Quota\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 20,\r\n \"capacityInGb\": 2048\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "403" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:26 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "d6e8e452-7348-4c3f-aec8-004ae9134c3f" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv33O/XDvIxItQoGvX3v3r+Lt0r05SGebhPEYAYvkBo8voc2iB3qlUGE8MNUQerB9b+YIWtdCxY4BP163zWb50K7YwP/T2R9cxZSLmcnxXIZqj/uosd6/8zYLe6ouPDXOQbb1/Ed+kDD3amyIpkSWq" - ], - "x-ms-request-id": [ - "4dd30df4-dd4f-401e-8b97-864e571c8229" - ], - "x-ms-correlation-request-id": [ - "01cf2931-a98c-46ad-be34-1a4ac4ccb8bf" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvmaowGTHe0EG60pPGSt+Vju26RNxFUycg7Pws/TFxIp4QbCR1OTmgjl1/GDEridT4jiVk42W57jhJ6QtVe11q8LRJn6vTVyIysDxdv9da0S5tgAm4/5OJvM37coARUPAaBBloh6L8197cImQH383V" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14809" + "14763" + ], + "x-ms-request-id": [ + "d6e8e452-7348-4c3f-aec8-004ae9134c3f" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193126Z:01cf2931-a98c-46ad-be34-1a4ac4ccb8bf" + "LOCAL:20190917T022927Z:d6e8e452-7348-4c3f-aec8-004ae9134c3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:26 GMT" + ], + "Content-Length": [ + "2848" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/ascanstorquota391\",\r\n \"name\": \"local/ascanstorquota391\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 200,\r\n \"capacityInGb\": 1000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/Basic\",\r\n \"name\": \"local/Basic\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 2,\r\n \"capacityInGb\": 2\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/Default Quota\",\r\n \"name\": \"local/Default Quota\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 20,\r\n \"capacityInGb\": 2048\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/EventRPBVTTenantSubscriptionQuota\",\r\n \"name\": \"local/EventRPBVTTenantSubscriptionQuota\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 10000,\r\n \"capacityInGb\": 500000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/NewStorageQuota1\",\r\n \"name\": \"local/NewStorageQuota1\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 10000,\r\n \"capacityInGb\": 200000\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/Quota_2cccdb26-9cbd-4627-aab9-dd261d75da57\",\r\n \"name\": \"local/Quota_2cccdb26-9cbd-4627-aab9-dd261d75da57\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 20,\r\n \"capacityInGb\": 500\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/Quota_9d7a22e1-6623-41e5-85f8-88d1bd02d5c6\",\r\n \"name\": \"local/Quota_9d7a22e1-6623-41e5-85f8-88d1bd02d5c6\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 20,\r\n \"capacityInGb\": 500\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "9ad61516-995c-4873-a21f-7e44904f0ed2" + "SubscriptionId": "047e87e6-327f-4c44-8184-fb6bc35e8b38" } } \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllTableServiceMetricDefinitions.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllTableServiceMetricDefinitions.json deleted file mode 100644 index 4a36947b34d3..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllTableServiceMetricDefinitions.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "782999a3-c79d-4975-a807-b436a009a7db" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"type\": \"Microsoft.Storage.Admin/farms\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"version\": \"2015-12-01-preview\",\r\n \"settingsStore\": \"AzS-ACS01.azurestack.local:19000\",\r\n \"settings\": {\r\n \"settingsPollingIntervalInSecond\": 60,\r\n \"retentionPeriodForDeletedStorageAccountsInDays\": 0,\r\n \"hostStyleHttpPort\": 0,\r\n \"hostStyleHttpsPort\": 0,\r\n \"corsAllowedOriginsList\": \"https://adminportal.local.azurestack.external/;https://adminportal.local.azurestack.external:12649/;https://portal.local.azurestack.external/;https://portal.local.azurestack.external:12649/\",\r\n \"dataCenterUriHostSuffixes\": \"local.azurestack.external\",\r\n \"bandwidthThrottleIsEnabled\": false,\r\n \"usageCollectionIntervalInSeconds\": 10,\r\n \"feedbackRefreshIntervalInSeconds\": 10,\r\n \"numberOfAccountsToSync\": 20,\r\n \"defaultThrottleProbabilityDecayIntervalInSeconds\": 240,\r\n \"gracePeriodForFullThrottlingInRefreshIntervals\": 3,\r\n \"gracePeriodMaxThrottleProbability\": 0.9,\r\n \"overallRequestThresholdInTps\": 10000.0,\r\n \"defaultRequestThresholdInTps\": 200.0,\r\n \"minimumRequestThresholdInTps\": 1.0,\r\n \"toleranceFactorForTps\": 2.0,\r\n \"overallIngressThresholdInGbps\": 25.0,\r\n \"defaultIngressThresholdInGbps\": 2.0,\r\n \"minimumIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIngress\": 2.0,\r\n \"overallIntranetIngressThresholdInGbps\": 25.0,\r\n \"defaultIntranetIngressThresholdInGbps\": 2.0,\r\n \"minimumIntranetIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetIngress\": 2.0,\r\n \"overallEgressThresholdInGbps\": 30.0,\r\n \"defaultEgressThresholdInGbps\": 3.0,\r\n \"minimumEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForEgress\": 2.0,\r\n \"overallIntranetEgressThresholdInGbps\": 30.0,\r\n \"defaultIntranetEgressThresholdInGbps\": 3.0,\r\n \"minimumIntranetEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetEgress\": 2.0,\r\n \"overallTotalIngressThresholdInGbps\": 50.0,\r\n \"defaultTotalIngressThresholdInGbps\": 5.0,\r\n \"minimumTotalIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalIngress\": 2.0,\r\n \"overallTotalEgressThresholdInGbps\": 50.0,\r\n \"defaultTotalEgressThresholdInGbps\": 5.0,\r\n \"minimumTotalEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalEgress\": 2.0\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2888" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:21 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3qT4lKgoH0I8GunYtIl8iTP7DrefSoaNm6+4eUAG3xv/eDevkf2QhTXvFvlnKQFbGEYJIGGzubvQKUqRKrkGk1ggiVR6X03IOH5s0G8OtiGDR9v/byJ4BxQvc4lURFrzu2qg17f+2Yl3inkdBM7Z" - ], - "x-ms-request-id": [ - "a6f6e4f0-6928-4bb2-ab32-38610a408687" - ], - "x-ms-correlation-request-id": [ - "73cf32d0-51d4-4d4c-89db-09f2e8e7c798" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14846" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193122Z:73cf32d0-51d4-4d4c-89db-09f2e8e7c798" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/tableservices/default/metricdefinitions?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3RhYmxlc2VydmljZXMvZGVmYXVsdC9tZXRyaWNkZWZpbml0aW9ucz9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e6763482-adf5-446d-a575-33385eb68e79" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P1D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"End-to-end latency (TableService)\",\r\n \"value\": \"E2ELatency\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P1D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Server latency (TableService)\",\r\n \"value\": \"ServerLatency\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P1D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Availability (TableService)\",\r\n \"value\": \"Availability\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P1D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Total requests (TableService)\",\r\n \"value\": \"TotalRequests\"\r\n },\r\n \"primaryAggregationType\": \"Total\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P1D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Ingress (TableService)\",\r\n \"value\": \"Ingress\"\r\n },\r\n \"primaryAggregationType\": \"Total\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P1D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Egress (TableService)\",\r\n \"value\": \"Egress\"\r\n },\r\n \"primaryAggregationType\": \"Total\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Requests per second (TableFrontEnd)\",\r\n \"value\": \"TableFrontEndRequestsPerSecond\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"CountPerSecond\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"End-to-end latency (TableFrontEnd)\",\r\n \"value\": \"TableFrontEndE2ELatency\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Server latency (TableFrontEnd)\",\r\n \"value\": \"TableFrontEndServerLatency\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Concurrent requests (TableFrontEnd)\",\r\n \"value\": \"TableFrontEndConcurrentRequests\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"The count of pending requests in the request queue (TableFrontEnd)\",\r\n \"value\": \"TableFrontEndRequestQueueLength\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Processor time percentage (TableFrontEnd)\",\r\n \"value\": \"TableFrontEndProcessorTime\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Requests per second (TableMaster)\",\r\n \"value\": \"TableMasterRequestsPerSecond\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"CountPerSecond\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Successful requests per second (TableMaster)\",\r\n \"value\": \"TableMasterSuccessfulRequestsPerSecond\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"CountPerSecond\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Failed requests per second (TableMaster)\",\r\n \"value\": \"TableMasterFailedRequestsPerSecond\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"CountPerSecond\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Server latency (TableMaster)\",\r\n \"value\": \"TableMasterServerLatency\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Processor time percentage (TableMaster)\",\r\n \"value\": \"TableMasterProcessorTime\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Requests per second (TableServer)\",\r\n \"value\": \"TableServerRequestsPerSecond\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"CountPerSecond\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Successful requests per second (TableServer)\",\r\n \"value\": \"TableServerSuccessfulRequestsPerSecond\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"CountPerSecond\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Failed requests per second (TableServer)\",\r\n \"value\": \"TableServerFailedRequestsPerSecond\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"CountPerSecond\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Server latency (TableServer)\",\r\n \"value\": \"TableServerServerLatency\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Processor time percentage (TableServer)\",\r\n \"value\": \"TableServerProcessorTime\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "11487" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:21 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv2E/g+CtMgZvemR5baqVoLbNTR64QruEyFs0QcXJV3mwWLo6lyWM8PHAYRIlRGniIXwJRrfcZwquIiTNVFW0WlkoxHg1B56iPiGhZ7WspEyiJb+wBQpnhvlAXQkqI6Hid1iGutALkFPi/FlxdEUmO" - ], - "x-ms-request-id": [ - "0eef94dd-4ad7-45f8-8a9b-db6bb5c2e321" - ], - "x-ms-correlation-request-id": [ - "a69d14c5-c61f-485e-bf79-f91932740c0e" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14845" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193122Z:a69d14c5-c61f-485e-bf79-f91932740c0e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "SubscriptionId": "9ad61516-995c-4873-a21f-7e44904f0ed2" - } -} \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllTableServiceMetrics.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllTableServiceMetrics.json deleted file mode 100644 index a1a55e395bd2..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListAllTableServiceMetrics.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bd687b02-692d-49ba-9237-72433e5a1183" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"type\": \"Microsoft.Storage.Admin/farms\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"version\": \"2015-12-01-preview\",\r\n \"settingsStore\": \"AzS-ACS01.azurestack.local:19000\",\r\n \"settings\": {\r\n \"settingsPollingIntervalInSecond\": 60,\r\n \"retentionPeriodForDeletedStorageAccountsInDays\": 0,\r\n \"hostStyleHttpPort\": 0,\r\n \"hostStyleHttpsPort\": 0,\r\n \"corsAllowedOriginsList\": \"https://adminportal.local.azurestack.external/;https://adminportal.local.azurestack.external:12649/;https://portal.local.azurestack.external/;https://portal.local.azurestack.external:12649/\",\r\n \"dataCenterUriHostSuffixes\": \"local.azurestack.external\",\r\n \"bandwidthThrottleIsEnabled\": false,\r\n \"usageCollectionIntervalInSeconds\": 10,\r\n \"feedbackRefreshIntervalInSeconds\": 10,\r\n \"numberOfAccountsToSync\": 20,\r\n \"defaultThrottleProbabilityDecayIntervalInSeconds\": 240,\r\n \"gracePeriodForFullThrottlingInRefreshIntervals\": 3,\r\n \"gracePeriodMaxThrottleProbability\": 0.9,\r\n \"overallRequestThresholdInTps\": 10000.0,\r\n \"defaultRequestThresholdInTps\": 200.0,\r\n \"minimumRequestThresholdInTps\": 1.0,\r\n \"toleranceFactorForTps\": 2.0,\r\n \"overallIngressThresholdInGbps\": 25.0,\r\n \"defaultIngressThresholdInGbps\": 2.0,\r\n \"minimumIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIngress\": 2.0,\r\n \"overallIntranetIngressThresholdInGbps\": 25.0,\r\n \"defaultIntranetIngressThresholdInGbps\": 2.0,\r\n \"minimumIntranetIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetIngress\": 2.0,\r\n \"overallEgressThresholdInGbps\": 30.0,\r\n \"defaultEgressThresholdInGbps\": 3.0,\r\n \"minimumEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForEgress\": 2.0,\r\n \"overallIntranetEgressThresholdInGbps\": 30.0,\r\n \"defaultIntranetEgressThresholdInGbps\": 3.0,\r\n \"minimumIntranetEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetEgress\": 2.0,\r\n \"overallTotalIngressThresholdInGbps\": 50.0,\r\n \"defaultTotalIngressThresholdInGbps\": 5.0,\r\n \"minimumTotalIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalIngress\": 2.0,\r\n \"overallTotalEgressThresholdInGbps\": 50.0,\r\n \"defaultTotalEgressThresholdInGbps\": 5.0,\r\n \"minimumTotalEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalEgress\": 2.0\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2888" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:22 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv2tTq5IWAVzP2MkFuT1Zflh/RaLXhvc0+TQMC7T2jfLNb1X6IJhtKtHp47EDdmO+qEQuyAHFUjVW3lTv9zIn69l9FZskP5u+mxmEtZFOfnzcj6p6IHunu0FTJvaH3fWX0i23sPNvZSo88OyYDVDUQ" - ], - "x-ms-request-id": [ - "a7ca12a7-0be7-43df-ba3e-7e11ec1c62b7" - ], - "x-ms-correlation-request-id": [ - "f6a09647-96a2-4069-a847-de3eff058ccc" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14842" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193122Z:f6a09647-96a2-4069-a847-de3eff058ccc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/tableservices/default/metrics?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3RhYmxlc2VydmljZXMvZGVmYXVsdC9tZXRyaWNzP2FwaS12ZXJzaW9uPTIwMTUtMTItMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8ea4283f-bae3-4355-98ef-ff7b63e9c55a" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"endTime\": \"2018-01-30T19:31:22.8313413Z\",\r\n \"metricUnit\": \"CountPerSecond\",\r\n \"metricValues\": [],\r\n \"name\": {\r\n \"localizedValue\": \"Requests per second (TableFrontEnd)\",\r\n \"value\": \"TableFrontEndRequestsPerSecond\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:22.8313413Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [],\r\n \"name\": {\r\n \"localizedValue\": \"End-to-end latency (TableFrontEnd)\",\r\n \"value\": \"TableFrontEndE2ELatency\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:22.8313413Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [],\r\n \"name\": {\r\n \"localizedValue\": \"Server latency (TableFrontEnd)\",\r\n \"value\": \"TableFrontEndServerLatency\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:22.8313413Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [],\r\n \"name\": {\r\n \"localizedValue\": \"Concurrent requests (TableFrontEnd)\",\r\n \"value\": \"TableFrontEndConcurrentRequests\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:22.8313413Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [],\r\n \"name\": {\r\n \"localizedValue\": \"The count of pending requests in the request queue (TableFrontEnd)\",\r\n \"value\": \"TableFrontEndRequestQueueLength\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:22.8313413Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [],\r\n \"name\": {\r\n \"localizedValue\": \"Processor time percentage (TableFrontEnd)\",\r\n \"value\": \"TableFrontEndProcessorTime\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:22.8313413Z\",\r\n \"metricUnit\": \"CountPerSecond\",\r\n \"metricValues\": [],\r\n \"name\": {\r\n \"localizedValue\": \"Requests per second (TableMaster)\",\r\n \"value\": \"TableMasterRequestsPerSecond\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:22.8313413Z\",\r\n \"metricUnit\": \"CountPerSecond\",\r\n \"metricValues\": [],\r\n \"name\": {\r\n \"localizedValue\": \"Successful requests per second (TableMaster)\",\r\n \"value\": \"TableMasterSuccessfulRequestsPerSecond\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:22.8313413Z\",\r\n \"metricUnit\": \"CountPerSecond\",\r\n \"metricValues\": [],\r\n \"name\": {\r\n \"localizedValue\": \"Failed requests per second (TableMaster)\",\r\n \"value\": \"TableMasterFailedRequestsPerSecond\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:22.8313413Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [],\r\n \"name\": {\r\n \"localizedValue\": \"Server latency (TableMaster)\",\r\n \"value\": \"TableMasterServerLatency\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:22.8313413Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [],\r\n \"name\": {\r\n \"localizedValue\": \"Processor time percentage (TableMaster)\",\r\n \"value\": \"TableMasterProcessorTime\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:22.8313413Z\",\r\n \"metricUnit\": \"CountPerSecond\",\r\n \"metricValues\": [],\r\n \"name\": {\r\n \"localizedValue\": \"Requests per second (TableServer)\",\r\n \"value\": \"TableServerRequestsPerSecond\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:22.8313413Z\",\r\n \"metricUnit\": \"CountPerSecond\",\r\n \"metricValues\": [],\r\n \"name\": {\r\n \"localizedValue\": \"Successful requests per second (TableServer)\",\r\n \"value\": \"TableServerSuccessfulRequestsPerSecond\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:22.8313413Z\",\r\n \"metricUnit\": \"CountPerSecond\",\r\n \"metricValues\": [],\r\n \"name\": {\r\n \"localizedValue\": \"Failed requests per second (TableServer)\",\r\n \"value\": \"TableServerFailedRequestsPerSecond\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:22.8313413Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [],\r\n \"name\": {\r\n \"localizedValue\": \"Server latency (TableServer)\",\r\n \"value\": \"TableServerServerLatency\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:22.8313413Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [],\r\n \"name\": {\r\n \"localizedValue\": \"Processor time percentage (TableServer)\",\r\n \"value\": \"TableServerProcessorTime\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:22.8313413Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [\r\n {\r\n \"average\": 7.29314082130133,\r\n \"timeStamp\": \"2018-01-23T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 7.29242044505202,\r\n \"timeStamp\": \"2018-01-24T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 7.45627809068669,\r\n \"timeStamp\": \"2018-01-25T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 7.30089294071398,\r\n \"timeStamp\": \"2018-01-26T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 7.72399956185191,\r\n \"timeStamp\": \"2018-01-27T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 7.60159978218237,\r\n \"timeStamp\": \"2018-01-28T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 7.47610318708534,\r\n \"timeStamp\": \"2018-01-29T00:00:00Z\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"End-to-end latency (TableService)\",\r\n \"value\": \"E2ELatency\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:22.8313413Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [\r\n {\r\n \"average\": 6.35217701106319,\r\n \"timeStamp\": \"2018-01-23T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 6.33429027113238,\r\n \"timeStamp\": \"2018-01-24T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 6.48739451176727,\r\n \"timeStamp\": \"2018-01-25T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 6.32658791815646,\r\n \"timeStamp\": \"2018-01-26T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 6.7042208266394,\r\n \"timeStamp\": \"2018-01-27T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 6.63925794831982,\r\n \"timeStamp\": \"2018-01-28T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 6.49650197949997,\r\n \"timeStamp\": \"2018-01-29T00:00:00Z\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Server latency (TableService)\",\r\n \"value\": \"ServerLatency\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:22.8313413Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [\r\n {\r\n \"average\": 100.0,\r\n \"timeStamp\": \"2018-01-23T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 100.0,\r\n \"timeStamp\": \"2018-01-24T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 99.9981206752038,\r\n \"timeStamp\": \"2018-01-25T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 100.0,\r\n \"timeStamp\": \"2018-01-26T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 100.0,\r\n \"timeStamp\": \"2018-01-27T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 100.0,\r\n \"timeStamp\": \"2018-01-28T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 100.0,\r\n \"timeStamp\": \"2018-01-29T00:00:00Z\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Availability (TableService)\",\r\n \"value\": \"Availability\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:22.8313413Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [\r\n {\r\n \"timeStamp\": \"2018-01-23T00:00:00Z\",\r\n \"total\": 269054.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-24T00:00:00Z\",\r\n \"total\": 265771.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-25T00:00:00Z\",\r\n \"total\": 266053.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-26T00:00:00Z\",\r\n \"total\": 269687.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-27T00:00:00Z\",\r\n \"total\": 276294.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-28T00:00:00Z\",\r\n \"total\": 274176.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-29T00:00:00Z\",\r\n \"total\": 279001.0\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Total requests (TableService)\",\r\n \"value\": \"TotalRequests\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:22.8313413Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [\r\n {\r\n \"timeStamp\": \"2018-01-23T00:00:00Z\",\r\n \"total\": 511130540.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-24T00:00:00Z\",\r\n \"total\": 503169523.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-25T00:00:00Z\",\r\n \"total\": 507168827.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-26T00:00:00Z\",\r\n \"total\": 568486028.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-27T00:00:00Z\",\r\n \"total\": 700065592.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-28T00:00:00Z\",\r\n \"total\": 690837578.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-29T00:00:00Z\",\r\n \"total\": 695035903.0\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Ingress (TableService)\",\r\n \"value\": \"Ingress\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:22.8313413Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [\r\n {\r\n \"timeStamp\": \"2018-01-23T00:00:00Z\",\r\n \"total\": 6755876285.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-24T00:00:00Z\",\r\n \"total\": 6754791566.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-25T00:00:00Z\",\r\n \"total\": 6756295607.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-26T00:00:00Z\",\r\n \"total\": 6762121121.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-27T00:00:00Z\",\r\n \"total\": 6787273660.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-28T00:00:00Z\",\r\n \"total\": 6749797687.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-29T00:00:00Z\",\r\n \"total\": 6790505524.0\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Egress (TableService)\",\r\n \"value\": \"Egress\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "11775" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:22 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv3eEuOk2NmRnC2d1ZlXmc6DuACSwf5OoVcxbl0liAlf4nGcEq4ZiwQxZMkquC8MmCKnbERujGXE5EnukFpwV4UerYtb8qIr7KxeFMjfS48k0EyxmxPljAJ6VXdejlOA7vC1oXHXhR494TE6YBMkwm" - ], - "x-ms-request-id": [ - "7cc27113-1ee3-4f79-bb3a-654927e3e52e" - ], - "x-ms-correlation-request-id": [ - "8a2dc92a-2a9c-483a-b2c6-7262a66e6b08" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14841" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193122Z:8a2dc92a-2a9c-483a-b2c6-7262a66e6b08" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "SubscriptionId": "9ad61516-995c-4873-a21f-7e44904f0ed2" - } -} \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListBlobServiceMetricDefinitions.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListBlobServiceMetricDefinitions.json deleted file mode 100644 index 41f951e8b890..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListBlobServiceMetricDefinitions.json +++ /dev/null @@ -1,200 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b8a454c2-db18-4e3a-aa13-2804595d2078" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"type\": \"Microsoft.Storage.Admin/farms\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"version\": \"2015-12-01-preview\",\r\n \"settingsStore\": \"AzS-ACS01.azurestack.local:19000\",\r\n \"settings\": {\r\n \"settingsPollingIntervalInSecond\": 60,\r\n \"retentionPeriodForDeletedStorageAccountsInDays\": 0,\r\n \"hostStyleHttpPort\": 0,\r\n \"hostStyleHttpsPort\": 0,\r\n \"corsAllowedOriginsList\": \"https://adminportal.local.azurestack.external/;https://adminportal.local.azurestack.external:12649/;https://portal.local.azurestack.external/;https://portal.local.azurestack.external:12649/\",\r\n \"dataCenterUriHostSuffixes\": \"local.azurestack.external\",\r\n \"bandwidthThrottleIsEnabled\": false,\r\n \"usageCollectionIntervalInSeconds\": 10,\r\n \"feedbackRefreshIntervalInSeconds\": 10,\r\n \"numberOfAccountsToSync\": 20,\r\n \"defaultThrottleProbabilityDecayIntervalInSeconds\": 240,\r\n \"gracePeriodForFullThrottlingInRefreshIntervals\": 3,\r\n \"gracePeriodMaxThrottleProbability\": 0.9,\r\n \"overallRequestThresholdInTps\": 10000.0,\r\n \"defaultRequestThresholdInTps\": 200.0,\r\n \"minimumRequestThresholdInTps\": 1.0,\r\n \"toleranceFactorForTps\": 2.0,\r\n \"overallIngressThresholdInGbps\": 25.0,\r\n \"defaultIngressThresholdInGbps\": 2.0,\r\n \"minimumIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIngress\": 2.0,\r\n \"overallIntranetIngressThresholdInGbps\": 25.0,\r\n \"defaultIntranetIngressThresholdInGbps\": 2.0,\r\n \"minimumIntranetIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetIngress\": 2.0,\r\n \"overallEgressThresholdInGbps\": 30.0,\r\n \"defaultEgressThresholdInGbps\": 3.0,\r\n \"minimumEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForEgress\": 2.0,\r\n \"overallIntranetEgressThresholdInGbps\": 30.0,\r\n \"defaultIntranetEgressThresholdInGbps\": 3.0,\r\n \"minimumIntranetEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetEgress\": 2.0,\r\n \"overallTotalIngressThresholdInGbps\": 50.0,\r\n \"defaultTotalIngressThresholdInGbps\": 5.0,\r\n \"minimumTotalIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalIngress\": 2.0,\r\n \"overallTotalEgressThresholdInGbps\": 50.0,\r\n \"defaultTotalEgressThresholdInGbps\": 5.0,\r\n \"minimumTotalEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalEgress\": 2.0\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2888" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:01 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvBBVorJCLs0Psinzjxo8QE/batrQemydJrGQm/5pzGfhIWCgYpdgSo8pUPBY8HlIAQgk1hxsObL0kmD5L6tj9GgEitvsy7M2AfQowIUTqOxBl40zYq3pfMm0qHZTI1E3DEkH2peegEwdwoe6gJL+j" - ], - "x-ms-request-id": [ - "12452b23-c1fa-47f2-945e-02d195d063a7" - ], - "x-ms-correlation-request-id": [ - "6950bd5f-5c7c-48cf-901a-88c7df932ba8" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14931" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193101Z:6950bd5f-5c7c-48cf-901a-88c7df932ba8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/blobservices/default?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL2Jsb2JzZXJ2aWNlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMTItMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d490bf0e-732f-4ee5-a896-f83f7af5f5bb" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/blobservices/default\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af/default\",\r\n \"type\": \"Microsoft.Storage.Admin/farms/blobservices\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"settings\": {\r\n \"frontEndHttpListenPort\": 11000,\r\n \"frontEndHttpsListenPort\": 11100,\r\n \"frontEndCallbackThreadsCount\": 1600,\r\n \"frontEndCpuBasedKeepAliveThrottlingEnabled\": true,\r\n \"frontEndCpuBasedKeepAliveThrottlingPercentCpuThreshold\": 90.0,\r\n \"frontEndCpuBasedKeepAliveThrottlingPercentRequestsToThrottle\": 2.0,\r\n \"frontEndCpuBasedKeepAliveThrottlingCpuMonitorIntervalInSeconds\": 5,\r\n \"frontEndMemoryThrottlingEnabled\": true,\r\n \"frontEndMaxMillisecondsBetweenMemorySamples\": 10000,\r\n \"frontEndMemoryThrottleThresholdSettings\": \"5,100,0;7,50,0;10,25,0;15,0,25;\",\r\n \"frontEndMinThreadPoolThreads\": 1850,\r\n \"frontEndThreadPoolBasedKeepAliveIOCompletionThreshold\": 1500,\r\n \"frontEndThreadPoolBasedKeepAliveWorkerThreadThreshold\": 1500,\r\n \"frontEndThreadPoolBasedKeepAliveMonitorIntervalInSeconds\": 30,\r\n \"frontEndThreadPoolBasedKeepAlivePercentage\": 10.0,\r\n \"frontEndUseSlaTimeInAvailability\": true,\r\n \"blobSvcContainerGcInterval\": 3600000,\r\n \"blobSvcShallowGcInterval\": 3600000,\r\n \"blobSvcStreamMapMinContainerOccupancyPercent\": 80\r\n },\r\n \"version\": \"1.0\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1521" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:01 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvhMOjyeQa2nEpsfv+5C4+UaFx0IV21183fysS8Y/+Rzpoz5VNvSxFOgBdVe5XgI9L2EnOghawEbqav58C0tS6iRE4WC0YWBPiGzhxS8hUjJeZ+bONFsT90ufzcdkES2+VGYWiOnGPtbK8peFornd2" - ], - "x-ms-request-id": [ - "83cd27db-f651-4e12-bd71-d93907c32e1a" - ], - "x-ms-correlation-request-id": [ - "97469f3a-be86-4c41-8f44-9bbefd838928" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14930" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193101Z:97469f3a-be86-4c41-8f44-9bbefd838928" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/blobservices/default/metricdefinitions?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL2Jsb2JzZXJ2aWNlcy9kZWZhdWx0L21ldHJpY2RlZmluaXRpb25zP2FwaS12ZXJzaW9uPTIwMTUtMTItMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bf62663c-1070-4add-815d-d14148371523" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P1D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"End-to-end latency (BlobService)\",\r\n \"value\": \"E2ELatency\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P1D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Server latency (BlobService)\",\r\n \"value\": \"ServerLatency\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P1D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Availability (BlobService)\",\r\n \"value\": \"Availability\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P1D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Total successful requests (BlobService)\",\r\n \"value\": \"SuccessfulRequests\"\r\n },\r\n \"primaryAggregationType\": \"Total\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P1D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Total requests (BlobService)\",\r\n \"value\": \"TotalRequests\"\r\n },\r\n \"primaryAggregationType\": \"Total\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P1D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Ingress (BlobService)\",\r\n \"value\": \"Ingress\"\r\n },\r\n \"primaryAggregationType\": \"Total\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P1D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Egress (BlobService)\",\r\n \"value\": \"Egress\"\r\n },\r\n \"primaryAggregationType\": \"Total\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Requests per second (BlobFrontEnd)\",\r\n \"value\": \"BlobFrontEndRequestsPerSecond\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"CountPerSecond\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"End-to-end latency (BlobFrontEnd)\",\r\n \"value\": \"BlobFrontEndE2ELatency\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Server latency (BlobFrontEnd)\",\r\n \"value\": \"BlobFrontEndServerLatency\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Concurrent requests (BlobFrontEnd)\",\r\n \"value\": \"BlobFrontEndConcurrentRequests\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"The count of pending requests in the request queue (BlobFrontEnd)\",\r\n \"value\": \"BlobFrontEndRequestQueueLength\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Processor time percentage (BlobFrontEnd)\",\r\n \"value\": \"BlobFrontEndProcessorTime\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Requests per second (BlobServer)\",\r\n \"value\": \"BlobServerRequestsPerSecond\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"CountPerSecond\"\r\n },\r\n {\r\n \"metricAvailabilities\": [\r\n {\r\n \"retention\": \"P10D\",\r\n \"timeGrain\": \"PT1M\"\r\n },\r\n {\r\n \"retention\": \"P30D\",\r\n \"timeGrain\": \"PT1H\"\r\n },\r\n {\r\n \"retention\": \"P60D\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Server latency (BlobServer)\",\r\n \"value\": \"BlobServerServerLatency\"\r\n },\r\n \"primaryAggregationType\": \"Average\",\r\n \"unit\": \"Count\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "7703" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:01 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvNm4TQNA6ne+R8FbYfrT+e643lk9KFvOzr4FzCgACKKYW+688ZfL10jGQ91zwQbg6r9K5FEMvQpW6IW+k9/EMByovthHwi9YBmJGDQoHs0DcBHiYeiYfARpGsCzibOjxt3LkovnbHvbAclILSML13" - ], - "x-ms-request-id": [ - "6a3925ea-ae2f-4024-b077-1a80140182e0" - ], - "x-ms-correlation-request-id": [ - "8e23581a-60fd-490a-b6ac-b6d5ee8ab095" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14929" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193102Z:8e23581a-60fd-490a-b6ac-b6d5ee8ab095" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "SubscriptionId": "9ad61516-995c-4873-a21f-7e44904f0ed2" - } -} \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListBlobServiceMetrics.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListBlobServiceMetrics.json deleted file mode 100644 index 47b7a2b88181..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListBlobServiceMetrics.json +++ /dev/null @@ -1,200 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d288f56b-b15a-4fb0-a92b-56c7d1fe3117" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"type\": \"Microsoft.Storage.Admin/farms\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"version\": \"2015-12-01-preview\",\r\n \"settingsStore\": \"AzS-ACS01.azurestack.local:19000\",\r\n \"settings\": {\r\n \"settingsPollingIntervalInSecond\": 60,\r\n \"retentionPeriodForDeletedStorageAccountsInDays\": 0,\r\n \"hostStyleHttpPort\": 0,\r\n \"hostStyleHttpsPort\": 0,\r\n \"corsAllowedOriginsList\": \"https://adminportal.local.azurestack.external/;https://adminportal.local.azurestack.external:12649/;https://portal.local.azurestack.external/;https://portal.local.azurestack.external:12649/\",\r\n \"dataCenterUriHostSuffixes\": \"local.azurestack.external\",\r\n \"bandwidthThrottleIsEnabled\": false,\r\n \"usageCollectionIntervalInSeconds\": 10,\r\n \"feedbackRefreshIntervalInSeconds\": 10,\r\n \"numberOfAccountsToSync\": 20,\r\n \"defaultThrottleProbabilityDecayIntervalInSeconds\": 240,\r\n \"gracePeriodForFullThrottlingInRefreshIntervals\": 3,\r\n \"gracePeriodMaxThrottleProbability\": 0.9,\r\n \"overallRequestThresholdInTps\": 10000.0,\r\n \"defaultRequestThresholdInTps\": 200.0,\r\n \"minimumRequestThresholdInTps\": 1.0,\r\n \"toleranceFactorForTps\": 2.0,\r\n \"overallIngressThresholdInGbps\": 25.0,\r\n \"defaultIngressThresholdInGbps\": 2.0,\r\n \"minimumIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIngress\": 2.0,\r\n \"overallIntranetIngressThresholdInGbps\": 25.0,\r\n \"defaultIntranetIngressThresholdInGbps\": 2.0,\r\n \"minimumIntranetIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetIngress\": 2.0,\r\n \"overallEgressThresholdInGbps\": 30.0,\r\n \"defaultEgressThresholdInGbps\": 3.0,\r\n \"minimumEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForEgress\": 2.0,\r\n \"overallIntranetEgressThresholdInGbps\": 30.0,\r\n \"defaultIntranetEgressThresholdInGbps\": 3.0,\r\n \"minimumIntranetEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetEgress\": 2.0,\r\n \"overallTotalIngressThresholdInGbps\": 50.0,\r\n \"defaultTotalIngressThresholdInGbps\": 5.0,\r\n \"minimumTotalIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalIngress\": 2.0,\r\n \"overallTotalEgressThresholdInGbps\": 50.0,\r\n \"defaultTotalEgressThresholdInGbps\": 5.0,\r\n \"minimumTotalEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalEgress\": 2.0\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2888" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:01 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvG6oFh8XFtlf6yLC0wfdgv/wscL8ANjU7708+wsFZxAxRcHB+6CwfirV+BF7dVWC/BuzGV6RCop9ibSspMn4b2EAvuaBXum3elWEtapz825r68YJLOzi7Ffj+4H2hT69Rt8Zflokq5t+wz5oXVvyy" - ], - "x-ms-request-id": [ - "0bfbafc4-9b79-48b1-bf5b-3d47fc381140" - ], - "x-ms-correlation-request-id": [ - "a333d74e-c39a-46bd-838d-b0997ee79fc4" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14928" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193102Z:a333d74e-c39a-46bd-838d-b0997ee79fc4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/blobservices/default?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL2Jsb2JzZXJ2aWNlcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMTUtMTItMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "657afdda-8d52-4e31-98cd-bbacc937bd5b" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/blobservices/default\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af/default\",\r\n \"type\": \"Microsoft.Storage.Admin/farms/blobservices\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"settings\": {\r\n \"frontEndHttpListenPort\": 11000,\r\n \"frontEndHttpsListenPort\": 11100,\r\n \"frontEndCallbackThreadsCount\": 1600,\r\n \"frontEndCpuBasedKeepAliveThrottlingEnabled\": true,\r\n \"frontEndCpuBasedKeepAliveThrottlingPercentCpuThreshold\": 90.0,\r\n \"frontEndCpuBasedKeepAliveThrottlingPercentRequestsToThrottle\": 2.0,\r\n \"frontEndCpuBasedKeepAliveThrottlingCpuMonitorIntervalInSeconds\": 5,\r\n \"frontEndMemoryThrottlingEnabled\": true,\r\n \"frontEndMaxMillisecondsBetweenMemorySamples\": 10000,\r\n \"frontEndMemoryThrottleThresholdSettings\": \"5,100,0;7,50,0;10,25,0;15,0,25;\",\r\n \"frontEndMinThreadPoolThreads\": 1850,\r\n \"frontEndThreadPoolBasedKeepAliveIOCompletionThreshold\": 1500,\r\n \"frontEndThreadPoolBasedKeepAliveWorkerThreadThreshold\": 1500,\r\n \"frontEndThreadPoolBasedKeepAliveMonitorIntervalInSeconds\": 30,\r\n \"frontEndThreadPoolBasedKeepAlivePercentage\": 10.0,\r\n \"frontEndUseSlaTimeInAvailability\": true,\r\n \"blobSvcContainerGcInterval\": 3600000,\r\n \"blobSvcShallowGcInterval\": 3600000,\r\n \"blobSvcStreamMapMinContainerOccupancyPercent\": 80\r\n },\r\n \"version\": \"1.0\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1521" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:01 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRviiB9AvVfoMlVnSl3P9pFpbFoRuutzoo/v0uLTPH7elbUty5yXXMLlOHJ58xThCRhbwDD4BDYcMG1Dt0lbu9gMDFYOwxDAE/5s8JQtVGsJxNsOc6lXY+/JGuHdMbV46UsZmwBiK87A/9jk3y3QeLj" - ], - "x-ms-request-id": [ - "9c8cca4c-c8cc-415b-ac47-8f48f3283c6e" - ], - "x-ms-correlation-request-id": [ - "99a9bcd9-1a83-425c-b490-bf617925530e" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14927" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193102Z:99a9bcd9-1a83-425c-b490-bf617925530e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/blobservices/default/metrics?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL2Jsb2JzZXJ2aWNlcy9kZWZhdWx0L21ldHJpY3M/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0ad889a9-68de-4da0-b54c-354b3f6bcde1" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"endTime\": \"2018-01-30T19:31:02.3087124Z\",\r\n \"metricUnit\": \"CountPerSecond\",\r\n \"metricValues\": [],\r\n \"name\": {\r\n \"localizedValue\": \"Requests per second (BlobFrontEnd)\",\r\n \"value\": \"BlobFrontEndRequestsPerSecond\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:02.3087124Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [],\r\n \"name\": {\r\n \"localizedValue\": \"End-to-end latency (BlobFrontEnd)\",\r\n \"value\": \"BlobFrontEndE2ELatency\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:02.3087124Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [],\r\n \"name\": {\r\n \"localizedValue\": \"Server latency (BlobFrontEnd)\",\r\n \"value\": \"BlobFrontEndServerLatency\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:02.3087124Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [],\r\n \"name\": {\r\n \"localizedValue\": \"Concurrent requests (BlobFrontEnd)\",\r\n \"value\": \"BlobFrontEndConcurrentRequests\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:02.3087124Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [],\r\n \"name\": {\r\n \"localizedValue\": \"The count of pending requests in the request queue (BlobFrontEnd)\",\r\n \"value\": \"BlobFrontEndRequestQueueLength\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:02.3087124Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [],\r\n \"name\": {\r\n \"localizedValue\": \"Processor time percentage (BlobFrontEnd)\",\r\n \"value\": \"BlobFrontEndProcessorTime\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:02.3087124Z\",\r\n \"metricUnit\": \"CountPerSecond\",\r\n \"metricValues\": [],\r\n \"name\": {\r\n \"localizedValue\": \"Requests per second (BlobServer)\",\r\n \"value\": \"BlobServerRequestsPerSecond\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:02.3087124Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [],\r\n \"name\": {\r\n \"localizedValue\": \"Server latency (BlobServer)\",\r\n \"value\": \"BlobServerServerLatency\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:02.3087124Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [\r\n {\r\n \"average\": 3.37839472205425,\r\n \"timeStamp\": \"2018-01-23T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 3.23720755548253,\r\n \"timeStamp\": \"2018-01-24T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 3.23283110690318,\r\n \"timeStamp\": \"2018-01-25T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 3.24997418164272,\r\n \"timeStamp\": \"2018-01-26T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 3.25500401782453,\r\n \"timeStamp\": \"2018-01-27T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 3.24891968824928,\r\n \"timeStamp\": \"2018-01-28T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 3.23743272199632,\r\n \"timeStamp\": \"2018-01-29T00:00:00Z\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"End-to-end latency (BlobService)\",\r\n \"value\": \"E2ELatency\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:02.3087124Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [\r\n {\r\n \"average\": 3.00302941330881,\r\n \"timeStamp\": \"2018-01-23T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 2.88515644890154,\r\n \"timeStamp\": \"2018-01-24T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 2.8953629314371,\r\n \"timeStamp\": \"2018-01-25T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 2.90971362786012,\r\n \"timeStamp\": \"2018-01-26T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 2.9197896120973,\r\n \"timeStamp\": \"2018-01-27T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 2.90887585146789,\r\n \"timeStamp\": \"2018-01-28T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 2.89673016247954,\r\n \"timeStamp\": \"2018-01-29T00:00:00Z\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Server latency (BlobService)\",\r\n \"value\": \"ServerLatency\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:02.3087124Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [\r\n {\r\n \"average\": 100.0,\r\n \"timeStamp\": \"2018-01-23T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 100.0,\r\n \"timeStamp\": \"2018-01-24T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 100.0,\r\n \"timeStamp\": \"2018-01-25T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 100.0,\r\n \"timeStamp\": \"2018-01-26T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 100.0,\r\n \"timeStamp\": \"2018-01-27T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 100.0,\r\n \"timeStamp\": \"2018-01-28T00:00:00Z\"\r\n },\r\n {\r\n \"average\": 100.0,\r\n \"timeStamp\": \"2018-01-29T00:00:00Z\"\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Availability (BlobService)\",\r\n \"value\": \"Availability\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:02.3087124Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [\r\n {\r\n \"timeStamp\": \"2018-01-23T00:00:00Z\",\r\n \"total\": 514291.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-24T00:00:00Z\",\r\n \"total\": 553823.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-25T00:00:00Z\",\r\n \"total\": 550283.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-26T00:00:00Z\",\r\n \"total\": 590665.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-27T00:00:00Z\",\r\n \"total\": 602316.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-28T00:00:00Z\",\r\n \"total\": 592653.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-29T00:00:00Z\",\r\n \"total\": 592690.0\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Total successful requests (BlobService)\",\r\n \"value\": \"SuccessfulRequests\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:02.3087124Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [\r\n {\r\n \"timeStamp\": \"2018-01-23T00:00:00Z\",\r\n \"total\": 525915.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-24T00:00:00Z\",\r\n \"total\": 565447.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-25T00:00:00Z\",\r\n \"total\": 561886.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-26T00:00:00Z\",\r\n \"total\": 602269.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-27T00:00:00Z\",\r\n \"total\": 613916.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-28T00:00:00Z\",\r\n \"total\": 604253.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-29T00:00:00Z\",\r\n \"total\": 604290.0\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Total requests (BlobService)\",\r\n \"value\": \"TotalRequests\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:02.3087124Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [\r\n {\r\n \"timeStamp\": \"2018-01-23T00:00:00Z\",\r\n \"total\": 1368310311.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-24T00:00:00Z\",\r\n \"total\": 1404079959.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-25T00:00:00Z\",\r\n \"total\": 1400057193.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-26T00:00:00Z\",\r\n \"total\": 1445879884.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-27T00:00:00Z\",\r\n \"total\": 1475166639.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-28T00:00:00Z\",\r\n \"total\": 1463924092.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-29T00:00:00Z\",\r\n \"total\": 1468371175.0\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Ingress (BlobService)\",\r\n \"value\": \"Ingress\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n },\r\n {\r\n \"endTime\": \"2018-01-30T19:31:02.3087124Z\",\r\n \"metricUnit\": \"Count\",\r\n \"metricValues\": [\r\n {\r\n \"timeStamp\": \"2018-01-23T00:00:00Z\",\r\n \"total\": 1042768756.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-24T00:00:00Z\",\r\n \"total\": 1140164863.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-25T00:00:00Z\",\r\n \"total\": 902184482.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-26T00:00:00Z\",\r\n \"total\": 1173363120.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-27T00:00:00Z\",\r\n \"total\": 1184912696.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-28T00:00:00Z\",\r\n \"total\": 1175637645.0\r\n },\r\n {\r\n \"timeStamp\": \"2018-01-29T00:00:00Z\",\r\n \"total\": 1175858765.0\r\n }\r\n ],\r\n \"name\": {\r\n \"localizedValue\": \"Egress (BlobService)\",\r\n \"value\": \"Egress\"\r\n },\r\n \"startTime\": \"2018-01-23T00:00:00Z\",\r\n \"timeGrain\": \"P1D\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "10018" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:02 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv6W1B1urFPVITey696bSzc1HXXqoBTJCDa6pHHS3uz5q4jGvDOJzQSXJOumFkVJWz60UueN+QBAYE552ihOrjI9YCm9MKGefU0JYyM3MqP5DElXA+rvzeHGXza+Si1UFfojwsM3QTfUQo+adna3W4" - ], - "x-ms-request-id": [ - "1a475f5e-7553-4509-b81c-ddba57e7a131" - ], - "x-ms-correlation-request-id": [ - "cfcbf3f8-d11c-4178-9165-d9da62cfc219" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14926" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193102Z:cfcbf3f8-d11c-4178-9165-d9da62cfc219" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "SubscriptionId": "9ad61516-995c-4873-a21f-7e44904f0ed2" - } -} \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListContainers.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListContainers.json deleted file mode 100644 index 9605f33f5e42..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListContainers.json +++ /dev/null @@ -1,200 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "98c79eae-4fea-4b8a-b2ff-b049bbd019fe" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"type\": \"Microsoft.Storage.Admin/farms\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"version\": \"2015-12-01-preview\",\r\n \"settingsStore\": \"AzS-ACS01.azurestack.local:19000\",\r\n \"settings\": {\r\n \"settingsPollingIntervalInSecond\": 60,\r\n \"retentionPeriodForDeletedStorageAccountsInDays\": 0,\r\n \"hostStyleHttpPort\": 0,\r\n \"hostStyleHttpsPort\": 0,\r\n \"corsAllowedOriginsList\": \"https://adminportal.local.azurestack.external/;https://adminportal.local.azurestack.external:12649/;https://portal.local.azurestack.external/;https://portal.local.azurestack.external:12649/\",\r\n \"dataCenterUriHostSuffixes\": \"local.azurestack.external\",\r\n \"bandwidthThrottleIsEnabled\": false,\r\n \"usageCollectionIntervalInSeconds\": 10,\r\n \"feedbackRefreshIntervalInSeconds\": 10,\r\n \"numberOfAccountsToSync\": 20,\r\n \"defaultThrottleProbabilityDecayIntervalInSeconds\": 240,\r\n \"gracePeriodForFullThrottlingInRefreshIntervals\": 3,\r\n \"gracePeriodMaxThrottleProbability\": 0.9,\r\n \"overallRequestThresholdInTps\": 10000.0,\r\n \"defaultRequestThresholdInTps\": 200.0,\r\n \"minimumRequestThresholdInTps\": 1.0,\r\n \"toleranceFactorForTps\": 2.0,\r\n \"overallIngressThresholdInGbps\": 25.0,\r\n \"defaultIngressThresholdInGbps\": 2.0,\r\n \"minimumIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIngress\": 2.0,\r\n \"overallIntranetIngressThresholdInGbps\": 25.0,\r\n \"defaultIntranetIngressThresholdInGbps\": 2.0,\r\n \"minimumIntranetIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetIngress\": 2.0,\r\n \"overallEgressThresholdInGbps\": 30.0,\r\n \"defaultEgressThresholdInGbps\": 3.0,\r\n \"minimumEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForEgress\": 2.0,\r\n \"overallIntranetEgressThresholdInGbps\": 30.0,\r\n \"defaultIntranetEgressThresholdInGbps\": 3.0,\r\n \"minimumIntranetEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetEgress\": 2.0,\r\n \"overallTotalIngressThresholdInGbps\": 50.0,\r\n \"defaultTotalIngressThresholdInGbps\": 5.0,\r\n \"minimumTotalIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalIngress\": 2.0,\r\n \"overallTotalEgressThresholdInGbps\": 50.0,\r\n \"defaultTotalEgressThresholdInGbps\": 5.0,\r\n \"minimumTotalEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalEgress\": 2.0\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2888" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:21 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvJoebhJ0hKDMf7NKPGsfoZo4jUAvOBFLeriba1yWWCklgqIjb9oXrg+y5euG14XUeCKXCNHNh/c7FEIhdO1HC6l+z1nLBf774petPSg/1V2iOACcFlEmyGu6nGTVSiicIFEHLWcyJTL+6SFGoHk8S" - ], - "x-ms-request-id": [ - "f2d88f9d-a4fb-4294-a0bd-d365c4ca6c22" - ], - "x-ms-correlation-request-id": [ - "c454c09e-644e-4833-b201-43d2e210c43e" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14852" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193121Z:c454c09e-644e-4833-b201-43d2e210c43e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/shares?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3NoYXJlcz9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d41b53b3-8c90-4645-9687-91ccabf7afb2" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "[\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/shares/||SU1FileServer.azurestack.local|SU1_ObjStore\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af/||SU1FileServer.azurestack.local|SU1_ObjStore\",\r\n \"type\": \"Microsoft.Storage.Admin/farms/shares\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"shareName\": \"||SU1FileServer.azurestack.local|SU1_ObjStore\",\r\n \"uncPath\": \"\\\\\\\\SU1FileServer.azurestack.local\\\\SU1_ObjStore\",\r\n \"totalCapacity\": 2728176648192,\r\n \"usedCapacity\": 400509059072,\r\n \"freeCapacity\": 2327667589120,\r\n \"healthStatus\": \"Healthy\"\r\n }\r\n }\r\n]", - "ResponseHeaders": { - "Content-Length": [ - "730" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:21 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv/wJ57qW6nbdL22lyIGqfilyMDOUKJnvtDfVWCm6uukMDByA1RukKDSZVkvQrHfLR4OTkIYOlxoIMjlGMh/7Ys+mz32I/WgOHYhwA1oN+l7FSEN5YsmRdMV1YNC7DbcehTAAaZYf1LxTby3Lp8rzL" - ], - "x-ms-request-id": [ - "3c5bb244-8c6a-4a6d-9915-53754d17b451" - ], - "x-ms-correlation-request-id": [ - "59e343ac-1b3c-45fb-975c-62947f193cb9" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14851" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193121Z:59e343ac-1b3c-45fb-975c-62947f193cb9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/shares/%7C%7CSU1FileServer.azurestack.local%7CSU1_ObjStore/containers?api-version=2015-12-01-preview&Intent=Migration&MaxCount=10&StartIndex=0", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3NoYXJlcy8lN0MlN0NTVTFGaWxlU2VydmVyLmF6dXJlc3RhY2subG9jYWwlN0NTVTFfT2JqU3RvcmUvY29udGFpbmVycz9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXcmSW50ZW50PU1pZ3JhdGlvbiZNYXhDb3VudD0xMCZTdGFydEluZGV4PTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0a2403fb-e622-4661-942d-98774cd4cf32" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "[\r\n {\r\n \"sharename\": \"\\\\\\\\SU1FileServer.azurestack.local\\\\SU1_ObjStore\",\r\n \"accountname\": \"srphealthaccount\",\r\n \"containername\": \"azurestackhealthrestrequestprocessed\",\r\n \"containerid\": 22,\r\n \"accountid\": \"3fe86317cc0d40e0a0d4833641a64fdb\",\r\n \"usedBytesInPrimaryVolume\": 2551603200,\r\n \"containerState\": \"Active\"\r\n },\r\n {\r\n \"sharename\": \"\\\\\\\\SU1FileServer.azurestack.local\\\\SU1_ObjStore\",\r\n \"accountname\": \"srphealthaccount\",\r\n \"containername\": \"azurestackhealthrestrequestaccept\",\r\n \"containerid\": 23,\r\n \"accountid\": \"3fe86317cc0d40e0a0d4833641a64fdb\",\r\n \"usedBytesInPrimaryVolume\": 2282553344,\r\n \"containerState\": \"Active\"\r\n },\r\n {\r\n \"sharename\": \"\\\\\\\\SU1FileServer.azurestack.local\\\\SU1_ObjStore\",\r\n \"accountname\": \"frphealthaccount\",\r\n \"containername\": \"azurestackhealthazssecurity\",\r\n \"containerid\": 6,\r\n \"accountid\": \"0a6b4f6b1de14cc08aa1fefadcc481eb\",\r\n \"usedBytesInPrimaryVolume\": 880074752,\r\n \"containerState\": \"Active\"\r\n },\r\n {\r\n \"sharename\": \"\\\\\\\\SU1FileServer.azurestack.local\\\\SU1_ObjStore\",\r\n \"accountname\": \"srphealthaccount\",\r\n \"containername\": \"azurestackhealthtsqueueresponse\",\r\n \"containerid\": 30,\r\n \"accountid\": \"3fe86317cc0d40e0a0d4833641a64fdb\",\r\n \"usedBytesInPrimaryVolume\": 560037888,\r\n \"containerState\": \"Active\"\r\n },\r\n {\r\n \"sharename\": \"\\\\\\\\SU1FileServer.azurestack.local\\\\SU1_ObjStore\",\r\n \"accountname\": \"srphealthaccount\",\r\n \"containername\": \"azurestackhealthtsqueuerequest\",\r\n \"containerid\": 26,\r\n \"accountid\": \"3fe86317cc0d40e0a0d4833641a64fdb\",\r\n \"usedBytesInPrimaryVolume\": 541351936,\r\n \"containerState\": \"Active\"\r\n },\r\n {\r\n \"sharename\": \"\\\\\\\\SU1FileServer.azurestack.local\\\\SU1_ObjStore\",\r\n \"accountname\": \"hrphealthaccount\",\r\n \"containername\": \"azurestackhealthcentralmaeventtable\",\r\n \"containerid\": 37,\r\n \"accountid\": \"c2a6bdd19e404154afe27e2637e64ee1\",\r\n \"usedBytesInPrimaryVolume\": 456925184,\r\n \"containerState\": \"Active\"\r\n },\r\n {\r\n \"sharename\": \"\\\\\\\\SU1FileServer.azurestack.local\\\\SU1_ObjStore\",\r\n \"accountname\": \"srphealthaccount\",\r\n \"containername\": \"azurestackhealthblobsvcrpcverbose\",\r\n \"containerid\": 17,\r\n \"accountid\": \"3fe86317cc0d40e0a0d4833641a64fdb\",\r\n \"usedBytesInPrimaryVolume\": 343273472,\r\n \"containerState\": \"Active\"\r\n },\r\n {\r\n \"sharename\": \"\\\\\\\\SU1FileServer.azurestack.local\\\\SU1_ObjStore\",\r\n \"accountname\": \"frphealthaccount\",\r\n \"containername\": \"azurestackhealthsystemperfcounter60s\",\r\n \"containerid\": 7,\r\n \"accountid\": \"0a6b4f6b1de14cc08aa1fefadcc481eb\",\r\n \"usedBytesInPrimaryVolume\": 208580608,\r\n \"containerState\": \"Active\"\r\n },\r\n {\r\n \"sharename\": \"\\\\\\\\SU1FileServer.azurestack.local\\\\SU1_ObjStore\",\r\n \"accountname\": \"srphealthaccount\",\r\n \"containername\": \"azurestackhealthtstableresponse\",\r\n \"containerid\": 31,\r\n \"accountid\": \"3fe86317cc0d40e0a0d4833641a64fdb\",\r\n \"usedBytesInPrimaryVolume\": 86974464,\r\n \"containerState\": \"Active\"\r\n },\r\n {\r\n \"sharename\": \"\\\\\\\\SU1FileServer.azurestack.local\\\\SU1_ObjStore\",\r\n \"accountname\": \"srphealthaccount\",\r\n \"containername\": \"azurestackhealthtstablerequest\",\r\n \"containerid\": 28,\r\n \"accountid\": \"3fe86317cc0d40e0a0d4833641a64fdb\",\r\n \"usedBytesInPrimaryVolume\": 85082112,\r\n \"containerState\": \"Active\"\r\n }\r\n]", - "ResponseHeaders": { - "Content-Length": [ - "3333" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:21 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvF0I3koVqbQVNxTBpqChh7zgCv9AAq8GdRTpvIhtHL/ko/nTU3bDsFQdOSgZ7aM0pMV5wSKDohkaLjjDbMMDjc5PdMJ4b8Iq5StFGpZU6IAfhHCxUSKWF4/4jLIAHjSvGWI/Owf1LHiQHA/XkRkUk" - ], - "x-ms-request-id": [ - "8e11dda6-99f9-4f0e-89be-af79f8831b62" - ], - "x-ms-correlation-request-id": [ - "cb3bc0e7-f95a-4cb1-bd53-cdf1df9a89be" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14850" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193121Z:cb3bc0e7-f95a-4cb1-bd53-cdf1df9a89be" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "SubscriptionId": "9ad61516-995c-4873-a21f-7e44904f0ed2" - } -} \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListDestinationShares.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListDestinationShares.json deleted file mode 100644 index 1533446f4db1..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListDestinationShares.json +++ /dev/null @@ -1,200 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d1dce208-4953-4bb1-afdc-0a9053944b29" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"type\": \"Microsoft.Storage.Admin/farms\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"version\": \"2015-12-01-preview\",\r\n \"settingsStore\": \"AzS-ACS01.azurestack.local:19000\",\r\n \"settings\": {\r\n \"settingsPollingIntervalInSecond\": 60,\r\n \"retentionPeriodForDeletedStorageAccountsInDays\": 0,\r\n \"hostStyleHttpPort\": 0,\r\n \"hostStyleHttpsPort\": 0,\r\n \"corsAllowedOriginsList\": \"https://adminportal.local.azurestack.external/;https://adminportal.local.azurestack.external:12649/;https://portal.local.azurestack.external/;https://portal.local.azurestack.external:12649/\",\r\n \"dataCenterUriHostSuffixes\": \"local.azurestack.external\",\r\n \"bandwidthThrottleIsEnabled\": false,\r\n \"usageCollectionIntervalInSeconds\": 10,\r\n \"feedbackRefreshIntervalInSeconds\": 10,\r\n \"numberOfAccountsToSync\": 20,\r\n \"defaultThrottleProbabilityDecayIntervalInSeconds\": 240,\r\n \"gracePeriodForFullThrottlingInRefreshIntervals\": 3,\r\n \"gracePeriodMaxThrottleProbability\": 0.9,\r\n \"overallRequestThresholdInTps\": 10000.0,\r\n \"defaultRequestThresholdInTps\": 200.0,\r\n \"minimumRequestThresholdInTps\": 1.0,\r\n \"toleranceFactorForTps\": 2.0,\r\n \"overallIngressThresholdInGbps\": 25.0,\r\n \"defaultIngressThresholdInGbps\": 2.0,\r\n \"minimumIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIngress\": 2.0,\r\n \"overallIntranetIngressThresholdInGbps\": 25.0,\r\n \"defaultIntranetIngressThresholdInGbps\": 2.0,\r\n \"minimumIntranetIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetIngress\": 2.0,\r\n \"overallEgressThresholdInGbps\": 30.0,\r\n \"defaultEgressThresholdInGbps\": 3.0,\r\n \"minimumEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForEgress\": 2.0,\r\n \"overallIntranetEgressThresholdInGbps\": 30.0,\r\n \"defaultIntranetEgressThresholdInGbps\": 3.0,\r\n \"minimumIntranetEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetEgress\": 2.0,\r\n \"overallTotalIngressThresholdInGbps\": 50.0,\r\n \"defaultTotalIngressThresholdInGbps\": 5.0,\r\n \"minimumTotalIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalIngress\": 2.0,\r\n \"overallTotalEgressThresholdInGbps\": 50.0,\r\n \"defaultTotalEgressThresholdInGbps\": 5.0,\r\n \"minimumTotalEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalEgress\": 2.0\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2888" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:21 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvWZMXBHtc0Qtl2GZEOBf15z9WKdoLc8XWnq6Piii18hTW5CYco3pBnywEf4jaLVA75gNCREEBn60F2HNR/qk32EnqutL/NLlsri2WvuuZTBa2VpL88w4RAvA9loGZrnFprtO6mQby4xDd6ZHkNvmM" - ], - "x-ms-request-id": [ - "abae5370-4dc5-484d-96db-da9e22c52cd1" - ], - "x-ms-correlation-request-id": [ - "41ef6771-1885-405d-b6b9-6ff90b84bc79" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14849" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193121Z:41ef6771-1885-405d-b6b9-6ff90b84bc79" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/shares?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3NoYXJlcz9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "46c4b09d-7a34-4c04-93e9-aa2e890cb75f" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "[\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/shares/||SU1FileServer.azurestack.local|SU1_ObjStore\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af/||SU1FileServer.azurestack.local|SU1_ObjStore\",\r\n \"type\": \"Microsoft.Storage.Admin/farms/shares\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"shareName\": \"||SU1FileServer.azurestack.local|SU1_ObjStore\",\r\n \"uncPath\": \"\\\\\\\\SU1FileServer.azurestack.local\\\\SU1_ObjStore\",\r\n \"totalCapacity\": 2728176648192,\r\n \"usedCapacity\": 400509059072,\r\n \"freeCapacity\": 2327667589120,\r\n \"healthStatus\": \"Healthy\"\r\n }\r\n }\r\n]", - "ResponseHeaders": { - "Content-Length": [ - "730" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:21 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvAYhlwnP+45V7TwSduyAqU9FQzOPovYBAs5yO9mvsQWAKklG6EdoKYoJsxrcsAjSeae+QTT8tksDctj2jLdoHSgSfqR+9w3znKKkH7OxsBmFKAFeH4Hgk86mOuNrRwVJhM50zyX0Wp8OWsAEAxxjC" - ], - "x-ms-request-id": [ - "c59a7ac6-c3ae-4d86-8965-a88651ae32cd" - ], - "x-ms-correlation-request-id": [ - "d5e254fb-dab5-4503-a266-1d229393d75c" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14848" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193121Z:d5e254fb-dab5-4503-a266-1d229393d75c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/shares/%7C%7CSU1FileServer.azurestack.local%7CSU1_ObjStore/destinationshares?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3NoYXJlcy8lN0MlN0NTVTFGaWxlU2VydmVyLmF6dXJlc3RhY2subG9jYWwlN0NTVTFfT2JqU3RvcmUvZGVzdGluYXRpb25zaGFyZXM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "696b0312-45d5-4436-a621-1fb627422ee0" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "[]", - "ResponseHeaders": { - "Content-Length": [ - "2" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:21 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvXez8ZufSxWZ9vL6mRkww9piRB9sunsQNZxMKyUowKBcqts8QMmgM02rrA3tDY8c2gqqSE5yTn16o4T4Ei8q8FCRSOsVC1R25ILPasIW/0sHeVLdo1aTBk5WI32TSdGuvWgTqkRlDHaYKhqit0WkM" - ], - "x-ms-request-id": [ - "5f4cc5d5-f5a9-498c-82b2-dd425ce85a01" - ], - "x-ms-correlation-request-id": [ - "e5fd18f1-f5f5-4b8c-a7d2-6c338a18b62c" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14847" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193121Z:e5fd18f1-f5f5-4b8c-a7d2-6c338a18b62c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "SubscriptionId": "9ad61516-995c-4873-a21f-7e44904f0ed2" - } -} \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListFarms.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListFarms.json deleted file mode 100644 index 90ed326afb98..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListFarms.json +++ /dev/null @@ -1,72 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9881dcf5-edc4-44bd-9737-ba469e264851" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"type\": \"Microsoft.Storage.Admin/farms\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"version\": \"2015-12-01-preview\",\r\n \"settingsStore\": \"AzS-ACS01.azurestack.local:19000\",\r\n \"settings\": {\r\n \"settingsPollingIntervalInSecond\": 60,\r\n \"retentionPeriodForDeletedStorageAccountsInDays\": 0,\r\n \"hostStyleHttpPort\": 0,\r\n \"hostStyleHttpsPort\": 0,\r\n \"corsAllowedOriginsList\": \"https://adminportal.local.azurestack.external/;https://adminportal.local.azurestack.external:12649/;https://portal.local.azurestack.external/;https://portal.local.azurestack.external:12649/\",\r\n \"dataCenterUriHostSuffixes\": \"local.azurestack.external\",\r\n \"bandwidthThrottleIsEnabled\": false,\r\n \"usageCollectionIntervalInSeconds\": 10,\r\n \"feedbackRefreshIntervalInSeconds\": 10,\r\n \"numberOfAccountsToSync\": 20,\r\n \"defaultThrottleProbabilityDecayIntervalInSeconds\": 240,\r\n \"gracePeriodForFullThrottlingInRefreshIntervals\": 3,\r\n \"gracePeriodMaxThrottleProbability\": 0.9,\r\n \"overallRequestThresholdInTps\": 10000.0,\r\n \"defaultRequestThresholdInTps\": 200.0,\r\n \"minimumRequestThresholdInTps\": 1.0,\r\n \"toleranceFactorForTps\": 2.0,\r\n \"overallIngressThresholdInGbps\": 25.0,\r\n \"defaultIngressThresholdInGbps\": 2.0,\r\n \"minimumIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIngress\": 2.0,\r\n \"overallIntranetIngressThresholdInGbps\": 25.0,\r\n \"defaultIntranetIngressThresholdInGbps\": 2.0,\r\n \"minimumIntranetIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetIngress\": 2.0,\r\n \"overallEgressThresholdInGbps\": 30.0,\r\n \"defaultEgressThresholdInGbps\": 3.0,\r\n \"minimumEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForEgress\": 2.0,\r\n \"overallIntranetEgressThresholdInGbps\": 30.0,\r\n \"defaultIntranetEgressThresholdInGbps\": 3.0,\r\n \"minimumIntranetEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetEgress\": 2.0,\r\n \"overallTotalIngressThresholdInGbps\": 50.0,\r\n \"defaultTotalIngressThresholdInGbps\": 5.0,\r\n \"minimumTotalIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalIngress\": 2.0,\r\n \"overallTotalEgressThresholdInGbps\": 50.0,\r\n \"defaultTotalEgressThresholdInGbps\": 5.0,\r\n \"minimumTotalEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalEgress\": 2.0\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2888" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:03 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv6svYb3kQppWOnlYPfQ/0C11SyzxYpLcacy9jScnlliJ987rgrVrBgRV4A57A3QJZBCiE+n58w6NSXYFWrN6yAs28T9I43SdpJdDTJGHWqqBftrCDulQ3zRHQ+QsBJjN06z3TRayZWEQW3u2lQUlK" - ], - "x-ms-request-id": [ - "c1042869-73ba-4ad1-b237-f9513455e75a" - ], - "x-ms-correlation-request-id": [ - "df874161-a31c-4041-9160-565a50b0b31a" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193103Z:df874161-a31c-4041-9160-565a50b0b31a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "SubscriptionId": "9ad61516-995c-4873-a21f-7e44904f0ed2" - } -} \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListShares.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListShares.json deleted file mode 100644 index d300f57fc97b..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/ListShares.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXM/YXBpLXZlcnNpb249MjAxNS0xMi0wMS1wcmV2aWV3", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "edadd70b-d7c0-4974-9e47-4994df09fa0c" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"type\": \"Microsoft.Storage.Admin/farms\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"farmId\": \"3cf03497-c44a-4e51-a56f-3987d88c70af\",\r\n \"version\": \"2015-12-01-preview\",\r\n \"settingsStore\": \"AzS-ACS01.azurestack.local:19000\",\r\n \"settings\": {\r\n \"settingsPollingIntervalInSecond\": 60,\r\n \"retentionPeriodForDeletedStorageAccountsInDays\": 0,\r\n \"hostStyleHttpPort\": 0,\r\n \"hostStyleHttpsPort\": 0,\r\n \"corsAllowedOriginsList\": \"https://adminportal.local.azurestack.external/;https://adminportal.local.azurestack.external:12649/;https://portal.local.azurestack.external/;https://portal.local.azurestack.external:12649/\",\r\n \"dataCenterUriHostSuffixes\": \"local.azurestack.external\",\r\n \"bandwidthThrottleIsEnabled\": false,\r\n \"usageCollectionIntervalInSeconds\": 10,\r\n \"feedbackRefreshIntervalInSeconds\": 10,\r\n \"numberOfAccountsToSync\": 20,\r\n \"defaultThrottleProbabilityDecayIntervalInSeconds\": 240,\r\n \"gracePeriodForFullThrottlingInRefreshIntervals\": 3,\r\n \"gracePeriodMaxThrottleProbability\": 0.9,\r\n \"overallRequestThresholdInTps\": 10000.0,\r\n \"defaultRequestThresholdInTps\": 200.0,\r\n \"minimumRequestThresholdInTps\": 1.0,\r\n \"toleranceFactorForTps\": 2.0,\r\n \"overallIngressThresholdInGbps\": 25.0,\r\n \"defaultIngressThresholdInGbps\": 2.0,\r\n \"minimumIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIngress\": 2.0,\r\n \"overallIntranetIngressThresholdInGbps\": 25.0,\r\n \"defaultIntranetIngressThresholdInGbps\": 2.0,\r\n \"minimumIntranetIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetIngress\": 2.0,\r\n \"overallEgressThresholdInGbps\": 30.0,\r\n \"defaultEgressThresholdInGbps\": 3.0,\r\n \"minimumEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForEgress\": 2.0,\r\n \"overallIntranetEgressThresholdInGbps\": 30.0,\r\n \"defaultIntranetEgressThresholdInGbps\": 3.0,\r\n \"minimumIntranetEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForIntranetEgress\": 2.0,\r\n \"overallTotalIngressThresholdInGbps\": 50.0,\r\n \"defaultTotalIngressThresholdInGbps\": 5.0,\r\n \"minimumTotalIngressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalIngress\": 2.0,\r\n \"overallTotalEgressThresholdInGbps\": 50.0,\r\n \"defaultTotalEgressThresholdInGbps\": 5.0,\r\n \"minimumTotalEgressThresholdInGbps\": 0.0008,\r\n \"toleranceFactorForTotalEgress\": 2.0\r\n }\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2888" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:25 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRv5PylGlYWiL4uRh4Ol5hAIusszyA36IX+u+PRJxRGweKU0IneZ1KvCi6ZEDcCUHk/v/txVBzHKoGEs8M7DPVwQ9zgvfve98H2K2hTAlSAsZDnlhvrWnV73WcukJnKfgwUHvnxDT9NuYdrDyKhXiiq" - ], - "x-ms-request-id": [ - "d357b4dc-5269-4559-b6e1-0d9ab7bfad72" - ], - "x-ms-correlation-request-id": [ - "7537bc30-f7c4-4fea-a1b1-34521d2ef344" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14816" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193125Z:7537bc30-f7c4-4fea-a1b1-34521d2ef344" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourcegroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/shares?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Jlc291cmNlZ3JvdXBzL1N5c3RlbS5sb2NhbC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2UuQWRtaW4vZmFybXMvM2NmMDM0OTctYzQ0YS00ZTUxLWE1NmYtMzk4N2Q4OGM3MGFmL3NoYXJlcz9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d09f782e-80b8-4731-809a-bff6a8d7c269" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "[\r\n {\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/resourceGroups/System.local/providers/Microsoft.Storage.Admin/farms/3cf03497-c44a-4e51-a56f-3987d88c70af/shares/||SU1FileServer.azurestack.local|SU1_ObjStore\",\r\n \"name\": \"3cf03497-c44a-4e51-a56f-3987d88c70af/||SU1FileServer.azurestack.local|SU1_ObjStore\",\r\n \"type\": \"Microsoft.Storage.Admin/farms/shares\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"shareName\": \"||SU1FileServer.azurestack.local|SU1_ObjStore\",\r\n \"uncPath\": \"\\\\\\\\SU1FileServer.azurestack.local\\\\SU1_ObjStore\",\r\n \"totalCapacity\": 2728176648192,\r\n \"usedCapacity\": 400509059072,\r\n \"freeCapacity\": 2327667589120,\r\n \"healthStatus\": \"Healthy\"\r\n }\r\n }\r\n]", - "ResponseHeaders": { - "Content-Length": [ - "730" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 30 Jan 2018 19:31:25 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvPO4/cYAd3uTNKc1a16A2RzhpPYVH+bhNIplF9qmmNVzF4je6CKYtY9gzb1wENYZlksFGLD+IT4Y88EHcb0wDrHPEmyxPjL/EQcOlPMkGMcD5RMLPKUShjkOX0bT+4fraTEeCsGnX2PGgzjjMbRSA" - ], - "x-ms-request-id": [ - "8ca09a15-44db-4460-9b32-e69829410da7" - ], - "x-ms-correlation-request-id": [ - "ab39cbfd-04f5-4604-a0d3-5114f08f20bf" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14815" - ], - "x-ms-routing-request-id": [ - "LOCAL:20180130T193125Z:ab39cbfd-04f5-4604-a0d3-5114f08f20bf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ] - }, - "StatusCode": 200 - } - ], - "Names": {}, - "Variables": { - "SubscriptionId": "9ad61516-995c-4873-a21f-7e44904f0ed2" - } -} \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/UpdateQuota.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/UpdateQuota.json index fc72c9ccf879..9e4d9acf94f1 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/UpdateQuota.json +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/UpdateQuota.json @@ -1,270 +1,284 @@ { "Entries": [ { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/providers/Microsoft.Storage.Admin/locations/local/quotas/TestUpdateQuota?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1Rlc3RVcGRhdGVRdW90YT9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/TestUpdateQuota?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1Rlc3RVcGRhdGVRdW90YT9hcGktdmVyc2lvbj0yMDE5LTA4LTA4LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fdb8cf00-e986-4902-9bcb-e19c3c05cdea" + "dfd78733-69f8-44cb-b562-147538ece573" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:27 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "01acc4d2-4f58-4784-898d-6af1422a9b2f" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvk3WId4M7E2a3wmHkit00gadjnnG2j36bImvurQrdfETr2srXER4NjYd5ch4fVuDPrJbnLLVB9jhgyB91Yci3SV7pnxXPf7Dm4nHJega3MflrvAkK231Gr/KDZv8QbCzJZT5b2ocbciUu53CgjQsU" - ], - "x-ms-correlation-request-id": [ - "2ffdfab4-1985-466a-a79e-8d38447e2b0c" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvj8eqAT+yATz4ks4EK/5N4FAdAj5pm8JLl4g7Vm+KXBD0xQvvK8ldjSLA6C5sPz3mL9pZBcXP+RH0ProXSPXbxhWohVCo9oZxoJWvGtGVlbe1TbAwjwSMWlNGvPQosGr0j00HOpeINdfmlLpHVMm0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14989" ], "x-ms-request-id": [ - "2ffdfab4-1985-466a-a79e-8d38447e2b0c" + "01acc4d2-4f58-4784-898d-6af1422a9b2f" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193127Z:2ffdfab4-1985-466a-a79e-8d38447e2b0c" + "LOCAL:20190917T022929Z:01acc4d2-4f58-4784-898d-6af1422a9b2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:28 GMT" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/providers/Microsoft.Storage.Admin/locations/local/quotas/TestUpdateQuota?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1Rlc3RVcGRhdGVRdW90YT9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/TestUpdateQuota?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1Rlc3RVcGRhdGVRdW90YT9hcGktdmVyc2lvbj0yMDE5LTA4LTA4LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f21befab-4c27-431a-b971-f42939879ef4" + "1bb144e9-2b52-462f-9a83-7ad8adcdca53" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:27 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "3d0e046e-7caa-4f27-842e-090460c78dde" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvNVFuUvaL7c/de/jyYjdESyQA9YdX3wZNnX2zOe/UT0/Tng1XYKorN2aUhHp66zlybWOmk+3YZhmBjb3Jf+xZvlF+i0KZ0jd1EbY5X6zYG5/X1j/UrdkCKwcL7uKHLLD5zq8771YvVvXVd2SH1VKi" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvoiry2JtZUmA8f/SpLsDHLzU4Yyx5VNNQM3XvxWRGRnSSUrjRAv0Y1l+uAW1XiVM0FFSfuM3eHA7NO17RZzKE6eCMGGVUbRmYlShU5juNDzPvdhAiB1/Zu44qVW7+qYRb5k2Z7q+eLhlq4JjvkJnJ" ], - "x-ms-correlation-request-id": [ - "da409c57-9bdf-4142-9757-de95a393a88b" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14988" ], "x-ms-request-id": [ - "da409c57-9bdf-4142-9757-de95a393a88b" + "3d0e046e-7caa-4f27-842e-090460c78dde" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193127Z:da409c57-9bdf-4142-9757-de95a393a88b" + "LOCAL:20190917T022929Z:3d0e046e-7caa-4f27-842e-090460c78dde" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:29 GMT" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/providers/Microsoft.Storage.Admin/locations/local/quotas/TestUpdateQuota?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1Rlc3RVcGRhdGVRdW90YT9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/TestUpdateQuota?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1Rlc3RVcGRhdGVRdW90YT9hcGktdmVyc2lvbj0yMDE5LTA4LTA4LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 100,\r\n \"capacityInGb\": 50\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "89" - ], "x-ms-client-request-id": [ - "d8b35362-f0a9-4b2a-8c9f-df0a29e7fb91" + "0ce94de0-166e-41ce-97d2-2a7d2edd0045" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/providers/Microsoft.Storage.Admin/locations/local/quotas/TestUpdateQuota\",\r\n \"name\": \"local/TestUpdateQuota\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 100,\r\n \"capacityInGb\": 50\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "341" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "89" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:27 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "e9362a44-0937-4c00-a206-c2122b8178a4" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvEI/3jFd395nWUXpjASdpy7d6NcDSJfrPR/68knyaOHi5HdJ80XthHUYWRxhAX8o66WUe3AIB7iD+CBcWUSBM/6CZX09FY2dm7Pd7sI8LdbZZTtdiy0FqD/lJbFUu75TjN/MJm0Sekir1XXO5bssY" - ], - "x-ms-request-id": [ - "d57cf6f6-f4c4-4d09-b954-b899f377f2fd" - ], - "x-ms-correlation-request-id": [ - "4351a651-49c2-41a8-8dae-59e76e8a2fb0" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRveWFX7okQt6UUb75neZURx6BoR1U057FOUO4AMMGNFfsGk3xPKxSlXSYup3EmuvirCjkwr3yj/sa+qtYAx+AA7IHYX8BH8hRv7HF7W1Ei1ZKsm5hQUmcoGNU4T0oTqnSfNaUwK1lV1fCmKhhPPmoQ" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1192" + ], + "x-ms-request-id": [ + "e9362a44-0937-4c00-a206-c2122b8178a4" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193127Z:4351a651-49c2-41a8-8dae-59e76e8a2fb0" + "LOCAL:20190917T022929Z:e9362a44-0937-4c00-a206-c2122b8178a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:28 GMT" + ], + "Content-Length": [ + "341" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/TestUpdateQuota\",\r\n \"name\": \"local/TestUpdateQuota\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 100,\r\n \"capacityInGb\": 50\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/providers/Microsoft.Storage.Admin/locations/local/quotas/TestUpdateQuota?api-version=2015-12-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWFkNjE1MTYtOTk1Yy00ODczLWEyMWYtN2U0NDkwNGYwZWQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1Rlc3RVcGRhdGVRdW90YT9hcGktdmVyc2lvbj0yMDE1LTEyLTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/TestUpdateQuota?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvcXVvdGFzL1Rlc3RVcGRhdGVRdW90YT9hcGktdmVyc2lvbj0yMDE5LTA4LTA4LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 10,\r\n \"capacityInGb\": 123\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "89" - ], "x-ms-client-request-id": [ - "1810f00f-e51f-4335-bfee-be460a150b24" + "5d1b0ed6-0b96-499f-bac5-375983ed8ae8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.25211.01", - "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9ad61516-995c-4873-a21f-7e44904f0ed2/providers/Microsoft.Storage.Admin/locations/local/quotas/TestUpdateQuota\",\r\n \"name\": \"local/TestUpdateQuota\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 10,\r\n \"capacityInGb\": 123\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "341" + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "89" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 30 Jan 2018 19:31:27 GMT" - ], "Pragma": [ "no-cache" ], + "x-ms-correlation-request-id": [ + "a5fa79c4-edb0-46d9-83e8-c54ca4363cb0" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "WWW-Authenticate": [ - "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvuVuYTHBAudzThPiShOBJfHaSddVJeTvwIpGjhHuNaen/GvQWMa+hb7onR5VOIsGdcGF/9OQUe3KOIyKv2c5dOVTjO7c6vmOW2vHVmtXts5MgK1r2w9TjJA4EGP6Z27+2I8wW+JvT4BLdRSFB2V4s" - ], - "x-ms-request-id": [ - "30215954-ebf0-413a-a59b-9435064394d0" - ], - "x-ms-correlation-request-id": [ - "a29ebb80-4acc-4e0e-a711-6a8f5c446af1" + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvD0a+tkVrJfZWLBg6kOWuernrdqEPKWbWF+8Go/69RumrTkhb20hEDw+JLBwVo+z6S2htj/6WQSmwCzDrmUkF9oK8em77rfYoRvjN0uzNqVUqfOy/l16FxZs9mIKshMMMdtLCVPs/gwZoM7xavjyp" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1191" + ], + "x-ms-request-id": [ + "a5fa79c4-edb0-46d9-83e8-c54ca4363cb0" ], "x-ms-routing-request-id": [ - "LOCAL:20180130T193127Z:a29ebb80-4acc-4e0e-a711-6a8f5c446af1" + "LOCAL:20190917T022929Z:a5fa79c4-edb0-46d9-83e8-c54ca4363cb0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:29 GMT" + ], + "Content-Length": [ + "341" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/quotas/TestUpdateQuota\",\r\n \"name\": \"local/TestUpdateQuota\",\r\n \"type\": \"Microsoft.Storage.Admin/locations/quotas\",\r\n \"location\": \"local\",\r\n \"properties\": {\r\n \"numberOfStorageAccounts\": 10,\r\n \"capacityInGb\": 123\r\n }\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "9ad61516-995c-4873-a21f-7e44904f0ed2" + "SubscriptionId": "047e87e6-327f-4c44-8184-fb6bc35e8b38" } } \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/UpdateSettings.json b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/UpdateSettings.json new file mode 100644 index 000000000000..1b974e264767 --- /dev/null +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/SessionRecords/StorageAdminClient/UpdateSettings.json @@ -0,0 +1,146 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/settings?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc2V0dGluZ3M/YXBpLXZlcnNpb249MjAxOS0wOC0wOC1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8f2e55de-e62a-4540-a02d-6b1bd3500005" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "815fdbc5-f3cd-4506-98a0-d6e0146d5a8c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvqnjW92kGy07DohDc3QIK0k0Bcqc+l9eRt5U2Z0E433rTPb2zse+6AsKrrM41m/MYMmPcjFcN0JB+boyK00HBoftpwntlrUhO7N283UUQDeOLqonjiEcN4VcOGMkLmDm9TFU2ZLxuTN8FAtVQNA3U" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14753" + ], + "x-ms-request-id": [ + "815fdbc5-f3cd-4506-98a0-d6e0146d5a8c" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022930Z:815fdbc5-f3cd-4506-98a0-d6e0146d5a8c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:29 GMT" + ], + "Content-Length": [ + "85" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionPeriodForDeletedStorageAccountsInDays\": 1\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/047e87e6-327f-4c44-8184-fb6bc35e8b38/providers/Microsoft.Storage.Admin/locations/local/settings?api-version=2019-08-08-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDQ3ZTg3ZTYtMzI3Zi00YzQ0LTgxODQtZmI2YmMzNWU4YjM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS5BZG1pbi9sb2NhdGlvbnMvbG9jYWwvc2V0dGluZ3M/YXBpLXZlcnNpb249MjAxOS0wOC0wOC1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"retentionPeriodForDeletedStorageAccountsInDays\": 2\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f40c5a3-d23a-44a2-bc1c-ed24697a6dd1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.14393.", + "Microsoft.AzureStack.Management.Storage.Admin.StorageAdminClient/0.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "85" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-correlation-request-id": [ + "f8e14f31-fb37-43a0-bc73-2755a707023a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate": [ + "oYG3MIG0oAMKAQChCwYJKoZIgvcSAQICooGfBIGcYIGZBgkqhkiG9xIBAgICAG+BiTCBhqADAgEFoQMCAQ+iejB4oAMCARKicQRvyGuL1qgQvcI8bXS04zbuxr4rvFFR7swbri3kRl19FmhALcWqkTcEC11dKsYiRx4klafGFn4ahEvR+QSsCIDUT4PmufSYgM8DkZuyMwA8m81LrlX21kgPjB1CyAidGbObJyOKV6CeW4B3Wk71RwKx" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-request-id": [ + "f8e14f31-fb37-43a0-bc73-2755a707023a" + ], + "x-ms-routing-request-id": [ + "LOCAL:20190917T022930Z:f8e14f31-fb37-43a0-bc73-2755a707023a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 17 Sep 2019 02:29:29 GMT" + ], + "Content-Length": [ + "85" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"retentionPeriodForDeletedStorageAccountsInDays\": 2\r\n }\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "047e87e6-327f-4c44-8184-fb6bc35e8b38" + } +} \ No newline at end of file diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/AcquisitionsTests.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/AcquisitionsTests.cs index e99fed778d4a..c1acb1c10f98 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/AcquisitionsTests.cs +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/AcquisitionsTests.cs @@ -24,26 +24,18 @@ private void ValidateAcquisition(Acquisition acquisition) { Assert.NotNull(acquisition.Blob); Assert.NotNull(acquisition.Container); Assert.NotNull(acquisition.FilePath); - Assert.NotNull(acquisition.Id); - Assert.NotNull(acquisition.Location); Assert.NotNull(acquisition.Maximumblobsize); - Assert.NotNull(acquisition.Name); Assert.NotNull(acquisition.Status); Assert.NotNull(acquisition.Storageaccount); Assert.NotNull(acquisition.Susbcriptionid); //Assert.NotNull(acquisition.Tags); - Assert.NotNull(acquisition.Type); } [Fact] public void ListAllAcquisitions() { RunTest((client) => { - var farms = client.Farms.List(ResourceGroupName); - foreach (var farm in farms) { - var name = ExtractName(farm.Name); - var result = client.Acquisitions.List(ResourceGroupName, name); - Common.WriteIEnumerableToFile(result, "ListAllAcquisitions.txt"); - } + var acquisitions = client.Acquisitions.List(Location); + Common.WriteIEnumerableToFile(acquisitions.Value, "ListAllAcquisitions.txt"); }); } diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/BlobServicesTests.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/BlobServicesTests.cs deleted file mode 100644 index 09b50aabdf1c..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/BlobServicesTests.cs +++ /dev/null @@ -1,81 +0,0 @@ -using System.Linq; -using Microsoft.AzureStack.Management.Storage.Admin; -using Microsoft.AzureStack.Management.Storage.Admin.Models; -using Xunit; - -namespace Storage.Tests -{ - public class BlobServicesTests : StorageTestBase - { - - private void ValidateBlobService(BlobService blobService) - { - Assert.NotNull(blobService); - Assert.NotNull(blobService.BlobSvcContainerGcInterval); - Assert.NotNull(blobService.BlobSvcShallowGcInterval); - Assert.NotNull(blobService.BlobSvcStreamMapMinContainerOccupancyPercent); - Assert.NotNull(blobService.FrontEndCallbackThreadsCount); - Assert.NotNull(blobService.FrontEndCpuBasedKeepAliveThrottlingCpuMonitorIntervalInSeconds); - Assert.NotNull(blobService.FrontEndCpuBasedKeepAliveThrottlingEnabled); - Assert.NotNull(blobService.FrontEndCpuBasedKeepAliveThrottlingPercentCpuThreshold); - Assert.NotNull(blobService.FrontEndCpuBasedKeepAliveThrottlingPercentRequestsToThrottle); - Assert.NotNull(blobService.FrontEndHttpListenPort); - Assert.NotNull(blobService.FrontEndHttpsListenPort); - Assert.NotNull(blobService.FrontEndMaxMillisecondsBetweenMemorySamples); - Assert.NotNull(blobService.FrontEndMemoryThrottleThresholdSettings); - Assert.NotNull(blobService.FrontEndMemoryThrottlingEnabled); - Assert.NotNull(blobService.FrontEndMinThreadPoolThreads); - Assert.NotNull(blobService.FrontEndThreadPoolBasedKeepAliveIOCompletionThreshold); - Assert.NotNull(blobService.FrontEndThreadPoolBasedKeepAliveMonitorIntervalInSeconds); - Assert.NotNull(blobService.FrontEndThreadPoolBasedKeepAlivePercentage); - Assert.NotNull(blobService.FrontEndThreadPoolBasedKeepAliveWorkerThreadThreshold); - Assert.NotNull(blobService.FrontEndUseSlaTimeInAvailability); - Assert.NotNull(blobService.Id); - Assert.NotNull(blobService.Location); - Assert.NotNull(blobService.Name); - Assert.NotNull(blobService.Type); - Assert.NotNull(blobService.Version); - } - - [Fact] - public void GetBlobService() - { - RunTest((client) => { - var farms = client.Farms.List(ResourceGroupName); - foreach (var farm in farms) - { - var fName = ExtractName(farm.Name); - var blobService = client.BlobServices.Get(ResourceGroupName, fName); - ValidateBlobService(blobService); - } - }); - } - - [Fact] - public void ListBlobServiceMetricDefinitions() - { - RunTest((client) => { - var farms = client.Farms.List(ResourceGroupName); - foreach (var farm in farms) - { - var fName = ExtractName(farm.Name); - var blobService = client.BlobServices.Get(ResourceGroupName, fName); - var metricDefinitions = client.BlobServices.ListMetricDefinitions(ResourceGroupName, fName); - } - }); - } - - [Fact] - public void ListBlobServiceMetrics() { - RunTest((client) => { - var farms = client.Farms.List(ResourceGroupName); - foreach (var farm in farms) - { - var fName = ExtractName(farm.Name); - var blobService = client.BlobServices.Get(ResourceGroupName, fName); - var metricDefinitions = client.BlobServices.ListMetrics(ResourceGroupName, fName); - } - }); - } - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/Containers.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/Containers.cs deleted file mode 100644 index 9e898cb84afc..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/Containers.cs +++ /dev/null @@ -1,99 +0,0 @@ -using System.Linq; -using Microsoft.AzureStack.Management.Storage.Admin; -using Microsoft.AzureStack.Management.Storage.Admin.Models; -using Xunit; - -namespace Storage.Tests -{ - public class ContainersTests : StorageTestBase - { - - private void ValidateContainer(Container container) { - Assert.NotNull(container); - Assert.NotNull(container.Accountid); - Assert.NotNull(container.Accountname); - Assert.NotNull(container.Containerid); - Assert.NotNull(container.Containername); - Assert.NotNull(container.ContainerState); - Assert.NotNull(container.Sharename); - Assert.NotNull(container.UsedBytesInPrimaryVolume); - } - - private void ValidateDestinationShare(Share share) - { - Assert.NotNull(share); - Assert.NotNull(share.FreeCapacity); - Assert.NotNull(share.HealthStatus); - Assert.NotNull(share.Id); - Assert.NotNull(share.Location); - Assert.NotNull(share.Name); - Assert.NotNull(share.ShareName); - Assert.NotNull(share.TotalCapacity); - Assert.NotNull(share.Type); - Assert.NotNull(share.UncPath); - Assert.NotNull(share.UsedCapacity); - } - - [Fact] - public void ListContainers() - { - RunTest((client) => { - var farms = client.Farms.List(ResourceGroupName); - foreach(var farm in farms) - { - var fName = ExtractName(farm.Name); - var shares = client.Shares.List(ResourceGroupName, fName); - foreach(var share in shares) - { - var sName = ExtractName(share.Name); - var intent = "Migration"; - var containers = client.Containers.List(ResourceGroupName, fName, sName, intent, 10, 0); - containers.ForEach(ValidateContainer); - } - } - }); - } - - [Fact] - public void ListDestinationShares() - { - RunTest((client) => { - var farms = client.Farms.List(ResourceGroupName); - foreach (var farm in farms) - { - var fName = ExtractName(farm.Name); - var shares = client.Shares.List(ResourceGroupName, fName); - foreach (var share in shares) - { - var sName = ExtractName(share.Name); - var destinationShares = client.Containers.ListDestinationShares(ResourceGroupName, fName, sName); - destinationShares.ForEach(ValidateDestinationShare); - } - } - }); - } - - [Fact(Skip = "No way to migrate a share currently.")] - public void MigrateThenCancelShare() - { - RunTest((client) => { - var farms = client.Farms.List(ResourceGroupName); - foreach (var farm in farms) - { - var fName = ExtractName(farm.Name); - var shares = client.Shares.List(ResourceGroupName, fName); - foreach (var share in shares) - { - var shareName = ""; - var storageAccountName = ""; - var containerName= ""; - var destinationShareUNCPath= ""; - var migrationParameters = new MigrationParameters(storageAccountName, containerName, destinationShareUNCPath); - var operationId = client.Containers.Migrate(ResourceGroupName, fName, shareName, migrationParameters); - client.Containers.CancelMigration(ResourceGroupName, fName, operationId.JobId); - } - } - }); - } - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/FarmTests.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/FarmTests.cs deleted file mode 100644 index b5abb23e5448..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/FarmTests.cs +++ /dev/null @@ -1,223 +0,0 @@ -using System.Linq; -using Microsoft.AzureStack.Management.Storage.Admin; -using Microsoft.AzureStack.Management.Storage.Admin.Models; -using Xunit; - -namespace Storage.Tests -{ - public class FarmsTests : StorageTestBase - { - private void AssertAreEqual(Farm expected, Farm found) - { - if (expected == null) - { - Assert.NotNull(found); - } - else - { - ValidateFarm(found); - Assert.Equal(expected.BandwidthThrottleIsEnabled, found.BandwidthThrottleIsEnabled); - Assert.Equal(expected.CorsAllowedOriginsList, found.CorsAllowedOriginsList); - Assert.Equal(expected.DataCenterUriHostSuffixes, found.DataCenterUriHostSuffixes); - Assert.Equal(expected.DefaultEgressThresholdInGbps, found.DefaultEgressThresholdInGbps); - Assert.Equal(expected.DefaultIngressThresholdInGbps, found.DefaultIngressThresholdInGbps); - Assert.Equal(expected.DefaultIntranetEgressThresholdInGbps, found.DefaultIntranetEgressThresholdInGbps); - Assert.Equal(expected.DefaultIntranetIngressThresholdInGbps, found.DefaultIntranetIngressThresholdInGbps); - Assert.Equal(expected.DefaultRequestThresholdInTps, found.DefaultRequestThresholdInTps); - Assert.Equal(expected.DefaultThrottleProbabilityDecayIntervalInSeconds, found.DefaultThrottleProbabilityDecayIntervalInSeconds); - Assert.Equal(expected.DefaultTotalEgressThresholdInGbps, found.DefaultTotalEgressThresholdInGbps); - Assert.Equal(expected.DefaultTotalIngressThresholdInGbps, found.DefaultTotalIngressThresholdInGbps); - Assert.Equal(expected.FeedbackRefreshIntervalInSeconds, found.FeedbackRefreshIntervalInSeconds); - Assert.Equal(expected.GracePeriodForFullThrottlingInRefreshIntervals, found.GracePeriodForFullThrottlingInRefreshIntervals); - Assert.Equal(expected.GracePeriodMaxThrottleProbability, found.GracePeriodMaxThrottleProbability); - Assert.Equal(expected.HostStyleHttpPort, found.HostStyleHttpPort); - Assert.Equal(expected.HostStyleHttpsPort, found.HostStyleHttpsPort); - Assert.Equal(expected.Id, found.Id); - Assert.Equal(expected.Location, found.Location); - Assert.Equal(expected.MinimumEgressThresholdInGbps, found.MinimumEgressThresholdInGbps); - Assert.Equal(expected.MinimumIngressThresholdInGbps, found.MinimumIngressThresholdInGbps); - Assert.Equal(expected.MinimumIntranetEgressThresholdInGbps, found.MinimumIntranetEgressThresholdInGbps); - Assert.Equal(expected.MinimumIntranetIngressThresholdInGbps, found.MinimumIntranetIngressThresholdInGbps); - Assert.Equal(expected.MinimumRequestThresholdInTps, found.MinimumRequestThresholdInTps); - Assert.Equal(expected.MinimumTotalEgressThresholdInGbps, found.MinimumTotalEgressThresholdInGbps); - Assert.Equal(expected.MinimumTotalIngressThresholdInGbps, found.MinimumTotalIngressThresholdInGbps); - Assert.Equal(expected.Name, found.Name); - Assert.Equal(expected.NumberOfAccountsToSync, found.NumberOfAccountsToSync); - Assert.Equal(expected.OverallEgressThresholdInGbps, found.OverallEgressThresholdInGbps); - Assert.Equal(expected.OverallIngressThresholdInGbps, found.OverallIngressThresholdInGbps); - Assert.Equal(expected.OverallIntranetEgressThresholdInGbps, found.OverallIntranetEgressThresholdInGbps); - Assert.Equal(expected.OverallIntranetIngressThresholdInGbps, found.OverallIntranetIngressThresholdInGbps); - Assert.Equal(expected.OverallRequestThresholdInTps, found.OverallRequestThresholdInTps); - Assert.Equal(expected.OverallTotalEgressThresholdInGbps, found.OverallTotalEgressThresholdInGbps); - Assert.Equal(expected.OverallTotalIngressThresholdInGbps, found.OverallTotalIngressThresholdInGbps); - Assert.Equal(expected.OverallIntranetEgressThresholdInGbps, found.OverallIntranetEgressThresholdInGbps); - Assert.Equal(expected.RetentionPeriodForDeletedStorageAccountsInDays, found.RetentionPeriodForDeletedStorageAccountsInDays); - Assert.Equal(expected.SettingsPollingIntervalInSecond, found.SettingsPollingIntervalInSecond); - Assert.Equal(expected.SettingsStore, found.SettingsStore); - if (expected.Tags == null) - { - Assert.Null(found.Tags); - } - else - { - Assert.NotNull(found.Tags); - foreach (var expectedTag in expected.Tags) - { - Assert.True(found.Tags.ContainsKey(expectedTag.Key)); - } - } - Assert.Equal(expected.ToleranceFactorForEgress, found.ToleranceFactorForEgress); - Assert.Equal(expected.ToleranceFactorForIngress, found.ToleranceFactorForIngress); - Assert.Equal(expected.ToleranceFactorForIntranetEgress, found.ToleranceFactorForIntranetEgress); - Assert.Equal(expected.ToleranceFactorForIntranetIngress, found.ToleranceFactorForIntranetIngress); - Assert.Equal(expected.ToleranceFactorForTotalEgress, found.ToleranceFactorForTotalEgress); - Assert.Equal(expected.ToleranceFactorForTotalIngress, found.ToleranceFactorForTotalIngress); - Assert.Equal(expected.ToleranceFactorForTps, found.ToleranceFactorForTps); - Assert.Equal(expected.Type, found.Type); - Assert.Equal(expected.UsageCollectionIntervalInSeconds, found.UsageCollectionIntervalInSeconds); - } - } - - private void ValidateFarm(Farm farm) - { - Assert.NotNull(farm); - Assert.NotNull(farm.BandwidthThrottleIsEnabled); - Assert.NotNull(farm.CorsAllowedOriginsList); - Assert.NotNull(farm.DataCenterUriHostSuffixes); - Assert.NotNull(farm.DefaultEgressThresholdInGbps); - Assert.NotNull(farm.DefaultIngressThresholdInGbps); - Assert.NotNull(farm.DefaultIntranetEgressThresholdInGbps); - Assert.NotNull(farm.DefaultIntranetIngressThresholdInGbps); - Assert.NotNull(farm.DefaultRequestThresholdInTps); - Assert.NotNull(farm.DefaultThrottleProbabilityDecayIntervalInSeconds); - Assert.NotNull(farm.DefaultTotalEgressThresholdInGbps); - Assert.NotNull(farm.DefaultTotalIngressThresholdInGbps); - Assert.NotNull(farm.FeedbackRefreshIntervalInSeconds); - Assert.NotNull(farm.GracePeriodForFullThrottlingInRefreshIntervals); - Assert.NotNull(farm.GracePeriodMaxThrottleProbability); - Assert.NotNull(farm.HostStyleHttpPort); - Assert.NotNull(farm.HostStyleHttpsPort); - Assert.NotNull(farm.Id); - Assert.NotNull(farm.Location); - Assert.NotNull(farm.MinimumEgressThresholdInGbps); - Assert.NotNull(farm.MinimumIngressThresholdInGbps); - Assert.NotNull(farm.MinimumIntranetEgressThresholdInGbps); - Assert.NotNull(farm.MinimumIntranetIngressThresholdInGbps); - Assert.NotNull(farm.MinimumRequestThresholdInTps); - Assert.NotNull(farm.MinimumTotalEgressThresholdInGbps); - Assert.NotNull(farm.MinimumTotalIngressThresholdInGbps); - Assert.NotNull(farm.Name); - Assert.NotNull(farm.NumberOfAccountsToSync); - Assert.NotNull(farm.OverallEgressThresholdInGbps); - Assert.NotNull(farm.OverallIngressThresholdInGbps); - Assert.NotNull(farm.OverallIntranetEgressThresholdInGbps); - Assert.NotNull(farm.OverallIntranetIngressThresholdInGbps); - Assert.NotNull(farm.OverallRequestThresholdInTps); - Assert.NotNull(farm.OverallTotalEgressThresholdInGbps); - Assert.NotNull(farm.OverallTotalIngressThresholdInGbps); - Assert.NotNull(farm.OverallIntranetEgressThresholdInGbps); - Assert.NotNull(farm.RetentionPeriodForDeletedStorageAccountsInDays); - Assert.NotNull(farm.SettingsPollingIntervalInSecond); - Assert.NotNull(farm.SettingsStore); - Assert.NotNull(farm.ToleranceFactorForEgress); - Assert.NotNull(farm.ToleranceFactorForIngress); - Assert.NotNull(farm.ToleranceFactorForIntranetEgress); - Assert.NotNull(farm.ToleranceFactorForIntranetIngress); - Assert.NotNull(farm.ToleranceFactorForTotalEgress); - Assert.NotNull(farm.ToleranceFactorForTotalIngress); - Assert.NotNull(farm.ToleranceFactorForTps); - Assert.NotNull(farm.Type); - Assert.NotNull(farm.UsageCollectionIntervalInSeconds); - } - - [Fact] - public void ListFarms() - { - RunTest((client) => { - var result = client.Farms.List(ResourceGroupName); - Common.WriteIEnumerableToFile(result, "ListAllStorageFarms.txt"); - result.ForEach(ValidateFarm); - }); - } - - [Fact] - public void GetFarm() - { - RunTest((client) => { - var farms = client.Farms.List(ResourceGroupName); - foreach(var farm in farms) - { - var fName = ExtractName(farm.Name); - var result = client.Farms.Get(ResourceGroupName, fName); - AssertAreEqual(farm, result); - break; - } - }); - } - - [Fact] - public void GetAllFarms() - { - RunTest((client) => { - var farms = client.Farms.List(ResourceGroupName); - foreach (var farm in farms) - { - var fName = ExtractName(farm.Name); - var result = client.Farms.Get(ResourceGroupName, fName); - AssertAreEqual(farm, result); - } - }); - } - - [Fact(Skip="This is supposed to be removed from RP.")] - public void CreateFarm() - { - RunTest((client) => { - // This will return an error: - // {"error":{"code":"LocationRequired","message":"The location property is required for this definition."}} - client.Farms.Create(ResourceGroupName, "jeffsFarm"); - }); - } - - [Fact] - public void ListAllFarmMetricDefinitions() - { - RunTest((client) => { - var farms = client.Farms.List(ResourceGroupName); - foreach (var farm in farms) - { - var fName = ExtractName(farm.Name); - var result = client.Farms.ListMetricDefinitions(ResourceGroupName, fName); - Common.WriteIEnumerableToFile(result, "ListAllFarmMetricDefinitions.txt"); - } - }); - } - - [Fact] - public void ListAllFarmMetrics() - { - RunTest((client) => { - var farms = client.Farms.List(ResourceGroupName); - foreach (var farm in farms) - { - var fName = ExtractName(farm.Name); - var result = client.Farms.ListMetrics(ResourceGroupName, fName); - Common.WriteIEnumerableToFile(result, "ListAllFarmMetricDefinitions.txt"); - } - }); - } - - [Fact(Skip="Queue is empty error, need to re-record.")] - public void ForAllFarmsStartGarbageCollection() - { - RunTest((client) => { - var farms = client.Farms.List(ResourceGroupName); - foreach (var farm in farms) - { - var fName = ExtractName(farm.Name); - client.Farms.StartGarbageCollection(ResourceGroupName, fName); - } - }); - } - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/Helpers/StorageTestBase.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/Helpers/StorageTestBase.cs index 0235e11c0b9b..cdc1cc923c43 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/Helpers/StorageTestBase.cs +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/Helpers/StorageTestBase.cs @@ -11,7 +11,6 @@ public StorageTestBase() { } - public string ResourceGroupName = "System.local"; protected override void ValidateClient(StorageAdminClient client) { @@ -19,14 +18,9 @@ protected override void ValidateClient(StorageAdminClient client) Assert.NotNull(client); // validate objects - Assert.NotNull(client.BlobServices); - Assert.NotNull(client.Containers); - Assert.NotNull(client.Farms); - Assert.NotNull(client.QueueServices); Assert.NotNull(client.StorageQuotas); - Assert.NotNull(client.Shares); + Assert.NotNull(client.StorageSettings); Assert.NotNull(client.StorageAccounts); - Assert.NotNull(client.TableServices); } } } diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/QueueServiceTests.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/QueueServiceTests.cs deleted file mode 100644 index 3af6f7172ac5..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/QueueServiceTests.cs +++ /dev/null @@ -1,80 +0,0 @@ -using System.Linq; -using Microsoft.AzureStack.Management.Storage.Admin; -using Microsoft.AzureStack.Management.Storage.Admin.Models; -using Xunit; - -namespace Storage.Tests -{ - public class QueueServicesTests : StorageTestBase - { - - private void ValidateQueueService(QueueService queueService) - { - Assert.NotNull(queueService); - Assert.NotNull(queueService.FrontEndCallbackThreadsCount); - Assert.NotNull(queueService.FrontEndCpuBasedKeepAliveThrottlingCpuMonitorIntervalInSeconds); - Assert.NotNull(queueService.FrontEndCpuBasedKeepAliveThrottlingEnabled); - Assert.NotNull(queueService.FrontEndCpuBasedKeepAliveThrottlingPercentCpuThreshold); - Assert.NotNull(queueService.FrontEndCpuBasedKeepAliveThrottlingPercentRequestsToThrottle); - Assert.NotNull(queueService.FrontEndHttpListenPort); - Assert.NotNull(queueService.FrontEndHttpsListenPort); - Assert.NotNull(queueService.FrontEndMaxMillisecondsBetweenMemorySamples); - Assert.NotNull(queueService.FrontEndMemoryThrottleThresholdSettings); - Assert.NotNull(queueService.FrontEndMemoryThrottlingEnabled); - Assert.NotNull(queueService.FrontEndMinThreadPoolThreads); - Assert.NotNull(queueService.FrontEndThreadPoolBasedKeepAliveIOCompletionThreshold); - Assert.NotNull(queueService.FrontEndThreadPoolBasedKeepAliveMonitorIntervalInSeconds); - Assert.NotNull(queueService.FrontEndThreadPoolBasedKeepAlivePercentage); - Assert.NotNull(queueService.FrontEndThreadPoolBasedKeepAliveWorkerThreadThreshold); - Assert.NotNull(queueService.FrontEndUseSlaTimeInAvailability); - //Assert.NotNull(queueService.HealthStatus); - Assert.NotNull(queueService.Id); - Assert.NotNull(queueService.Location); - Assert.NotNull(queueService.Name); - Assert.NotNull(queueService.Type); - Assert.NotNull(queueService.Version); - } - - [Fact] - public void GetQueueService() - { - RunTest((client) => { - var farms = client.Farms.List(ResourceGroupName); - foreach(var farm in farms) - { - var fName = ExtractName(farm.Name); - var retrieved = client.QueueServices.Get(ResourceGroupName, fName); - ValidateQueueService(retrieved); - } - }); - } - - [Fact] - public void ListAllQueueServiceMetricDefinitions() - { - RunTest((client) => { - var farms = client.Farms.List(ResourceGroupName); - foreach (var farm in farms) - { - var fName = ExtractName(farm.Name); - var result = client.QueueServices.ListMetricDefinitions(ResourceGroupName,fName); - Common.WriteIEnumerableToFile(result, "ListAllQueueServiceMetricDefinitions.txt"); - } - }); - } - - [Fact] - public void ListAllQueueServiceMetrics() - { - RunTest((client) => { - var farms = client.Farms.List(ResourceGroupName); - foreach (var farm in farms) - { - var fName = ExtractName(farm.Name); - var result = client.QueueServices.ListMetrics(ResourceGroupName, fName); - Common.WriteIEnumerableToFile(result, "ListAllQueueServiceMetrics.txt"); - } - }); - } - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/SettingsTests.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/SettingsTests.cs new file mode 100644 index 000000000000..8e6e1a5aa23a --- /dev/null +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/SettingsTests.cs @@ -0,0 +1,31 @@ +using System.Linq; +using Microsoft.AzureStack.Management.Storage.Admin; +using Microsoft.AzureStack.Management.Storage.Admin.Models; +using Xunit; + +namespace Storage.Tests +{ + public class FarmsTests : StorageTestBase + { + [Fact] + public void GetSettings() + { + RunTest((client) => { + var storageSettings = client.StorageSettings.Get(Location); + Assert.NotNull(storageSettings.RetentionPeriodForDeletedStorageAccountsInDays); + }); + } + + [Fact] + public void UpdateSettings() + { + RunTest((client) => { + int? originalStorageSettings = client.StorageSettings.Get(Location).RetentionPeriodForDeletedStorageAccountsInDays; + int targetStorageSettings = originalStorageSettings.GetValueOrDefault() + 1; + Settings storageSettings = client.StorageSettings.Update(Location, targetStorageSettings); + Assert.Equal(targetStorageSettings, storageSettings.RetentionPeriodForDeletedStorageAccountsInDays.Value); + }); + } + + } +} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/SharesTests.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/SharesTests.cs deleted file mode 100644 index e8524e6aff1d..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/SharesTests.cs +++ /dev/null @@ -1,141 +0,0 @@ -using System.Linq; -using Microsoft.AzureStack.Management.Storage.Admin; -using Microsoft.AzureStack.Management.Storage.Admin.Models; -using Xunit; - -namespace Storage.Tests -{ - public class SharesTests : StorageTestBase - { - private void AssertAreEqual(Share expected, Share found) { - if (expected == null) - { - Assert.NotNull(found); - } - else - { - ValidateShare(found); - Assert.Equal(expected.FreeCapacity, found.FreeCapacity); - Assert.Equal(expected.HealthStatus, found.HealthStatus); - Assert.Equal(expected.Id, found.Id); - Assert.Equal(expected.Location, found.Location); - Assert.Equal(expected.Name, found.Name); - Assert.Equal(expected.ShareName, found.ShareName); - if (expected.Tags != null) - { - Assert.NotNull(found.Tags); - foreach (var expectedTag in expected.Tags) - { - Assert.True(found.Tags.ContainsKey(expectedTag.Key)); - } - } else - { - Assert.Null(found.Tags); - } - Assert.Equal(expected.TotalCapacity, found.TotalCapacity); - Assert.Equal(expected.Type, found.Type); - Assert.Equal(expected.UncPath, found.UncPath); - Assert.Equal(expected.UsedCapacity, found.UsedCapacity); - } - } - - private void ValidateShare(Share share) { - Assert.NotNull(share); - Assert.NotNull(share.FreeCapacity); - Assert.NotNull(share.HealthStatus); - Assert.NotNull(share.Id); - Assert.NotNull(share.Location); - Assert.NotNull(share.Name); - Assert.NotNull(share.ShareName); - Assert.NotNull(share.TotalCapacity); - Assert.NotNull(share.Type); - Assert.NotNull(share.UncPath); - Assert.NotNull(share.UsedCapacity); - } - - [Fact] - public void GetShare() { - RunTest((client) => { - var farms = client.Farms.List(ResourceGroupName); - foreach (var farm in farms) - { - var fName = ExtractName(farm.Name); - var shares = client.Shares.List(ResourceGroupName, fName); - foreach (var share in shares) - { - var sName = ExtractName(share.Name); - var result = client.Shares.Get(ResourceGroupName, fName, sName); - AssertAreEqual(share, result); - return; - } - } - }); - } - - [Fact] - public void GetAllShares() { - RunTest((client) => { - var farms = client.Farms.List(ResourceGroupName); - foreach (var farm in farms) - { - var fName = ExtractName(farm.Name); - var shares = client.Shares.List(ResourceGroupName, fName); - foreach (var share in shares) - { - var sName = ExtractName(share.Name); - var result = client.Shares.Get(ResourceGroupName, fName, sName); - AssertAreEqual(share, result); - } - } - }); - } - - [Fact] - public void ListShares() { - RunTest((client) => { - var farms = client.Farms.List(ResourceGroupName); - foreach (var farm in farms) - { - var fName = ExtractName(farm.Name); - var shares = client.Shares.List(ResourceGroupName, fName); - shares.ForEach(ValidateShare); - } - }); - } - - [Fact] - public void ListAllShareMetricDefinitions() { - RunTest((client) => { - var farms = client.Farms.List(ResourceGroupName); - foreach (var farm in farms) - { - var fName = ExtractName(farm.Name); - var shares = client.Shares.List(ResourceGroupName, fName); - foreach (var share in shares) - { - var sName = ExtractName(share.Name); - var metricDefinitions = client.Shares.ListMetricDefinitions(ResourceGroupName, fName, sName); - } - } - }); - } - - - [Fact] - public void ListAllShareMetrics() { - RunTest((client) => { - var farms = client.Farms.List(ResourceGroupName); - foreach (var farm in farms) - { - var fName = ExtractName(farm.Name); - var shares = client.Shares.List(ResourceGroupName, fName); - foreach (var share in shares) - { - var sName = ExtractName(share.Name); - var metrics = client.Shares.ListMetrics(ResourceGroupName, fName, sName); - } - } - }); - } - } -} diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/StorageAccountsTests.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/StorageAccountsTests.cs index 880ec7c3a913..ac2fc7e6077c 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/StorageAccountsTests.cs +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/StorageAccountsTests.cs @@ -3,6 +3,7 @@ using Microsoft.AzureStack.Management.Storage.Admin.Models; using Xunit; using System; +using System.Collections.Generic; namespace Storage.Tests { @@ -19,10 +20,6 @@ private void AssertAreEqual(StorageAccount expected, StorageAccount found) { Assert.Equal(expected.AccountId, found.AccountId); Assert.Equal(expected.AccountStatus, found.AccountStatus); Assert.Equal(expected.AccountType, found.AccountType); - Assert.Equal(expected.AcquisitionOperationCount, found.AcquisitionOperationCount); - Assert.Equal(expected.AlternateName, found.AlternateName); - Assert.Equal(expected.CurrentOperation, found.CurrentOperation); - Assert.Equal(expected.CustomDomain, found.CustomDomain); } } @@ -31,10 +28,8 @@ private void ValidateStorageAccount(StorageAccount account) { // Assert.NotNull(account.AccountId); Assert.NotNull(account.AccountStatus); Assert.NotNull(account.AccountType); - Assert.NotNull(account.AcquisitionOperationCount); //Assert.NotNull(account.AlternateName); Assert.NotNull(account.CreationTime); - Assert.NotNull(account.CurrentOperation); //Assert.NotNull(account.CustomDomain); //Assert.NotNull(account.DeletedTime); Assert.NotNull(account.Id); @@ -59,31 +54,21 @@ private void ValidateStorageAccount(StorageAccount account) { [Fact] public void ListAllStorageAccounts() { RunTest((client) => { - var farms = client.Farms.List(ResourceGroupName); - foreach (var farm in farms) - { - var fName = ExtractName(farm.Name); - var storageAccounts = client.StorageAccounts.List(ResourceGroupName, fName, false); - storageAccounts.ForEach(ValidateStorageAccount); - } + var storageAccounts = client.StorageAccounts.List(Location, summary: false); + storageAccounts.ForEach(ValidateStorageAccount); }); } [Fact] public void GetStorageAccount() { RunTest((client) => { - var farms = client.Farms.List(ResourceGroupName); - foreach (var farm in farms) + var storageAccounts = client.StorageAccounts.List(Location, summary: false); + foreach (var storageAccount in storageAccounts) { - var fName = ExtractName(farm.Name); - var storageAccounts = client.StorageAccounts.List(ResourceGroupName, fName, false); - foreach (var storageAccount in storageAccounts) - { - var sName = ExtractName(storageAccount.Name); - var account = client.StorageAccounts.Get(ResourceGroupName, fName, sName); - AssertAreEqual(storageAccount, account); - return; - } + var sName = ExtractName(storageAccount.Name); + var account = client.StorageAccounts.Get(Location, sName); + AssertAreEqual(storageAccount, account); + return; } }); } @@ -91,27 +76,36 @@ public void GetStorageAccount() { [Fact] public void GetAllStorageAccounts() { RunTest((client) => { - var farms = client.Farms.List(ResourceGroupName); - foreach (var farm in farms) + List storageAccountList = new List(); + var storageAccounts = client.StorageAccounts.List(Location, summary: false); + storageAccountList.AddRange(storageAccounts); + while(storageAccounts.NextPageLink != null) + { + storageAccounts = client.StorageAccounts.ListNext(storageAccounts.NextPageLink); + storageAccountList.AddRange(storageAccounts); + } + + foreach (var storageAccount in storageAccountList) { - var fName = ExtractName(farm.Name); - var storageAccounts = client.StorageAccounts.List(ResourceGroupName, fName, false); - foreach (var storageAccount in storageAccounts) - { - var sName = ExtractName(storageAccount.Name); - var account = client.StorageAccounts.Get(ResourceGroupName, fName, sName); - AssertAreEqual(storageAccount, account); - } + var sName = ExtractName(storageAccount.Name); + var account = client.StorageAccounts.Get(Location, sName); + AssertAreEqual(storageAccount, account); } }); } - [Fact(Skip = "Don't know how I would test this for now.")] public void UnDeleteStorageAccount() { RunTest((client) => { // TODO }); } + + [Fact(Skip = "Don't know how I would test this for now.")] + public void OndemandGCAccounts() { + RunTest((client) => { + // TODO + }); + } } } diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/StorageQuotasTests.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/StorageQuotasTests.cs index 8cd9939f929d..7ebf550b5770 100644 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/StorageQuotasTests.cs +++ b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/StorageQuotasTests.cs @@ -28,22 +28,21 @@ private void ValidateQuota(StorageQuota quota) { Assert.NotNull(quota.Location); Assert.NotNull(quota.Name); Assert.NotNull(quota.Type); - //Assert.NotNull(quota.Tags); } [Fact] public void ListAllStorageQuotas() { RunTest((client) => { var quotas = client.StorageQuotas.List(Location); - quotas.ForEach(ValidateQuota); - Common.WriteIEnumerableToFile(quotas, "ListAllStorageQuotas.txt"); + quotas.Value.ForEach(ValidateQuota); + Common.WriteIEnumerableToFile(quotas.Value, "ListAllStorageQuotas.txt"); }); } [Fact] public void GetStorageQuota() { RunTest((client) => { - var quota = client.StorageQuotas.List(Location).First(); + var quota = client.StorageQuotas.List(Location).Value.First(); var qName = ExtractName(quota.Name); var result = client.StorageQuotas.Get(Location, qName); AssertAreEqual(quota, result); @@ -54,7 +53,7 @@ public void GetStorageQuota() { public void GetAllStorageQuotas() { RunTest((client) => { var quotas = client.StorageQuotas.List(Location); - foreach(var quota in quotas) + foreach(var quota in quotas.Value) { var qName = ExtractName(quota.Name); var result= client.StorageQuotas.Get(Location, qName); @@ -68,11 +67,10 @@ public void CreateQuota() { RunTest((client) => { var name = "TestCreateQuota"; IgnoreExceptions(() => client.StorageQuotas.Delete(Location, name)); - var parameters = new StorageQuota() { - CapacityInGb = -100000000, - NumberOfStorageAccounts = -1000000000 + CapacityInGb = 100000000, + NumberOfStorageAccounts = 1000000000 }; var retrieved = client.StorageQuotas.CreateOrUpdate(Location, name, parameters); diff --git a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/TableServicesTests.cs b/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/TableServicesTests.cs deleted file mode 100644 index cf819dc69cfb..000000000000 --- a/sdk/azurestack/Microsoft.AzureStack.Management.Storage.Admin/tests/src/TableServicesTests.cs +++ /dev/null @@ -1,78 +0,0 @@ -using System.Linq; -using Microsoft.AzureStack.Management.Storage.Admin; -using Microsoft.AzureStack.Management.Storage.Admin.Models; -using Xunit; - -namespace Storage.Tests -{ - public class TableServicesTests : StorageTestBase - { - - private void ValidateTableService(TableService tableService) - { - Assert.NotNull(tableService); - Assert.NotNull(tableService.FrontEndCallbackThreadsCount); - Assert.NotNull(tableService.FrontEndCpuBasedKeepAliveThrottlingCpuMonitorIntervalInSeconds); - Assert.NotNull(tableService.FrontEndCpuBasedKeepAliveThrottlingEnabled); - Assert.NotNull(tableService.FrontEndCpuBasedKeepAliveThrottlingPercentCpuThreshold); - Assert.NotNull(tableService.FrontEndCpuBasedKeepAliveThrottlingPercentRequestsToThrottle); - Assert.NotNull(tableService.FrontEndHttpListenPort); - Assert.NotNull(tableService.FrontEndHttpsListenPort); - Assert.NotNull(tableService.FrontEndMaxMillisecondsBetweenMemorySamples); - Assert.NotNull(tableService.FrontEndMemoryThrottleThresholdSettings); - Assert.NotNull(tableService.FrontEndMemoryThrottlingEnabled); - Assert.NotNull(tableService.FrontEndMinThreadPoolThreads); - Assert.NotNull(tableService.FrontEndThreadPoolBasedKeepAliveIOCompletionThreshold); - Assert.NotNull(tableService.FrontEndThreadPoolBasedKeepAliveMonitorIntervalInSeconds); - Assert.NotNull(tableService.FrontEndThreadPoolBasedKeepAlivePercentage); - Assert.NotNull(tableService.FrontEndThreadPoolBasedKeepAliveWorkerThreadThreshold); - Assert.NotNull(tableService.FrontEndUseSlaTimeInAvailability); - Assert.NotNull(tableService.Location); - Assert.NotNull(tableService.Name); - Assert.NotNull(tableService.Type); - Assert.NotNull(tableService.Version); - } - - [Fact] - public void GetTableService() - { - RunTest((client) => { - var farms = client.Farms.List(ResourceGroupName); - foreach (var farm in farms) - { - var fName = ExtractName(farm.Name); - var retrieved = client.TableServices.Get(ResourceGroupName, fName); - ValidateTableService(retrieved); - } - }); - } - - [Fact] - public void ListAllTableServiceMetricDefinitions() - { - RunTest((client) => { - var farms = client.Farms.List(ResourceGroupName); - foreach (var farm in farms) - { - var fName = ExtractName(farm.Name); - var result = client.TableServices.ListMetricDefinitions(ResourceGroupName, fName); - Common.WriteIEnumerableToFile(result, "ListAllTableServiceMetricDefinitions.txt"); - } - }); - } - - [Fact] - public void ListAllTableServiceMetrics() - { - RunTest((client) => { - var farms = client.Farms.List(ResourceGroupName); - foreach (var farm in farms) - { - var fName = ExtractName(farm.Name); - var result = client.TableServices.ListMetrics(ResourceGroupName, fName); - Common.WriteIEnumerableToFile(result, "ListAllTableServiceMetrics.txt"); - } - }); - } - } -}