From 4745c560c2323000dc5ec62eaf51eeb3c5a78b7e Mon Sep 17 00:00:00 2001 From: Ching Chen Date: Mon, 6 Mar 2017 21:59:22 -0800 Subject: [PATCH 1/7] Add ServiceFabric SDK --- .../Generated/Clusters.cs | 977 ++++++++++++++++++ .../Generated/ClustersExtensions.cs | 252 +++++ .../Generated/IClusters.cs | 114 ++ .../Generated/IServiceFabricClient.cs | 58 ++ .../Models/CertificateDescription.cs | 53 + .../Models/ClientCertificateCommonName.cs | 47 + .../Models/ClientCertificateThumbprint.cs | 47 + .../Generated/Models/Cluster.cs | 162 +++ .../Generated/Models/ClusterListResult.cs | 45 + .../Models/ClusterUpdateParameters.cs | 168 +++ .../Generated/Models/ClusterVersionDetails.cs | 51 + .../Models/DiagnosticsStorageAccountConfig.cs | 76 ++ .../Models/EndpointRangeDescription.cs | 44 + .../Generated/Models/ErrorModel.cs | 39 + .../Generated/Models/ErrorModelError.cs | 44 + .../Generated/Models/ErrorModelException.cs | 95 ++ .../Generated/Models/NodeTypeDescription.cs | 100 ++ .../PaasApplicationDeltaHealthPolicy.cs | 46 + .../Models/PaasApplicationHealthPolicy.cs | 46 + .../PaasClusterUpgradeDeltaHealthPolicy.cs | 58 ++ .../Models/PaasClusterUpgradeHealthPolicy.cs | 52 + .../Models/PaasClusterUpgradePolicy.cs | 92 ++ .../PaasServiceTypeDeltaHealthPolicy.cs | 40 + .../Models/PaasServiceTypeHealthPolicy.cs | 40 + .../Generated/Models/Resource.cs | 77 ++ .../Models/SettingsParameterDescription.cs | 48 + .../Models/SettingsSectionDescription.cs | 45 + .../Generated/ServiceFabricClient.cs | 274 +++++ ...osoft.Azure.Management.ServiceFabric.xproj | 21 + .../Properties/AssemblyInfo.cs | 29 + .../generate.cmd | 17 + .../project.json | 61 ++ .../ServiceFabric.Tests.xproj | 21 + .../TestCreate.json | 306 ++++++ .../TestDelete.json | 336 ++++++ .../TestGet.json | 226 ++++ .../TestList.json | 74 ++ .../TestListByResourceGroup.json | 177 ++++ .../TestUpdate.json | 300 ++++++ .../TestHelper/RecordedDelegatingHandler.cs | 91 ++ .../Tests/ServiceFabricTestBase.cs | 131 +++ .../Tests/TestCreateClusterResource.cs | 48 + .../Tests/TestDeleteClusterResource.cs | 48 + .../Tests/TestGetClusterResource.cs | 53 + .../Tests/TestListClusterResource.cs | 62 ++ .../Tests/TestUpdateClusterResource.cs | 76 ++ .../ServiceFabric.Test/project.json | 41 + .../ServiceFabric/ServiceFabric.sln | 34 + 48 files changed, 5342 insertions(+) create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Clusters.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClustersExtensions.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IClusters.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IServiceFabricClient.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/CertificateDescription.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClientCertificateCommonName.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClientCertificateThumbprint.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Cluster.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterListResult.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpdateParameters.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterVersionDetails.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/DiagnosticsStorageAccountConfig.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/EndpointRangeDescription.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModel.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModelError.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModelException.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/NodeTypeDescription.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasApplicationDeltaHealthPolicy.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasApplicationHealthPolicy.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasClusterUpgradeDeltaHealthPolicy.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasClusterUpgradeHealthPolicy.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasClusterUpgradePolicy.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasServiceTypeDeltaHealthPolicy.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasServiceTypeHealthPolicy.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Resource.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsParameterDescription.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsSectionDescription.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ServiceFabricClient.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Microsoft.Azure.Management.ServiceFabric.xproj create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Properties/AssemblyInfo.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/generate.cmd create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/project.json create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.Test/ServiceFabric.Tests.xproj create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestCreateClusterResource/TestCreate.json create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestDeleteClusterResource/TestDelete.json create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestGetClusterResource/TestGet.json create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestList.json create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestListByResourceGroup.json create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestUpdateClusterResource/TestUpdate.json create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.Test/TestHelper/RecordedDelegatingHandler.cs create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/ServiceFabricTestBase.cs create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestCreateClusterResource.cs create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestDeleteClusterResource.cs create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestGetClusterResource.cs create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestListClusterResource.cs create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestUpdateClusterResource.cs create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.Test/project.json create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.sln diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Clusters.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Clusters.cs new file mode 100644 index 000000000000..1005308686c6 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Clusters.cs @@ -0,0 +1,977 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric +{ + using System; + using System.Linq; + using System.Collections.Generic; + using System.Net; + using System.Net.Http; + using System.Net.Http.Headers; + using System.Text; + using System.Text.RegularExpressions; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using Models; + + /// + /// Clusters operations. + /// + public partial class Clusters : IServiceOperations, IClusters + { + /// + /// Initializes a new instance of the Clusters class. + /// + /// + /// Reference to the service client. + /// + public Clusters(ServiceFabricClient client) + { + if (client == null) + { + throw new ArgumentNullException("client"); + } + this.Client = client; + } + + /// + /// Gets a reference to the ServiceFabricClient + /// + public ServiceFabricClient Client { get; private set; } + + /// + /// Update cluster config + /// + /// + /// The name of the Resource Group to which the server belongs. + /// + /// + /// The name of the cluster + /// + /// + /// Patch Request + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, ClusterUpdateParameters clusterUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (clusterUpdateParameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterUpdateParameters"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("clusterUpdateParameters", clusterUpdateParameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabric/clusters/{clusterName}").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + 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(clusterUpdateParameters != null) + { + _requestContent = SafeJsonConvert.SerializeObject(clusterUpdateParameters, this.Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); + _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.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 ErrorModelException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorModel _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.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 HttpOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.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 cluster resource + /// + /// + /// The name of the Resource Group to which the server belongs. + /// + /// + /// The name of the cluster + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabric/clusters/{clusterName}").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + 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 (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.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 ErrorModelException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorModel _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.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 HttpOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.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; + } + + /// + /// Create cluster resource + /// + /// + /// The name of the Resource Group to which the server belongs. + /// + /// + /// The name of the cluster + /// + /// + /// Put Request + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> CreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, Cluster clusterUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (clusterUpdateParameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterUpdateParameters"); + } + if (clusterUpdateParameters != null) + { + clusterUpdateParameters.Validate(); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("clusterUpdateParameters", clusterUpdateParameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Create", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabric/clusters/{clusterName}").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + 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(clusterUpdateParameters != null) + { + _requestContent = SafeJsonConvert.SerializeObject(clusterUpdateParameters, this.Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); + _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.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 ErrorModelException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorModel _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.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 HttpOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.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; + } + + /// + /// Delete cluster resource + /// + /// + /// The name of the Resource Group to which the server belongs. + /// + /// + /// The name of the cluster + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabric/clusters/{clusterName}").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + 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 (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.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 != 204) + { + var ex = new ErrorModelException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorModel _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.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 HttpOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// List cluster resource by resource group + /// + /// + /// The name of the Resource Group to which the server belongs. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.ServiceFabric/clusters").ToString(); + _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + 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 (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.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 HttpOperationException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + 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 HttpOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.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; + } + + /// + /// List cluster resource + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (this.Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = this.Client.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.ServiceFabric/clusters").ToString(); + _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); + List _queryParameters = new List(); + if (this.Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + 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 (this.Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.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 HttpOperationException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + 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 HttpOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.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/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClustersExtensions.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClustersExtensions.cs new file mode 100644 index 000000000000..419d705f09e8 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClustersExtensions.cs @@ -0,0 +1,252 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric +{ + using System; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using Models; + + /// + /// Extension methods for Clusters. + /// + public static partial class ClustersExtensions + { + /// + /// Update cluster config + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the Resource Group to which the server belongs. + /// + /// + /// The name of the cluster + /// + /// + /// Patch Request + /// + public static Cluster Update(this IClusters operations, string resourceGroupName, string clusterName, ClusterUpdateParameters clusterUpdateParameters) + { + return Task.Factory.StartNew(s => ((IClusters)s).UpdateAsync(resourceGroupName, clusterName, clusterUpdateParameters), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Update cluster config + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the Resource Group to which the server belongs. + /// + /// + /// The name of the cluster + /// + /// + /// Patch Request + /// + /// + /// The cancellation token. + /// + public static async Task UpdateAsync(this IClusters operations, string resourceGroupName, string clusterName, ClusterUpdateParameters clusterUpdateParameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, clusterName, clusterUpdateParameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Get cluster resource + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the Resource Group to which the server belongs. + /// + /// + /// The name of the cluster + /// + public static Cluster Get(this IClusters operations, string resourceGroupName, string clusterName) + { + return Task.Factory.StartNew(s => ((IClusters)s).GetAsync(resourceGroupName, clusterName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Get cluster resource + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the Resource Group to which the server belongs. + /// + /// + /// The name of the cluster + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IClusters operations, string resourceGroupName, string clusterName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Create cluster resource + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the Resource Group to which the server belongs. + /// + /// + /// The name of the cluster + /// + /// + /// Put Request + /// + public static Cluster Create(this IClusters operations, string resourceGroupName, string clusterName, Cluster clusterUpdateParameters) + { + return Task.Factory.StartNew(s => ((IClusters)s).CreateAsync(resourceGroupName, clusterName, clusterUpdateParameters), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Create cluster resource + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the Resource Group to which the server belongs. + /// + /// + /// The name of the cluster + /// + /// + /// Put Request + /// + /// + /// The cancellation token. + /// + public static async Task CreateAsync(this IClusters operations, string resourceGroupName, string clusterName, Cluster clusterUpdateParameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateWithHttpMessagesAsync(resourceGroupName, clusterName, clusterUpdateParameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Delete cluster resource + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the Resource Group to which the server belongs. + /// + /// + /// The name of the cluster + /// + public static void Delete(this IClusters operations, string resourceGroupName, string clusterName) + { + Task.Factory.StartNew(s => ((IClusters)s).DeleteAsync(resourceGroupName, clusterName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Delete cluster resource + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the Resource Group to which the server belongs. + /// + /// + /// The name of the cluster + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this IClusters operations, string resourceGroupName, string clusterName, CancellationToken cancellationToken = default(CancellationToken)) + { + await operations.DeleteWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false); + } + + /// + /// List cluster resource by resource group + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the Resource Group to which the server belongs. + /// + public static ClusterListResult ListByResourceGroup(this IClusters operations, string resourceGroupName) + { + return Task.Factory.StartNew(s => ((IClusters)s).ListByResourceGroupAsync(resourceGroupName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// List cluster resource by resource group + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the Resource Group to which the server belongs. + /// + /// + /// The cancellation token. + /// + public static async Task ListByResourceGroupAsync(this IClusters operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List cluster resource + /// + /// + /// The operations group for this extension method. + /// + public static ClusterListResult List(this IClusters operations) + { + return Task.Factory.StartNew(s => ((IClusters)s).ListAsync(), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// List cluster resource + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task ListAsync(this IClusters operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IClusters.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IClusters.cs new file mode 100644 index 000000000000..8e9f90cb65e0 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IClusters.cs @@ -0,0 +1,114 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric +{ + using System; + using System.Collections.Generic; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using Models; + + /// + /// Clusters operations. + /// + public partial interface IClusters + { + /// + /// Update cluster config + /// + /// + /// The name of the Resource Group to which the server belongs. + /// + /// + /// The name of the cluster + /// + /// + /// Patch Request + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, ClusterUpdateParameters clusterUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Get cluster resource + /// + /// + /// The name of the Resource Group to which the server belongs. + /// + /// + /// The name of the cluster + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Create cluster resource + /// + /// + /// The name of the Resource Group to which the server belongs. + /// + /// + /// The name of the cluster + /// + /// + /// Put Request + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> CreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, Cluster clusterUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Delete cluster resource + /// + /// + /// The name of the Resource Group to which the server belongs. + /// + /// + /// The name of the cluster + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List cluster resource by resource group + /// + /// + /// The name of the Resource Group to which the server belongs. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List cluster resource + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IServiceFabricClient.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IServiceFabricClient.cs new file mode 100644 index 000000000000..ececad7d3593 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IServiceFabricClient.cs @@ -0,0 +1,58 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric +{ + using System; + using System.Collections.Generic; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + using Newtonsoft.Json; + using Microsoft.Rest; + using Models; + + /// + /// + public partial interface IServiceFabricClient : IDisposable + { + /// + /// The base URI of the service. + /// + Uri BaseUri { get; set; } + + /// + /// Gets or sets json serialization settings. + /// + JsonSerializerSettings SerializationSettings { get; } + + /// + /// Gets or sets json deserialization settings. + /// + JsonSerializerSettings DeserializationSettings { get; } + + /// + /// The subscription identifier + /// + string SubscriptionId { get; set; } + + /// + /// The version of the api + /// + string ApiVersion { get; set; } + + /// + /// Subscription credentials which uniquely identify client + /// subscription. + /// + ServiceClientCredentials Credentials { get; } + + + /// + /// Gets the IClusters. + /// + IClusters Clusters { get; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/CertificateDescription.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/CertificateDescription.cs new file mode 100644 index 000000000000..9a0db4b69455 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/CertificateDescription.cs @@ -0,0 +1,53 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + + /// + /// Certificate description + /// + public partial class CertificateDescription + { + /// + /// Initializes a new instance of the CertificateDescription class. + /// + public CertificateDescription() { } + + /// + /// Initializes a new instance of the CertificateDescription class. + /// + public CertificateDescription(string thumbprint = default(string), string thumbprintSecondary = default(string), string x509StoreName = default(string)) + { + Thumbprint = thumbprint; + ThumbprintSecondary = thumbprintSecondary; + X509StoreName = x509StoreName; + } + + /// + /// + [JsonProperty(PropertyName = "thumbprint")] + public string Thumbprint { get; set; } + + /// + /// + [JsonProperty(PropertyName = "thumbprintSecondary")] + public string ThumbprintSecondary { get; set; } + + /// + /// Possible values include: 'AddressBook', 'AuthRoot', + /// 'CertificateAuthority', 'Disallowed', 'My', 'Root', + /// 'TrustedPeople', 'TrustedPublisher' + /// + [JsonProperty(PropertyName = "x509StoreName")] + public string X509StoreName { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClientCertificateCommonName.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClientCertificateCommonName.cs new file mode 100644 index 000000000000..0513f10f633f --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClientCertificateCommonName.cs @@ -0,0 +1,47 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + + /// + /// NodeType description + /// + public partial class ClientCertificateCommonName + { + /// + /// Initializes a new instance of the ClientCertificateCommonName + /// class. + /// + public ClientCertificateCommonName() { } + + /// + /// Initializes a new instance of the ClientCertificateCommonName + /// class. + /// + public ClientCertificateCommonName(bool? isAdmin = default(bool?), string certificateIssuerThumbprint = default(string)) + { + IsAdmin = isAdmin; + CertificateIssuerThumbprint = certificateIssuerThumbprint; + } + + /// + /// Is admin or not + /// + [JsonProperty(PropertyName = "isAdmin")] + public bool? IsAdmin { get; set; } + + /// + /// + [JsonProperty(PropertyName = "certificateIssuerThumbprint")] + public string CertificateIssuerThumbprint { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClientCertificateThumbprint.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClientCertificateThumbprint.cs new file mode 100644 index 000000000000..138e352b0cc5 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClientCertificateThumbprint.cs @@ -0,0 +1,47 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + + /// + /// NodeType description + /// + public partial class ClientCertificateThumbprint + { + /// + /// Initializes a new instance of the ClientCertificateThumbprint + /// class. + /// + public ClientCertificateThumbprint() { } + + /// + /// Initializes a new instance of the ClientCertificateThumbprint + /// class. + /// + public ClientCertificateThumbprint(bool? isAdmin = default(bool?), string certificateThumbprint = default(string)) + { + IsAdmin = isAdmin; + CertificateThumbprint = certificateThumbprint; + } + + /// + /// Is admin or not + /// + [JsonProperty(PropertyName = "isAdmin")] + public bool? IsAdmin { get; set; } + + /// + /// + [JsonProperty(PropertyName = "certificateThumbprint")] + public string CertificateThumbprint { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Cluster.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Cluster.cs new file mode 100644 index 000000000000..7d8f4b266fc8 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Cluster.cs @@ -0,0 +1,162 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + + /// + /// The cluster resource + /// + [JsonTransformation] + public partial class Cluster : Resource + { + /// + /// Initializes a new instance of the Cluster class. + /// + public Cluster() { } + + /// + /// Initializes a new instance of the Cluster class. + /// + public Cluster(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), IList availableClusterVersions = default(IList), string clusterId = default(string), string clusterState = default(string), string clusterEndpoint = default(string), string clusterCodeVersion = default(string), CertificateDescription certificate = default(CertificateDescription), string reliabilityLevel = default(string), string upgradeMode = default(string), IList clientCertificateThumbprints = default(IList), IList clientCertificateCommonNames = default(IList), IList fabricSettings = default(IList), CertificateDescription reverseProxyCertificate = default(CertificateDescription), string managementEndpoint = default(string), IList nodeTypes = default(IList), string provisioningState = default(string), string vmImage = default(string), DiagnosticsStorageAccountConfig diagnosticsStorageAccountConfig = default(DiagnosticsStorageAccountConfig), PaasClusterUpgradePolicy upgradeDescription = default(PaasClusterUpgradePolicy)) + : base(location, id, name, type, tags) + { + AvailableClusterVersions = availableClusterVersions; + ClusterId = clusterId; + ClusterState = clusterState; + ClusterEndpoint = clusterEndpoint; + ClusterCodeVersion = clusterCodeVersion; + Certificate = certificate; + ReliabilityLevel = reliabilityLevel; + UpgradeMode = upgradeMode; + ClientCertificateThumbprints = clientCertificateThumbprints; + ClientCertificateCommonNames = clientCertificateCommonNames; + FabricSettings = fabricSettings; + ReverseProxyCertificate = reverseProxyCertificate; + ManagementEndpoint = managementEndpoint; + NodeTypes = nodeTypes; + ProvisioningState = provisioningState; + VmImage = vmImage; + DiagnosticsStorageAccountConfig = diagnosticsStorageAccountConfig; + UpgradeDescription = upgradeDescription; + } + + /// + /// + [JsonProperty(PropertyName = "properties.availableClusterVersions")] + public IList AvailableClusterVersions { get; private set; } + + /// + /// + [JsonProperty(PropertyName = "properties.clusterId")] + public string ClusterId { get; set; } + + /// + /// Possible values include: 'Default', 'WaitingForNodes', + /// 'Deploying', 'BaselineUpgrade', 'UpdatingUserConfiguration', + /// 'UpdatingUserCertificate', 'UpdatingInfrastructure', + /// 'EnforcingClusterVersion', 'UpgradeServiceUnreachable', + /// 'Deleting', 'ScaleUp', 'ScaleDown', 'AutoScale', 'Ready', 'Failed' + /// + [JsonProperty(PropertyName = "properties.clusterState")] + public string ClusterState { get; private set; } + + /// + /// + [JsonProperty(PropertyName = "properties.clusterEndpoint")] + public string ClusterEndpoint { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties.clusterCodeVersion")] + public string ClusterCodeVersion { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties.certificate")] + public CertificateDescription Certificate { get; set; } + + /// + /// Possible values include: 'Invalid', 'Bronze', 'Silver', 'Gold', + /// 'Platinum' + /// + [JsonProperty(PropertyName = "properties.reliabilityLevel")] + public string ReliabilityLevel { get; set; } + + /// + /// Possible values include: 'Default', 'Automatic', 'Manual' + /// + [JsonProperty(PropertyName = "properties.upgradeMode")] + public string UpgradeMode { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties.clientCertificateThumbprints")] + public IList ClientCertificateThumbprints { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties.clientCertificateCommonNames")] + public IList ClientCertificateCommonNames { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties.fabricSettings")] + public IList FabricSettings { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties.reverseProxyCertificate")] + public CertificateDescription ReverseProxyCertificate { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties.managementEndpoint")] + public string ManagementEndpoint { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties.nodeTypes")] + public IList NodeTypes { get; set; } + + /// + /// Possible values include: 'Default', 'WaitingForNodes', + /// 'Deploying', 'BaselineUpgrade', 'UpdatingUserConfiguration', + /// 'UpdatingUserCertificate', 'UpdatingInfrastructure', + /// 'EnforcingClusterVersion', 'UpgradeServiceUnreachable', + /// 'Deleting', 'ScaleUp', 'ScaleDown', 'AutoScale', 'Ready', 'Failed' + /// + [JsonProperty(PropertyName = "properties.provisioningState")] + public string ProvisioningState { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties.vmImage")] + public string VmImage { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties.diagnosticsStorageAccountConfig")] + public DiagnosticsStorageAccountConfig DiagnosticsStorageAccountConfig { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties.upgradeDescription")] + public PaasClusterUpgradePolicy UpgradeDescription { get; set; } + + /// + /// Validate the object. Throws ValidationException if validation fails. + /// + public override void Validate() + { + base.Validate(); + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterListResult.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterListResult.cs new file mode 100644 index 000000000000..5e9c22b0ad18 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterListResult.cs @@ -0,0 +1,45 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + + /// + /// Cluster list results + /// + public partial class ClusterListResult + { + /// + /// Initializes a new instance of the ClusterListResult class. + /// + public ClusterListResult() { } + + /// + /// Initializes a new instance of the ClusterListResult class. + /// + public ClusterListResult(IList value = default(IList), string nextLink = default(string)) + { + Value = value; + NextLink = nextLink; + } + + /// + /// + [JsonProperty(PropertyName = "value")] + public IList Value { get; set; } + + /// + /// The URL to use for getting the next set of results. + /// + [JsonProperty(PropertyName = "nextLink")] + public string NextLink { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpdateParameters.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpdateParameters.cs new file mode 100644 index 000000000000..659491416730 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpdateParameters.cs @@ -0,0 +1,168 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + + /// + /// Cluster update request + /// + [JsonTransformation] + public partial class ClusterUpdateParameters + { + /// + /// Initializes a new instance of the ClusterUpdateParameters class. + /// + public ClusterUpdateParameters() { } + + /// + /// Initializes a new instance of the ClusterUpdateParameters class. + /// + public ClusterUpdateParameters(IList availableClusterVersions = default(IList), string clusterId = default(string), string clusterState = default(string), string clusterEndpoint = default(string), string clusterCodeVersion = default(string), CertificateDescription certificate = default(CertificateDescription), string reliabilityLevel = default(string), string upgradeMode = default(string), IList clientCertificateThumbprints = default(IList), IList clientCertificateCommonNames = default(IList), IList fabricSettings = default(IList), CertificateDescription reverseProxyCertificate = default(CertificateDescription), string managementEndpoint = default(string), IList nodeTypes = default(IList), string provisioningState = default(string), string vmImage = default(string), DiagnosticsStorageAccountConfig diagnosticsStorageAccountConfig = default(DiagnosticsStorageAccountConfig), PaasClusterUpgradePolicy upgradeDescription = default(PaasClusterUpgradePolicy), IDictionary tags = default(IDictionary), IList propertyNames = default(IList)) + { + AvailableClusterVersions = availableClusterVersions; + ClusterId = clusterId; + ClusterState = clusterState; + ClusterEndpoint = clusterEndpoint; + ClusterCodeVersion = clusterCodeVersion; + Certificate = certificate; + ReliabilityLevel = reliabilityLevel; + UpgradeMode = upgradeMode; + ClientCertificateThumbprints = clientCertificateThumbprints; + ClientCertificateCommonNames = clientCertificateCommonNames; + FabricSettings = fabricSettings; + ReverseProxyCertificate = reverseProxyCertificate; + ManagementEndpoint = managementEndpoint; + NodeTypes = nodeTypes; + ProvisioningState = provisioningState; + VmImage = vmImage; + DiagnosticsStorageAccountConfig = diagnosticsStorageAccountConfig; + UpgradeDescription = upgradeDescription; + Tags = tags; + PropertyNames = propertyNames; + } + + /// + /// + [JsonProperty(PropertyName = "properties.availableClusterVersions")] + public IList AvailableClusterVersions { get; private set; } + + /// + /// + [JsonProperty(PropertyName = "properties.clusterId")] + public string ClusterId { get; set; } + + /// + /// Possible values include: 'Default', 'WaitingForNodes', + /// 'Deploying', 'BaselineUpgrade', 'UpdatingUserConfiguration', + /// 'UpdatingUserCertificate', 'UpdatingInfrastructure', + /// 'EnforcingClusterVersion', 'UpgradeServiceUnreachable', + /// 'Deleting', 'ScaleUp', 'ScaleDown', 'AutoScale', 'Ready', 'Failed' + /// + [JsonProperty(PropertyName = "properties.clusterState")] + public string ClusterState { get; private set; } + + /// + /// + [JsonProperty(PropertyName = "properties.clusterEndpoint")] + public string ClusterEndpoint { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties.clusterCodeVersion")] + public string ClusterCodeVersion { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties.certificate")] + public CertificateDescription Certificate { get; set; } + + /// + /// Possible values include: 'Invalid', 'Bronze', 'Silver', 'Gold', + /// 'Platinum' + /// + [JsonProperty(PropertyName = "properties.reliabilityLevel")] + public string ReliabilityLevel { get; set; } + + /// + /// Possible values include: 'Default', 'Automatic', 'Manual' + /// + [JsonProperty(PropertyName = "properties.upgradeMode")] + public string UpgradeMode { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties.clientCertificateThumbprints")] + public IList ClientCertificateThumbprints { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties.clientCertificateCommonNames")] + public IList ClientCertificateCommonNames { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties.fabricSettings")] + public IList FabricSettings { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties.reverseProxyCertificate")] + public CertificateDescription ReverseProxyCertificate { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties.managementEndpoint")] + public string ManagementEndpoint { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties.nodeTypes")] + public IList NodeTypes { get; set; } + + /// + /// Possible values include: 'Default', 'WaitingForNodes', + /// 'Deploying', 'BaselineUpgrade', 'UpdatingUserConfiguration', + /// 'UpdatingUserCertificate', 'UpdatingInfrastructure', + /// 'EnforcingClusterVersion', 'UpgradeServiceUnreachable', + /// 'Deleting', 'ScaleUp', 'ScaleDown', 'AutoScale', 'Ready', 'Failed' + /// + [JsonProperty(PropertyName = "properties.provisioningState")] + public string ProvisioningState { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties.vmImage")] + public string VmImage { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties.diagnosticsStorageAccountConfig")] + public DiagnosticsStorageAccountConfig DiagnosticsStorageAccountConfig { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties.upgradeDescription")] + public PaasClusterUpgradePolicy UpgradeDescription { get; set; } + + /// + /// Cluster tags. + /// + [JsonProperty(PropertyName = "properties.tags")] + public IDictionary Tags { get; set; } + + /// + /// Allowed properties + /// + [JsonProperty(PropertyName = "properties.propertyNames")] + public IList PropertyNames { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterVersionDetails.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterVersionDetails.cs new file mode 100644 index 000000000000..8bc8491c1abb --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterVersionDetails.cs @@ -0,0 +1,51 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + + /// + /// NodeType description + /// + public partial class ClusterVersionDetails + { + /// + /// Initializes a new instance of the ClusterVersionDetails class. + /// + public ClusterVersionDetails() { } + + /// + /// Initializes a new instance of the ClusterVersionDetails class. + /// + public ClusterVersionDetails(string codeVersion = default(string), string supportExpiryUtc = default(string), string environment = default(string)) + { + CodeVersion = codeVersion; + SupportExpiryUtc = supportExpiryUtc; + Environment = environment; + } + + /// + /// + [JsonProperty(PropertyName = "codeVersion")] + public string CodeVersion { get; set; } + + /// + /// + [JsonProperty(PropertyName = "supportExpiryUtc")] + public string SupportExpiryUtc { get; set; } + + /// + /// Possible values include: 'Default', 'Windows', 'Linux' + /// + [JsonProperty(PropertyName = "environment")] + public string Environment { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/DiagnosticsStorageAccountConfig.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/DiagnosticsStorageAccountConfig.cs new file mode 100644 index 000000000000..3480a3f286f6 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/DiagnosticsStorageAccountConfig.cs @@ -0,0 +1,76 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + + /// + /// Diagnostics storage account config + /// + public partial class DiagnosticsStorageAccountConfig + { + /// + /// Initializes a new instance of the DiagnosticsStorageAccountConfig + /// class. + /// + public DiagnosticsStorageAccountConfig() { } + + /// + /// Initializes a new instance of the DiagnosticsStorageAccountConfig + /// class. + /// + public DiagnosticsStorageAccountConfig(string storageAccountName = default(string), string primaryAccessKey = default(string), string secondaryAccessKey = default(string), string protectedAccountKeyName = default(string), string blobEndpoint = default(string), string queueEndpoint = default(string), string tableEndpoint = default(string)) + { + StorageAccountName = storageAccountName; + PrimaryAccessKey = primaryAccessKey; + SecondaryAccessKey = secondaryAccessKey; + ProtectedAccountKeyName = protectedAccountKeyName; + BlobEndpoint = blobEndpoint; + QueueEndpoint = queueEndpoint; + TableEndpoint = tableEndpoint; + } + + /// + /// + [JsonProperty(PropertyName = "storageAccountName")] + public string StorageAccountName { get; set; } + + /// + /// + [JsonProperty(PropertyName = "primaryAccessKey")] + public string PrimaryAccessKey { get; set; } + + /// + /// + [JsonProperty(PropertyName = "secondaryAccessKey")] + public string SecondaryAccessKey { get; set; } + + /// + /// + [JsonProperty(PropertyName = "protectedAccountKeyName")] + public string ProtectedAccountKeyName { get; set; } + + /// + /// + [JsonProperty(PropertyName = "blobEndpoint")] + public string BlobEndpoint { get; set; } + + /// + /// + [JsonProperty(PropertyName = "queueEndpoint")] + public string QueueEndpoint { get; set; } + + /// + /// + [JsonProperty(PropertyName = "tableEndpoint")] + public string TableEndpoint { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/EndpointRangeDescription.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/EndpointRangeDescription.cs new file mode 100644 index 000000000000..4ef72a2a4ca3 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/EndpointRangeDescription.cs @@ -0,0 +1,44 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + + /// + /// Endpoint range description + /// + public partial class EndpointRangeDescription + { + /// + /// Initializes a new instance of the EndpointRangeDescription class. + /// + public EndpointRangeDescription() { } + + /// + /// Initializes a new instance of the EndpointRangeDescription class. + /// + public EndpointRangeDescription(int? startPort = default(int?), int? endPort = default(int?)) + { + StartPort = startPort; + EndPort = endPort; + } + + /// + /// + [JsonProperty(PropertyName = "startPort")] + public int? StartPort { get; set; } + + /// + /// + [JsonProperty(PropertyName = "endPort")] + public int? EndPort { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModel.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModel.cs new file mode 100644 index 000000000000..5a7ec839436a --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModel.cs @@ -0,0 +1,39 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + + /// + /// The model of the error + /// + public partial class ErrorModel + { + /// + /// Initializes a new instance of the ErrorModel class. + /// + public ErrorModel() { } + + /// + /// Initializes a new instance of the ErrorModel class. + /// + public ErrorModel(ErrorModelError error = default(ErrorModelError)) + { + Error = error; + } + + /// + /// The error + /// + [JsonProperty(PropertyName = "error")] + public ErrorModelError Error { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModelError.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModelError.cs new file mode 100644 index 000000000000..215ffbee4ca1 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModelError.cs @@ -0,0 +1,44 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + + /// + /// The error + /// + public partial class ErrorModelError + { + /// + /// Initializes a new instance of the ErrorModelError class. + /// + public ErrorModelError() { } + + /// + /// Initializes a new instance of the ErrorModelError class. + /// + public ErrorModelError(string code = default(string), string message = default(string)) + { + Code = code; + Message = message; + } + + /// + /// + [JsonProperty(PropertyName = "code")] + public string Code { get; set; } + + /// + /// + [JsonProperty(PropertyName = "message")] + public string Message { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModelException.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModelException.cs new file mode 100644 index 000000000000..44b5faa8dca2 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModelException.cs @@ -0,0 +1,95 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Rest; + using System; + using System.Net.Http; + using System.Runtime.Serialization; +#if !PORTABLE && !DNXCORE50 + using System.Security.Permissions; +#endif + + /// + /// Exception thrown for an invalid response with ErrorModel information. + /// +#if !PORTABLE && !DNXCORE50 + [Serializable] +#endif + public class ErrorModelException : 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 ErrorModel Body { get; set; } + + /// + /// Initializes a new instance of the ErrorModelException class. + /// + public ErrorModelException() + { + } + + /// + /// Initializes a new instance of the ErrorModelException class. + /// + /// The exception message. + public ErrorModelException(string message) + : this(message, null) + { + } + + /// + /// Initializes a new instance of the ErrorModelException class. + /// + /// The exception message. + /// Inner exception. + public ErrorModelException(string message, Exception innerException) + : base(message, innerException) + { + } + +#if !PORTABLE && !DNXCORE50 + /// + /// Initializes a new instance of the ErrorModelException class. + /// + /// Serialization info. + /// Streaming context. + protected ErrorModelException(SerializationInfo info, StreamingContext context) + : base(info, context) + { + } + + /// + /// Serializes content of the exception. + /// + /// Serialization info. + /// Streaming context. + [SecurityPermission(SecurityAction.Demand, SerializationFormatter = true)] + public override void GetObjectData(SerializationInfo info, StreamingContext context) + { + base.GetObjectData(info, context); + if (info == null) + { + throw new ArgumentNullException("info"); + } + + info.AddValue("Request", Request); + info.AddValue("Response", Response); + info.AddValue("Body", Body); + } +#endif + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/NodeTypeDescription.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/NodeTypeDescription.cs new file mode 100644 index 000000000000..be418be5e2a3 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/NodeTypeDescription.cs @@ -0,0 +1,100 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + + /// + /// NodeType description + /// + public partial class NodeTypeDescription + { + /// + /// Initializes a new instance of the NodeTypeDescription class. + /// + public NodeTypeDescription() { } + + /// + /// Initializes a new instance of the NodeTypeDescription class. + /// + public NodeTypeDescription(string name = default(string), IDictionary placementProperties = default(IDictionary), IDictionary capacities = default(IDictionary), int? clientConnectionEndpointPort = default(int?), int? httpGatewayEndpointPort = default(int?), string durabilityLevel = default(string), EndpointRangeDescription applicationPorts = default(EndpointRangeDescription), EndpointRangeDescription ephemeralPorts = default(EndpointRangeDescription), bool? isPrimary = default(bool?), int? vmInstanceCount = default(int?), int? reverseProxyEndpointPort = default(int?)) + { + Name = name; + PlacementProperties = placementProperties; + Capacities = capacities; + ClientConnectionEndpointPort = clientConnectionEndpointPort; + HttpGatewayEndpointPort = httpGatewayEndpointPort; + DurabilityLevel = durabilityLevel; + ApplicationPorts = applicationPorts; + EphemeralPorts = ephemeralPorts; + IsPrimary = isPrimary; + VmInstanceCount = vmInstanceCount; + ReverseProxyEndpointPort = reverseProxyEndpointPort; + } + + /// + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// + [JsonProperty(PropertyName = "placementProperties")] + public IDictionary PlacementProperties { get; set; } + + /// + /// + [JsonProperty(PropertyName = "capacities")] + public IDictionary Capacities { get; set; } + + /// + /// + [JsonProperty(PropertyName = "clientConnectionEndpointPort")] + public int? ClientConnectionEndpointPort { get; set; } + + /// + /// + [JsonProperty(PropertyName = "httpGatewayEndpointPort")] + public int? HttpGatewayEndpointPort { get; set; } + + /// + /// Possible values include: 'Bronze', 'Silver', 'Gold', 'Platimun' + /// + [JsonProperty(PropertyName = "durabilityLevel")] + public string DurabilityLevel { get; set; } + + /// + /// + [JsonProperty(PropertyName = "applicationPorts")] + public EndpointRangeDescription ApplicationPorts { get; set; } + + /// + /// + [JsonProperty(PropertyName = "ephemeralPorts")] + public EndpointRangeDescription EphemeralPorts { get; set; } + + /// + /// Is primary or not + /// + [JsonProperty(PropertyName = "isPrimary")] + public bool? IsPrimary { get; set; } + + /// + /// + [JsonProperty(PropertyName = "vmInstanceCount")] + public int? VmInstanceCount { get; set; } + + /// + /// + [JsonProperty(PropertyName = "reverseProxyEndpointPort")] + public int? ReverseProxyEndpointPort { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasApplicationDeltaHealthPolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasApplicationDeltaHealthPolicy.cs new file mode 100644 index 000000000000..7cd877222b35 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasApplicationDeltaHealthPolicy.cs @@ -0,0 +1,46 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + + /// + /// Paas application delta health policy + /// + public partial class PaasApplicationDeltaHealthPolicy + { + /// + /// Initializes a new instance of the PaasApplicationDeltaHealthPolicy + /// class. + /// + public PaasApplicationDeltaHealthPolicy() { } + + /// + /// Initializes a new instance of the PaasApplicationDeltaHealthPolicy + /// class. + /// + public PaasApplicationDeltaHealthPolicy(PaasServiceTypeDeltaHealthPolicy defaultServiceTypeDeltaHealthPolicy = default(PaasServiceTypeDeltaHealthPolicy), IDictionary serivceTypeDeltaHealthPolicies = default(IDictionary)) + { + DefaultServiceTypeDeltaHealthPolicy = defaultServiceTypeDeltaHealthPolicy; + SerivceTypeDeltaHealthPolicies = serivceTypeDeltaHealthPolicies; + } + + /// + /// + [JsonProperty(PropertyName = "defaultServiceTypeDeltaHealthPolicy")] + public PaasServiceTypeDeltaHealthPolicy DefaultServiceTypeDeltaHealthPolicy { get; set; } + + /// + /// + [JsonProperty(PropertyName = "serivceTypeDeltaHealthPolicies")] + public IDictionary SerivceTypeDeltaHealthPolicies { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasApplicationHealthPolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasApplicationHealthPolicy.cs new file mode 100644 index 000000000000..677feecf47ce --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasApplicationHealthPolicy.cs @@ -0,0 +1,46 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + + /// + /// Paas application health policy + /// + public partial class PaasApplicationHealthPolicy + { + /// + /// Initializes a new instance of the PaasApplicationHealthPolicy + /// class. + /// + public PaasApplicationHealthPolicy() { } + + /// + /// Initializes a new instance of the PaasApplicationHealthPolicy + /// class. + /// + public PaasApplicationHealthPolicy(PaasServiceTypeHealthPolicy defaultServiceTypeHealthPolicy = default(PaasServiceTypeHealthPolicy), IDictionary serivceTypeHealthPolicies = default(IDictionary)) + { + DefaultServiceTypeHealthPolicy = defaultServiceTypeHealthPolicy; + SerivceTypeHealthPolicies = serivceTypeHealthPolicies; + } + + /// + /// + [JsonProperty(PropertyName = "defaultServiceTypeHealthPolicy")] + public PaasServiceTypeHealthPolicy DefaultServiceTypeHealthPolicy { get; set; } + + /// + /// + [JsonProperty(PropertyName = "serivceTypeHealthPolicies")] + public IDictionary SerivceTypeHealthPolicies { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasClusterUpgradeDeltaHealthPolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasClusterUpgradeDeltaHealthPolicy.cs new file mode 100644 index 000000000000..43ac355e5471 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasClusterUpgradeDeltaHealthPolicy.cs @@ -0,0 +1,58 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + + /// + /// Paas cluster upgrade delta health policy + /// + public partial class PaasClusterUpgradeDeltaHealthPolicy + { + /// + /// Initializes a new instance of the + /// PaasClusterUpgradeDeltaHealthPolicy class. + /// + public PaasClusterUpgradeDeltaHealthPolicy() { } + + /// + /// Initializes a new instance of the + /// PaasClusterUpgradeDeltaHealthPolicy class. + /// + public PaasClusterUpgradeDeltaHealthPolicy(int? maxPercentDeltaUnhealthyNodes = default(int?), int? maxPercentUpgradeDomainDeltaUnhealthyNodes = default(int?), int? maxPercentDeltaUnhealthyApplications = default(int?), IDictionary applicationHealthPolicies = default(IDictionary)) + { + MaxPercentDeltaUnhealthyNodes = maxPercentDeltaUnhealthyNodes; + MaxPercentUpgradeDomainDeltaUnhealthyNodes = maxPercentUpgradeDomainDeltaUnhealthyNodes; + MaxPercentDeltaUnhealthyApplications = maxPercentDeltaUnhealthyApplications; + ApplicationHealthPolicies = applicationHealthPolicies; + } + + /// + /// + [JsonProperty(PropertyName = "maxPercentDeltaUnhealthyNodes")] + public int? MaxPercentDeltaUnhealthyNodes { get; set; } + + /// + /// + [JsonProperty(PropertyName = "maxPercentUpgradeDomainDeltaUnhealthyNodes")] + public int? MaxPercentUpgradeDomainDeltaUnhealthyNodes { get; set; } + + /// + /// + [JsonProperty(PropertyName = "maxPercentDeltaUnhealthyApplications")] + public int? MaxPercentDeltaUnhealthyApplications { get; set; } + + /// + /// + [JsonProperty(PropertyName = "applicationHealthPolicies")] + public IDictionary ApplicationHealthPolicies { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasClusterUpgradeHealthPolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasClusterUpgradeHealthPolicy.cs new file mode 100644 index 000000000000..ae9227a1038e --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasClusterUpgradeHealthPolicy.cs @@ -0,0 +1,52 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + + /// + /// Paas cluster upgrade health policy + /// + public partial class PaasClusterUpgradeHealthPolicy + { + /// + /// Initializes a new instance of the PaasClusterUpgradeHealthPolicy + /// class. + /// + public PaasClusterUpgradeHealthPolicy() { } + + /// + /// Initializes a new instance of the PaasClusterUpgradeHealthPolicy + /// class. + /// + public PaasClusterUpgradeHealthPolicy(int? maxPercentUnhealthyNodes = default(int?), int? maxPercentUnhealthyApplications = default(int?), IDictionary applicationHealthPolicies = default(IDictionary)) + { + MaxPercentUnhealthyNodes = maxPercentUnhealthyNodes; + MaxPercentUnhealthyApplications = maxPercentUnhealthyApplications; + ApplicationHealthPolicies = applicationHealthPolicies; + } + + /// + /// + [JsonProperty(PropertyName = "maxPercentUnhealthyNodes")] + public int? MaxPercentUnhealthyNodes { get; set; } + + /// + /// + [JsonProperty(PropertyName = "maxPercentUnhealthyApplications")] + public int? MaxPercentUnhealthyApplications { get; set; } + + /// + /// + [JsonProperty(PropertyName = "applicationHealthPolicies")] + public IDictionary ApplicationHealthPolicies { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasClusterUpgradePolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasClusterUpgradePolicy.cs new file mode 100644 index 000000000000..2a97331760e5 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasClusterUpgradePolicy.cs @@ -0,0 +1,92 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + + /// + /// Paas cluster upgrade policy + /// + public partial class PaasClusterUpgradePolicy + { + /// + /// Initializes a new instance of the PaasClusterUpgradePolicy class. + /// + public PaasClusterUpgradePolicy() { } + + /// + /// Initializes a new instance of the PaasClusterUpgradePolicy class. + /// + public PaasClusterUpgradePolicy(bool? overrideUserUpgradePolicy = default(bool?), bool? forceRestart = default(bool?), string upgradeReplicaSetCheckTimeout = default(string), string healthCheckWaitDuration = default(string), string healthCheckStableDuration = default(string), string healthCheckRetryTimeout = default(string), string upgradeTimeout = default(string), string upgradeDomainTimeout = default(string), PaasClusterUpgradeHealthPolicy healthPolicy = default(PaasClusterUpgradeHealthPolicy), PaasClusterUpgradeDeltaHealthPolicy deltaHealthPolicy = default(PaasClusterUpgradeDeltaHealthPolicy)) + { + OverrideUserUpgradePolicy = overrideUserUpgradePolicy; + ForceRestart = forceRestart; + UpgradeReplicaSetCheckTimeout = upgradeReplicaSetCheckTimeout; + HealthCheckWaitDuration = healthCheckWaitDuration; + HealthCheckStableDuration = healthCheckStableDuration; + HealthCheckRetryTimeout = healthCheckRetryTimeout; + UpgradeTimeout = upgradeTimeout; + UpgradeDomainTimeout = upgradeDomainTimeout; + HealthPolicy = healthPolicy; + DeltaHealthPolicy = deltaHealthPolicy; + } + + /// + /// + [JsonProperty(PropertyName = "overrideUserUpgradePolicy")] + public bool? OverrideUserUpgradePolicy { get; set; } + + /// + /// + [JsonProperty(PropertyName = "forceRestart")] + public bool? ForceRestart { get; set; } + + /// + /// + [JsonProperty(PropertyName = "upgradeReplicaSetCheckTimeout")] + public string UpgradeReplicaSetCheckTimeout { get; set; } + + /// + /// + [JsonProperty(PropertyName = "healthCheckWaitDuration")] + public string HealthCheckWaitDuration { get; set; } + + /// + /// + [JsonProperty(PropertyName = "healthCheckStableDuration")] + public string HealthCheckStableDuration { get; set; } + + /// + /// + [JsonProperty(PropertyName = "healthCheckRetryTimeout")] + public string HealthCheckRetryTimeout { get; set; } + + /// + /// + [JsonProperty(PropertyName = "upgradeTimeout")] + public string UpgradeTimeout { get; set; } + + /// + /// + [JsonProperty(PropertyName = "upgradeDomainTimeout")] + public string UpgradeDomainTimeout { get; set; } + + /// + /// + [JsonProperty(PropertyName = "healthPolicy")] + public PaasClusterUpgradeHealthPolicy HealthPolicy { get; set; } + + /// + /// + [JsonProperty(PropertyName = "deltaHealthPolicy")] + public PaasClusterUpgradeDeltaHealthPolicy DeltaHealthPolicy { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasServiceTypeDeltaHealthPolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasServiceTypeDeltaHealthPolicy.cs new file mode 100644 index 000000000000..4e7e08d13cd1 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasServiceTypeDeltaHealthPolicy.cs @@ -0,0 +1,40 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + + /// + /// Paas service type delta health policy + /// + public partial class PaasServiceTypeDeltaHealthPolicy + { + /// + /// Initializes a new instance of the PaasServiceTypeDeltaHealthPolicy + /// class. + /// + public PaasServiceTypeDeltaHealthPolicy() { } + + /// + /// Initializes a new instance of the PaasServiceTypeDeltaHealthPolicy + /// class. + /// + public PaasServiceTypeDeltaHealthPolicy(int? maxPercentDeltaUnhealthyServices = default(int?)) + { + MaxPercentDeltaUnhealthyServices = maxPercentDeltaUnhealthyServices; + } + + /// + /// + [JsonProperty(PropertyName = "maxPercentDeltaUnhealthyServices")] + public int? MaxPercentDeltaUnhealthyServices { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasServiceTypeHealthPolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasServiceTypeHealthPolicy.cs new file mode 100644 index 000000000000..0537a986ec07 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasServiceTypeHealthPolicy.cs @@ -0,0 +1,40 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + + /// + /// Paas service type health policy + /// + public partial class PaasServiceTypeHealthPolicy + { + /// + /// Initializes a new instance of the PaasServiceTypeHealthPolicy + /// class. + /// + public PaasServiceTypeHealthPolicy() { } + + /// + /// Initializes a new instance of the PaasServiceTypeHealthPolicy + /// class. + /// + public PaasServiceTypeHealthPolicy(int? maxPercentUnhealthyServices = default(int?)) + { + MaxPercentUnhealthyServices = maxPercentUnhealthyServices; + } + + /// + /// + [JsonProperty(PropertyName = "maxPercentUnhealthyServices")] + public int? MaxPercentUnhealthyServices { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Resource.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Resource.cs new file mode 100644 index 000000000000..fcfd867eda08 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Resource.cs @@ -0,0 +1,77 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + + /// + /// The resource model definition. + /// + public partial class Resource + { + /// + /// Initializes a new instance of the Resource class. + /// + public Resource() { } + + /// + /// Initializes a new instance of the Resource class. + /// + public Resource(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary)) + { + Id = id; + Name = name; + Type = type; + Location = location; + Tags = tags; + } + + /// + /// Resource ID. + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; private set; } + + /// + /// Resource name. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Resource type. + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } + + /// + /// Resource location. + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; set; } + + /// + /// Resource tags. + /// + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } + + /// + /// Validate the object. Throws ValidationException if validation fails. + /// + public virtual void Validate() + { + if (Location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Location"); + } + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsParameterDescription.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsParameterDescription.cs new file mode 100644 index 000000000000..3791ab90e6c9 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsParameterDescription.cs @@ -0,0 +1,48 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + + /// + /// Settings parameter description + /// + public partial class SettingsParameterDescription + { + /// + /// Initializes a new instance of the SettingsParameterDescription + /// class. + /// + public SettingsParameterDescription() { } + + /// + /// Initializes a new instance of the SettingsParameterDescription + /// class. + /// + public SettingsParameterDescription(string name = default(string), string value = default(string)) + { + Name = name; + Value = value; + } + + /// + /// name + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// name + /// + [JsonProperty(PropertyName = "value")] + public string Value { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsSectionDescription.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsSectionDescription.cs new file mode 100644 index 000000000000..02314b7c9120 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsSectionDescription.cs @@ -0,0 +1,45 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + + /// + /// Settings section description + /// + public partial class SettingsSectionDescription + { + /// + /// Initializes a new instance of the SettingsSectionDescription class. + /// + public SettingsSectionDescription() { } + + /// + /// Initializes a new instance of the SettingsSectionDescription class. + /// + public SettingsSectionDescription(string name = default(string), IList parameters = default(IList)) + { + Name = name; + Parameters = parameters; + } + + /// + /// name + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// + [JsonProperty(PropertyName = "parameters")] + public IList Parameters { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ServiceFabricClient.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ServiceFabricClient.cs new file mode 100644 index 000000000000..632a17ef7fdc --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ServiceFabricClient.cs @@ -0,0 +1,274 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric +{ + using System; + using System.Linq; + using System.Collections.Generic; + using System.Diagnostics; + using System.Net; + using System.Net.Http; + using System.Net.Http.Headers; + using System.Text; + using System.Text.RegularExpressions; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using Models; + + public partial class ServiceFabricClient : ServiceClient, IServiceFabricClient + { + /// + /// The base URI of the service. + /// + public Uri BaseUri { get; set; } + + /// + /// Gets or sets json serialization settings. + /// + public JsonSerializerSettings SerializationSettings { get; private set; } + + /// + /// Gets or sets json deserialization settings. + /// + public JsonSerializerSettings DeserializationSettings { get; private set; } + + /// + /// The subscription identifier + /// + public string SubscriptionId { get; set; } + + /// + /// The version of the api + /// + public string ApiVersion { get; set; } + + /// + /// Subscription credentials which uniquely identify client subscription. + /// + public ServiceClientCredentials Credentials { get; private set; } + + /// + /// Gets the IClusters. + /// + public virtual IClusters Clusters { get; private set; } + + /// + /// Initializes a new instance of the ServiceFabricClient class. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + protected ServiceFabricClient(params DelegatingHandler[] handlers) : base(handlers) + { + this.Initialize(); + } + + /// + /// Initializes a new instance of the ServiceFabricClient class. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + protected ServiceFabricClient(HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : base(rootHandler, handlers) + { + this.Initialize(); + } + + /// + /// Initializes a new instance of the ServiceFabricClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + protected ServiceFabricClient(Uri baseUri, params DelegatingHandler[] handlers) : this(handlers) + { + if (baseUri == null) + { + throw new ArgumentNullException("baseUri"); + } + this.BaseUri = baseUri; + } + + /// + /// Initializes a new instance of the ServiceFabricClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + protected ServiceFabricClient(Uri baseUri, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) + { + if (baseUri == null) + { + throw new ArgumentNullException("baseUri"); + } + this.BaseUri = baseUri; + } + + /// + /// Initializes a new instance of the ServiceFabricClient class. + /// + /// + /// Required. Subscription credentials which uniquely identify client subscription. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + public ServiceFabricClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + { + if (credentials == null) + { + throw new ArgumentNullException("credentials"); + } + this.Credentials = credentials; + if (this.Credentials != null) + { + this.Credentials.InitializeServiceClient(this); + } + } + + /// + /// Initializes a new instance of the ServiceFabricClient class. + /// + /// + /// Required. Subscription credentials which uniquely identify client subscription. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + public ServiceFabricClient(ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) + { + if (credentials == null) + { + throw new ArgumentNullException("credentials"); + } + this.Credentials = credentials; + if (this.Credentials != null) + { + this.Credentials.InitializeServiceClient(this); + } + } + + /// + /// Initializes a new instance of the ServiceFabricClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Required. Subscription credentials which uniquely identify client subscription. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + public ServiceFabricClient(Uri baseUri, ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + { + if (baseUri == null) + { + throw new ArgumentNullException("baseUri"); + } + if (credentials == null) + { + throw new ArgumentNullException("credentials"); + } + this.BaseUri = baseUri; + this.Credentials = credentials; + if (this.Credentials != null) + { + this.Credentials.InitializeServiceClient(this); + } + } + + /// + /// Initializes a new instance of the ServiceFabricClient class. + /// + /// + /// Optional. The base URI of the service. + /// + /// + /// Required. Subscription credentials which uniquely identify client subscription. + /// + /// + /// Optional. The http client handler used to handle http transport. + /// + /// + /// Optional. The delegating handlers to add to the http client pipeline. + /// + public ServiceFabricClient(Uri baseUri, ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) + { + if (baseUri == null) + { + throw new ArgumentNullException("baseUri"); + } + if (credentials == null) + { + throw new ArgumentNullException("credentials"); + } + this.BaseUri = baseUri; + this.Credentials = credentials; + if (this.Credentials != null) + { + this.Credentials.InitializeServiceClient(this); + } + } + + /// + /// An optional partial-method to perform custom initialization. + /// + partial void CustomInitialize(); + /// + /// Initializes client properties. + /// + private void Initialize() + { + this.ApiVersion = "2016-09-01"; + this.Clusters = new Clusters(this); + this.BaseUri = new Uri("https://management.azure.com"); + SerializationSettings = new JsonSerializerSettings + { + Formatting = Formatting.Indented, + DateFormatHandling = DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = DateTimeZoneHandling.Utc, + NullValueHandling = NullValueHandling.Ignore, + ReferenceLoopHandling = ReferenceLoopHandling.Serialize, + Converters = new List + { + new Iso8601TimeSpanConverter() + } + }; + SerializationSettings.Converters.Add(new TransformationJsonConverter()); + DeserializationSettings = new JsonSerializerSettings + { + DateFormatHandling = DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = DateTimeZoneHandling.Utc, + NullValueHandling = NullValueHandling.Ignore, + ReferenceLoopHandling = ReferenceLoopHandling.Serialize, + Converters = new List + { + new Iso8601TimeSpanConverter() + } + }; + CustomInitialize(); + DeserializationSettings.Converters.Add(new TransformationJsonConverter()); + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Microsoft.Azure.Management.ServiceFabric.xproj b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Microsoft.Azure.Management.ServiceFabric.xproj new file mode 100644 index 000000000000..29de82f0546e --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Microsoft.Azure.Management.ServiceFabric.xproj @@ -0,0 +1,21 @@ + + + + 14.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + 624659FE-FE8F-41D2-99AB-0BA92DE15A65 + Microsoft.Azure.Management.ServiceFabric + .\obj + .\bin\ + + + 2.0 + + + True + + + \ No newline at end of file diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Properties/AssemblyInfo.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..d9bdbe94054c --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Properties/AssemblyInfo.cs @@ -0,0 +1,29 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System.Reflection; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("ServiceFabric")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("ServiceFabric")] +[assembly: AssemblyCopyright("Copyright © 2017")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("0.1.0.0")] +[assembly: AssemblyFileVersion("0.1.0.0")] diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/generate.cmd b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/generate.cmd new file mode 100644 index 000000000000..9bd82eea14ad --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/generate.cmd @@ -0,0 +1,17 @@ +:: +:: Microsoft Azure SDK for Net - Generate library code +:: Copyright (C) Microsoft Corporation. All Rights Reserved. +:: + +@echo off +set autoRestVersion=1.0.0-Nightly20170202 +if "%1" == "" ( + set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-servicefabric/2016-09-01/swagger/servicefabric.json" +) else ( + set specFile="%1" +) +set repoRoot=%~dp0..\..\..\.. +set generateFolder=%~dp0Generated + +if exist %generateFolder% rd /S /Q %generateFolder% +call "%repoRoot%\tools\autorest.composite.gen.cmd" %specFile% Microsoft.Azure.Management.ServiceFabric %autoRestVersion% %generateFolder% \ No newline at end of file diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/project.json b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/project.json new file mode 100644 index 000000000000..6c35400fd1ef --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/project.json @@ -0,0 +1,61 @@ +{ + "version": "1.0.0", + "description": "Microsoft Azure Management ServiceFabric Library", + "authors": [ + "Microsoft" + ], + "packOptions": { + "tags": [ + "Microsoft Azure Management Library", + "ServiceFabric", + "ServiceFabric management", + "REST HTTP client", + "windowsazureofficial", + "netcore451511" + ], + "projectUrl": "https://github.com/Azure/azure-sdk-for-net", + "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", + "iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", + "requireLicenseAcceptance": true + }, + "buildOptions": { + "delaySign": true, + "publicSign": false, + "keyFile": "../../../../tools/MSSharedLibKey.snk" + }, + + "dependencies": { + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", + "Microsoft.Rest.ClientRuntime": "[2.3.5,3.0.0)" + }, + + "frameworks": { + "net45": { + "dependencies": { + } + }, + "netstandard1.5": { + "imports": [ "dnxcore50" ], + "buildOptions": { "define": [ "PORTABLE" ] }, + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Primitives": "4.1.1", + "System.Diagnostics.Tools": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "netstandard1.1": { + "imports": [ "dnxcore50" ], + "buildOptions": { "define": [ "PORTABLE" ] }, + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "NETStandard.Library": "1.6.1", + "System.Runtime.Serialization.Primitives": "4.1.1" + } + } + } +} \ No newline at end of file diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/ServiceFabric.Tests.xproj b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/ServiceFabric.Tests.xproj new file mode 100644 index 000000000000..d686a9ebf443 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/ServiceFabric.Tests.xproj @@ -0,0 +1,21 @@ + + + + 14.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + F857A01A-2955-4FC9-836B-FE7FD80C6CC2 + ServiceFabric.Tests + .\obj + .\bin\ + + + 2.0 + + + + + + \ No newline at end of file diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestCreateClusterResource/TestCreate.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestCreateClusterResource/TestCreate.json new file mode 100644 index 000000000000..5cd142686a8e --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestCreateClusterResource/TestCreate.json @@ -0,0 +1,306 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3RDcmVhdGVyZzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL3Rlc3RDcmVhdGVDbHVzdGVyMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testCreaterg1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636244592740958842\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"dcec1f27-9da4-4d1a-981d-b381aa6a7b8f\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/dcec1f27-9da4-4d1a-981d-b381aa6a7b8f\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 04:59:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" + ], + "x-ms-request-id": [ + "20473828-c6f9-4c83-addb-1b124c27ca4a" + ], + "x-ms-correlation-request-id": [ + "20473828-c6f9-4c83-addb-1b124c27ca4a" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170307T045938Z:20473828-c6f9-4c83-addb-1b124c27ca4a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3RDcmVhdGVyZzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL3Rlc3RDcmVhdGVDbHVzdGVyMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testCreaterg1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636244595927345289\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"ed4fa900-6c59-430b-b807-2e440ac20456\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/ed4fa900-6c59-430b-b807-2e440ac20456\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 04:59:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14981" + ], + "x-ms-request-id": [ + "24f2f347-463e-4893-8299-efb452ff2561" + ], + "x-ms-correlation-request-id": [ + "24f2f347-463e-4893-8299-efb452ff2561" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170307T045952Z:24f2f347-463e-4893-8299-efb452ff2561" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3RDcmVhdGVyZzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL3Rlc3RDcmVhdGVDbHVzdGVyMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 04:59:38 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "1f8b2a6c-f7bd-4635-8211-cddd8925991e" + ], + "x-ms-correlation-request-id": [ + "1f8b2a6c-f7bd-4635-8211-cddd8925991e" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170307T045939Z:1f8b2a6c-f7bd-4635-8211-cddd8925991e" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testCreaterg1?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzL3Rlc3RDcmVhdGVyZzE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "38" + ], + "x-ms-client-request-id": [ + "040d253c-477b-470f-9c20-93319f178242" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1\",\r\n \"name\": \"testCreaterg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 04:59:50 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "84520577-8723-47e9-80b2-728a0f8d1466" + ], + "x-ms-correlation-request-id": [ + "84520577-8723-47e9-80b2-728a0f8d1466" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170307T045951Z:84520577-8723-47e9-80b2-728a0f8d1466" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3RDcmVhdGVyZzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL3Rlc3RDcmVhdGVDbHVzdGVyMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"clusterId\": \"415ec851-9e85-486d-b701-51b242eef292\",\r\n \"clusterState\": \"Ready\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8d566293-3508-4d62-ba7b-056fa710c3c9\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"durabilityLevel\": \"Bronze\",\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"vmImage\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testCreaterg1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1200" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testCreaterg1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636244595927345289\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"ed4fa900-6c59-430b-b807-2e440ac20456\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/ed4fa900-6c59-430b-b807-2e440ac20456\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 04:59:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "0c45f5e9-523e-48dd-8771-51ddf493209c" + ], + "x-ms-correlation-request-id": [ + "0c45f5e9-523e-48dd-8771-51ddf493209c" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170307T045952Z:0c45f5e9-523e-48dd-8771-51ddf493209c" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "b36cdf46-b75d-4dc2-9fe1-1296ee8c623d" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestDeleteClusterResource/TestDelete.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestDeleteClusterResource/TestDelete.json new file mode 100644 index 000000000000..50d6f067ed7d --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestDeleteClusterResource/TestDelete.json @@ -0,0 +1,336 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzL3Rlc3REZWxldGVyZz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "38" + ], + "x-ms-client-request-id": [ + "eb8961a8-1732-4d65-b147-3e1f3e28c9b8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg\",\r\n \"name\": \"testDeleterg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 05:00:18 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-request-id": [ + "728f8e80-cbac-47cb-a3aa-9cd06e6cdb02" + ], + "x-ms-correlation-request-id": [ + "728f8e80-cbac-47cb-a3aa-9cd06e6cdb02" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170307T050018Z:728f8e80-cbac-47cb-a3aa-9cd06e6cdb02" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3REZWxldGVyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvdGVzdERlbGV0ZUNsdXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"clusterId\": \"587845f7-d425-4661-955b-842f238ec698\",\r\n \"clusterState\": \"Ready\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8d566293-3508-4d62-ba7b-056fa710c3c9\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"durabilityLevel\": \"Bronze\",\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"vmImage\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster\",\r\n \"name\": \"testDeleteCluster\",\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1197" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster\",\r\n \"name\": \"testDeleteCluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636244596211435035\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"61a466d1-f0ef-48d0-aeeb-6baa2a97f0a4\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/61a466d1-f0ef-48d0-aeeb-6baa2a97f0a4\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 05:00:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-request-id": [ + "eac252a3-34c3-4a32-8dc9-27401e4834c0" + ], + "x-ms-correlation-request-id": [ + "eac252a3-34c3-4a32-8dc9-27401e4834c0" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170307T050020Z:eac252a3-34c3-4a32-8dc9-27401e4834c0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3REZWxldGVyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvdGVzdERlbGV0ZUNsdXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster\",\r\n \"name\": \"testDeleteCluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636244596211435035\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"61a466d1-f0ef-48d0-aeeb-6baa2a97f0a4\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/61a466d1-f0ef-48d0-aeeb-6baa2a97f0a4\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 05:00:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14986" + ], + "x-ms-request-id": [ + "6b764238-ddf9-4d60-97b2-812152107c6b" + ], + "x-ms-correlation-request-id": [ + "6b764238-ddf9-4d60-97b2-812152107c6b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170307T050020Z:6b764238-ddf9-4d60-97b2-812152107c6b" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3REZWxldGVyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvdGVzdERlbGV0ZUNsdXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.ServiceFabric/clusters/testDeleteCluster' under resource group 'testDeleterg' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "166" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 05:00:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "9c37c802-408f-4423-8ae3-790cea8aee7f" + ], + "x-ms-correlation-request-id": [ + "9c37c802-408f-4423-8ae3-790cea8aee7f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170307T050021Z:9c37c802-408f-4423-8ae3-790cea8aee7f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3REZWxldGVyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvdGVzdERlbGV0ZUNsdXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 05:00:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-request-id": [ + "ea7f1075-8501-459e-8403-133e53e8689f" + ], + "x-ms-correlation-request-id": [ + "ea7f1075-8501-459e-8403-133e53e8689f" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170307T050021Z:ea7f1075-8501-459e-8403-133e53e8689f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/donotexistcluster?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3REZWxldGVyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvZG9ub3RleGlzdGNsdXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 05:00:20 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-request-id": [ + "eb50c030-df0e-439c-ba18-e21329573568" + ], + "x-ms-correlation-request-id": [ + "eb50c030-df0e-439c-ba18-e21329573568" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170307T050021Z:eb50c030-df0e-439c-ba18-e21329573568" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 204 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "b36cdf46-b75d-4dc2-9fe1-1296ee8c623d" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestGetClusterResource/TestGet.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestGetClusterResource/TestGet.json new file mode 100644 index 000000000000..3f6c0c74b66f --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestGetClusterResource/TestGet.json @@ -0,0 +1,226 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6c2d0009-65f4-4055-ba25-3a0add1088ec" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg\",\r\n \"name\": \"aaaaaaaaaaaaarg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1702250539\",\r\n \"name\": \"abhaymtest1702250539\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1702251613\",\r\n \"name\": \"abhaymtest1702251613\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703010700\",\r\n \"name\": \"abhaymtest1703010700\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703012245\",\r\n \"name\": \"abhaymtest1703012245\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703012344\",\r\n \"name\": \"abhaymtest1703012344\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703020617\",\r\n \"name\": \"abhaymtest1703020617\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703020618\",\r\n \"name\": \"abhaymtest1703020618\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703020634\",\r\n \"name\": \"abhaymtest1703020634\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703030726\",\r\n \"name\": \"abhaymtest1703030726\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703061931\",\r\n \"name\": \"abhaymtest1703061931\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703062131\",\r\n \"name\": \"abhaymtest1703062131\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703062345\",\r\n \"name\": \"abhaymtest1703062345\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayreverseproxy02\",\r\n \"name\": \"abhayreverseproxy02\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest01\",\r\n \"name\": \"abhaytest01\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest04\",\r\n \"name\": \"abhaytest04\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayvm02\",\r\n \"name\": \"abhayvm02\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayvm03\",\r\n \"name\": \"abhayvm03\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/anmolprvbuild03\",\r\n \"name\": \"anmolprvbuild03\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/bztest-rg\",\r\n \"name\": \"bztest-rg\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/Default-ServiceBus-9653\",\r\n \"name\": \"Default-ServiceBus-9653\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/deployertest\",\r\n \"name\": \"deployertest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/dotnetsdkrg\",\r\n \"name\": \"dotnetsdkrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/nsgtest03\",\r\n \"name\": \"nsgtest03\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/nsgtest05\",\r\n \"name\": \"nsgtest05\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklinuxtest01\",\r\n \"name\": \"sdklinuxtest01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestrg2\",\r\n \"name\": \"sdktestrg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/SecureBaseImage\",\r\n \"name\": \"SecureBaseImage\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg\",\r\n \"name\": \"testCreaterg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1\",\r\n \"name\": \"testCreaterg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testsdkdnetrestrg\",\r\n \"name\": \"testsdkdnetrestrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-202955140-v2\",\r\n \"name\": \"wftsvc-bm-20161024-202955140-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-210350686-v2\",\r\n \"name\": \"wftsvc-bm-20161024-210350686-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-210948818-v2\",\r\n \"name\": \"wftsvc-bm-20161024-210948818-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161025-012157409-v2\",\r\n \"name\": \"wftsvc-bm-20161025-012157409-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161026-012217543-v2\",\r\n \"name\": \"wftsvc-bm-20161026-012217543-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161028-014354355-v2\",\r\n \"name\": \"wftsvc-bm-20161028-014354355-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161029-012553441-v2\",\r\n \"name\": \"wftsvc-bm-20161029-012553441-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161030-012137041-v2\",\r\n \"name\": \"wftsvc-bm-20161030-012137041-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161031-012217322-v2\",\r\n \"name\": \"wftsvc-bm-20161031-012217322-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161101-012812361-v2\",\r\n \"name\": \"wftsvc-bm-20161101-012812361-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161102-044018564-v2\",\r\n \"name\": \"wftsvc-bm-20161102-044018564-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161115-012828172-v2\",\r\n \"name\": \"wftsvc-bm-20161115-012828172-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161116-012248545-v2\",\r\n \"name\": \"wftsvc-bm-20161116-012248545-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161117-013025621-v2\",\r\n \"name\": \"wftsvc-bm-20161117-013025621-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161118-162552118-v2\",\r\n \"name\": \"wftsvc-bm-20161118-162552118-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161119-020853683-v2\",\r\n \"name\": \"wftsvc-bm-20161119-020853683-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161120-015112327-v2\",\r\n \"name\": \"wftsvc-bm-20161120-015112327-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161121-013411054-v2\",\r\n \"name\": \"wftsvc-bm-20161121-013411054-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161122-014033729-v2\",\r\n \"name\": \"wftsvc-bm-20161122-014033729-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161123-020328423-v2\",\r\n \"name\": \"wftsvc-bm-20161123-020328423-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161124-013118943-v2\",\r\n \"name\": \"wftsvc-bm-20161124-013118943-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161125-012512715-v2\",\r\n \"name\": \"wftsvc-bm-20161125-012512715-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161126-012537693-v2\",\r\n \"name\": \"wftsvc-bm-20161126-012537693-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161127-012554430-v2\",\r\n \"name\": \"wftsvc-bm-20161127-012554430-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161128-012517911-v2\",\r\n \"name\": \"wftsvc-bm-20161128-012517911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161129-012602111-v2\",\r\n \"name\": \"wftsvc-bm-20161129-012602111-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161130-022145798-v2\",\r\n \"name\": \"wftsvc-bm-20161130-022145798-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161201-014317317-v2\",\r\n \"name\": \"wftsvc-bm-20161201-014317317-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161202-012812276-v2\",\r\n \"name\": \"wftsvc-bm-20161202-012812276-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161203-012713277-v2\",\r\n \"name\": \"wftsvc-bm-20161203-012713277-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161206-025602238-v2\",\r\n \"name\": \"wftsvc-bm-20161206-025602238-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161207-012657615-v2\",\r\n \"name\": \"wftsvc-bm-20161207-012657615-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161208-024401245-v2\",\r\n \"name\": \"wftsvc-bm-20161208-024401245-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161209-012721060-v2\",\r\n \"name\": \"wftsvc-bm-20161209-012721060-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161210-012529259-v2\",\r\n \"name\": \"wftsvc-bm-20161210-012529259-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161211-012543460-v2\",\r\n \"name\": \"wftsvc-bm-20161211-012543460-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161212-012643580-v2\",\r\n \"name\": \"wftsvc-bm-20161212-012643580-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161213-135747390-v2\",\r\n \"name\": \"wftsvc-bm-20161213-135747390-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161214-020204911-v2\",\r\n \"name\": \"wftsvc-bm-20161214-020204911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161215-012912635-v2\",\r\n \"name\": \"wftsvc-bm-20161215-012912635-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161216-014118622-v2\",\r\n \"name\": \"wftsvc-bm-20161216-014118622-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161217-013027250-v2\",\r\n \"name\": \"wftsvc-bm-20161217-013027250-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161218-042923602-v2\",\r\n \"name\": \"wftsvc-bm-20161218-042923602-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161219-024910832-v2\",\r\n \"name\": \"wftsvc-bm-20161219-024910832-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161220-021526028-v2\",\r\n \"name\": \"wftsvc-bm-20161220-021526028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161221-014332493-v2\",\r\n \"name\": \"wftsvc-bm-20161221-014332493-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161222-190424958-v2\",\r\n \"name\": \"wftsvc-bm-20161222-190424958-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161223-020219887-v2\",\r\n \"name\": \"wftsvc-bm-20161223-020219887-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161224-012754028-v2\",\r\n \"name\": \"wftsvc-bm-20161224-012754028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161225-012413900-v2\",\r\n \"name\": \"wftsvc-bm-20161225-012413900-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161226-012537497-v2\",\r\n \"name\": \"wftsvc-bm-20161226-012537497-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161227-012619489-v2\",\r\n \"name\": \"wftsvc-bm-20161227-012619489-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161228-012627978-v2\",\r\n \"name\": \"wftsvc-bm-20161228-012627978-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161229-013147614-v2\",\r\n \"name\": \"wftsvc-bm-20161229-013147614-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161230-012714627-v2\",\r\n \"name\": \"wftsvc-bm-20161230-012714627-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-ma-20161202-222619667-v2\",\r\n \"name\": \"wftsvc-ma-20161202-222619667-v2\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-ma-20161216-222607320-v2\",\r\n \"name\": \"wftsvc-ma-20161216-222607320-v2\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-mwh-20161203-012707281-v2\",\r\n \"name\": \"wftsvc-mwh-20161203-012707281-v2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-sn-20161129-211521656-v2\",\r\n \"name\": \"wftsvc-sn-20161129-211521656-v2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-sn-20161129-211525592-v2\",\r\n \"name\": \"wftsvc-sn-20161129-211525592-v2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yq-20161201-012845413-v2\",\r\n \"name\": \"wftsvc-yq-20161201-012845413-v2\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161026-012057297-v2\",\r\n \"name\": \"wftsvc-yt-20161026-012057297-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161210-012552629-v2\",\r\n \"name\": \"wftsvc-yt-20161210-012552629-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161221-012942018-v2\",\r\n \"name\": \"wftsvc-yt-20161221-012942018-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault1\",\r\n \"name\": \"wftsvcKeyVault1\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault2\",\r\n \"name\": \"wftsvcKeyVault2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault3\",\r\n \"name\": \"wftsvcKeyVault3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault4\",\r\n \"name\": \"wftsvcKeyVault4\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault5\",\r\n \"name\": \"wftsvcKeyVault5\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault6\",\r\n \"name\": \"wftsvcKeyVault6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVaultAM\",\r\n \"name\": \"wftsvcKeyVaultAM\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016bnrg\",\r\n \"name\": \"zikaiwtest10122016bnrg\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016chrg\",\r\n \"name\": \"zikaiwtest10122016chrg\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016dmrg\",\r\n \"name\": \"zikaiwtest10122016dmrg\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016osrg\",\r\n \"name\": \"zikaiwtest10122016osrg\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016snrg\",\r\n \"name\": \"zikaiwtest10122016snrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016tyrg\",\r\n \"name\": \"zikaiwtest10122016tyrg\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 05:26:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14988" + ], + "x-ms-request-id": [ + "6ea9abe8-01ae-4c18-b698-698d376f0915" + ], + "x-ms-correlation-request-id": [ + "6ea9abe8-01ae-4c18-b698-698d376f0915" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170307T052628Z:6ea9abe8-01ae-4c18-b698-698d376f0915" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg/resources?$filter=resourceType%20eq%20'Microsoft.ServiceFabric%2Fclusters'&api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FhYWFhYWFhYWFhYWFyZy9yZXNvdXJjZXM/JGZpbHRlcj1yZXNvdXJjZVR5cGUlMjBlcSUyMCdNaWNyb3NvZnQuU2VydmljZUZhYnJpYyUyRmNsdXN0ZXJzJyZhcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4df574a2-c274-4259-8757-0bfb7aaa13f2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa\",\r\n \"name\": \"aaaaaaaaaaaaa\",\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaaaaaaaaaa\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 05:26:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-request-id": [ + "bd27d321-0577-46d3-9243-bddaf0a4c11f" + ], + "x-ms-correlation-request-id": [ + "bd27d321-0577-46d3-9243-bddaf0a4c11f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T052631Z:bd27d321-0577-46d3-9243-bddaf0a4c11f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FhYWFhYWFhYWFhYWFyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvYWFhYWFhYWFhYWFhYT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa\",\r\n \"name\": \"aaaaaaaaaaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaaaaaaaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636244362547166623\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaaaaaaaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"8888\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaaaaaaaaaa6877\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 05:26:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-request-id": [ + "d19effca-fd92-4ae3-9c21-80f7fcce6228" + ], + "x-ms-correlation-request-id": [ + "d19effca-fd92-4ae3-9c21-80f7fcce6228" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T052632Z:d19effca-fd92-4ae3-9c21-80f7fcce6228" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/donotexisting?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FhYWFhYWFhYWFhYWFyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvZG9ub3RleGlzdGluZz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.ServiceFabric/clusters/donotexisting' under resource group 'aaaaaaaaaaaaarg' was not found.\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 05:26:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "f074e6de-eb43-4e47-82f1-09150d7d2713" + ], + "x-ms-correlation-request-id": [ + "f074e6de-eb43-4e47-82f1-09150d7d2713" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T052632Z:f074e6de-eb43-4e47-82f1-09150d7d2713" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 404 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "b36cdf46-b75d-4dc2-9fe1-1296ee8c623d" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestList.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestList.json new file mode 100644 index 000000000000..08748421cb16 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestList.json @@ -0,0 +1,74 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/clusters?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9jbHVzdGVycz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/deployertest/providers/Microsoft.ServiceFabric/clusters/deployertest\",\r\n \"name\": \"deployertest\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"deployertest\"\r\n },\r\n \"etag\": \"W/\\\"636197629293638021\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"59e810a3-1644-47e2-86b5-a66e916c0bb8\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://deployertest.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/59e810a3-1644-47e2-86b5-a66e916c0bb8\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsdeployertest6267\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsdeployertest6267.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsdeployertest6267.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsdeployertest6267.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"deployer\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703010700/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703010700\",\r\n \"name\": \"abhaymtest1703010700\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703010700\"\r\n },\r\n \"etag\": \"W/\\\"636239485014229464\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6c448df9-f950-4466-b205-2bc89e7784e4\",\r\n \"clusterCodeVersion\": \"5.3.311.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703010700.westus2.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus2.servicefabric.azure.com/runtime/clusters/6c448df9-f950-4466-b205-2bc89e7784e4\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:01:00\",\r\n \"healthCheckStableDuration\": \"00:01:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"4kgfrfofem5ga2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://4kgfrfofem5ga2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://4kgfrfofem5ga2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://4kgfrfofem5ga2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703012245/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703012245\",\r\n \"name\": \"abhaymtest1703012245\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703012245\"\r\n },\r\n \"etag\": \"W/\\\"636240051835519823\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"55d5a53a-b95b-485d-ba92-74e823c1d86a\",\r\n \"clusterCodeVersion\": \"5.4.145.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703012245.westus2.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus2.servicefabric.azure.com/runtime/clusters/55d5a53a-b95b-485d-ba92-74e823c1d86a\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:01:00\",\r\n \"healthCheckStableDuration\": \"00:01:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"t5554vdvsr5ns2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://t5554vdvsr5ns2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://t5554vdvsr5ns2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://t5554vdvsr5ns2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703012344/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703012344\",\r\n \"name\": \"abhaymtest1703012344\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703012344\"\r\n },\r\n \"etag\": \"W/\\\"636240087043530260\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"1e93ce39-939b-4bd2-95d7-84977653c6b5\",\r\n \"clusterCodeVersion\": \"5.3.301.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703012344.westus2.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus2.servicefabric.azure.com/runtime/clusters/1e93ce39-939b-4bd2-95d7-84977653c6b5\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"6rtd6hemeobas2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://6rtd6hemeobas2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://6rtd6hemeobas2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://6rtd6hemeobas2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703061931/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703061931\",\r\n \"name\": \"abhaymtest1703061931\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703061931\"\r\n },\r\n \"etag\": \"W/\\\"636244255602049660\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8bf3f6ed-a780-49dc-927b-c5511fe21076\",\r\n \"clusterCodeVersion\": \"5.3.301.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703061931.westus2.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus2.servicefabric.azure.com/runtime/clusters/8bf3f6ed-a780-49dc-927b-c5511fe21076\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"amloc5ev2zcsa2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://amloc5ev2zcsa2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://amloc5ev2zcsa2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://amloc5ev2zcsa2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/wftsvc-mwh-20161203-012707281-v2/providers/Microsoft.ServiceFabric/clusters/wftsvc-mwh-20161203-\",\r\n \"name\": \"wftsvc-mwh-20161203-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"wftsvc-mwh-20161203-\"\r\n },\r\n \"etag\": \"W/\\\"636163252596227409\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"f7c0ff3b-0ff5-41df-8f0c-4e51f46bee79\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://wftsvc-mwh-20161203-012707281-v2.westus2.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus2.servicefabric.azure.com/runtime/clusters/f7c0ff3b-0ff5-41df-8f0c-4e51f46bee79\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagmwh20161203012707\",\r\n \"primaryAccessKey\": \"2+20fZYSmdfT8KUPCUu5UKXvHeLKTuFwqm3UBJCkmX42iKPqq9qLxc09cVx0Uolaw6s6HRUtIOm83uHMPSKEdg==\",\r\n \"secondaryAccessKey\": \"Mn8li9IXuNnQgfdTlFKR8eGW+HHKopQa7tSgKF4WlYemA2xWxbZCSV/toP4142FzQEg72HEH7q0AhTXDzDXHKg==\",\r\n \"blobEndpoint\": \"https://diagmwh20161203012707.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagmwh20161203012707.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagmwh20161203012707.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703062131/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703062131\",\r\n \"name\": \"abhaymtest1703062131\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703062131\"\r\n },\r\n \"etag\": \"W/\\\"636244327150066216\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"bc2e164d-009a-4b30-b302-ca9d72a4f92b\",\r\n \"clusterCodeVersion\": \"5.3.301.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703062131.westus2.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus2.servicefabric.azure.com/runtime/clusters/bc2e164d-009a-4b30-b302-ca9d72a4f92b\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"ghxpn355atby42\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://ghxpn355atby42.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://ghxpn355atby42.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://ghxpn355atby42.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703062345/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703062345\",\r\n \"name\": \"abhaymtest1703062345\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703062345\"\r\n },\r\n \"etag\": \"W/\\\"636244408062668480\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"aadc8f9d-4227-4b49-bc11-40cdaea69be0\",\r\n \"clusterCodeVersion\": \"5.3.301.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703062345.westus2.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus2.servicefabric.azure.com/runtime/clusters/aadc8f9d-4227-4b49-bc11-40cdaea69be0\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"vu4zfs2wvfiii2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://vu4zfs2wvfiii2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://vu4zfs2wvfiii2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://vu4zfs2wvfiii2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703020634/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703020634\",\r\n \"name\": \"abhaymtest1703020634\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703020634\"\r\n },\r\n \"etag\": \"W/\\\"636240332991515912\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"b2d6b6af-bf01-4dd0-ac4f-a08c1cbab55f\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"https://abhaymtest1703020634.eastus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://eastus.servicefabric.azure.com/runtime/clusters/b2d6b6af-bf01-4dd0-ac4f-a08c1cbab55f\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A13273F20693D4F64DF0A95F3AA2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"33j6ims7l56f22\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://33j6ims7l56f22.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://33j6ims7l56f22.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://33j6ims7l56f22.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703030726/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703030726\",\r\n \"name\": \"abhaymtest1703030726\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703030726\"\r\n },\r\n \"etag\": \"W/\\\"636241228239120742\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"64f138aa-2977-4be4-8d3f-1b96e38c06cb\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"https://abhaymtest1703030726.eastus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://eastus.servicefabric.azure.com/runtime/clusters/64f138aa-2977-4be4-8d3f-1b96e38c06cb\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A13273F20693D4F64DF0A95F3AA2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"kurweiopfpqkc2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://kurweiopfpqkc2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://kurweiopfpqkc2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://kurweiopfpqkc2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaytest04/providers/Microsoft.ServiceFabric/clusters/abhaytest04\",\r\n \"name\": \"abhaytest04\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaytest04\"\r\n },\r\n \"etag\": \"W/\\\"636240026373863680\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"82973fcb-619e-4ccb-b8bb-587b18ff9b1a\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"https://abhaytest04.eastus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://eastus.servicefabric.azure.com/runtime/clusters/82973fcb-619e-4ccb-b8bb-587b18ff9b1a\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A13273F20693AAF64DF0A95F3CC2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsabhaytest049097\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsabhaytest049097.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsabhaytest049097.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsabhaytest049097.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"eastus2\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/zikaiwtest10122016bnrg/providers/Microsoft.ServiceFabric/clusters/zikaiwtest10122016bn\",\r\n \"name\": \"zikaiwtest10122016bn\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"zikaiwtest10122016bn\"\r\n },\r\n \"etag\": \"W/\\\"636118908725516786\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"af8fac49-af05-4337-9857-51e956ced173\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://zikaiwtest10122016bn.eastus2.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://eastus2.servicefabric.azure.com/runtime/clusters/af8fac49-af05-4337-9857-51e956ced173\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogszikaiwtest10124216\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogszikaiwtest10124216.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogszikaiwtest10124216.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogszikaiwtest10124216.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"WF\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"centralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/zikaiwtest10122016dmrg/providers/Microsoft.ServiceFabric/clusters/zikaiwtest10122016dm\",\r\n \"name\": \"zikaiwtest10122016dm\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"zikaiwtest10122016dm\"\r\n },\r\n \"etag\": \"W/\\\"636118907464750682\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9c6943c7-ba3d-4fb1-ba68-20cff4513cdc\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://zikaiwtest10122016dm.centralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://centralus.servicefabric.azure.com/runtime/clusters/9c6943c7-ba3d-4fb1-ba68-20cff4513cdc\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogszikaiwtest10129205\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogszikaiwtest10129205.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogszikaiwtest10129205.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogszikaiwtest10129205.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"WF\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaytest01/providers/Microsoft.ServiceFabric/clusters/abhaytest01\",\r\n \"name\": \"abhaytest01\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaytest01\"\r\n },\r\n \"etag\": \"W/\\\"636239898702041573\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"5cb962f2-dc5b-48ce-b06a-7757b7c534db\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaytest01.westeurope.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westeurope.servicefabric.azure.com/runtime/clusters/5cb962f2-dc5b-48ce-b06a-7757b7c534db\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsabhaytest019318\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsabhaytest019318.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsabhaytest019318.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsabhaytest019318.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"northcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/zikaiwtest10122016chrg/providers/Microsoft.ServiceFabric/clusters/zikaiwtest10122016ch\",\r\n \"name\": \"zikaiwtest10122016ch\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"zikaiwtest10122016ch\"\r\n },\r\n \"etag\": \"W/\\\"636118910065246806\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"051b82cf-2bc6-4221-a727-17e0de1e4e51\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://zikaiwtest10122016ch.northcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://northcentralus.servicefabric.azure.com/runtime/clusters/051b82cf-2bc6-4221-a727-17e0de1e4e51\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogszikaiwtest10122415\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogszikaiwtest10122415.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogszikaiwtest10122415.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogszikaiwtest10122415.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"WF\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"eastasia\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/nsgtest03/providers/Microsoft.ServiceFabric/clusters/nsgtest03\",\r\n \"name\": \"nsgtest03\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"nsgtest03\"\r\n },\r\n \"etag\": \"W/\\\"636143605818331675\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"ac15585b-5d7b-4e82-8d1d-2d2ceab638a2\",\r\n \"clusterCodeVersion\": \"5.3.301.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://nsgtest03.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://eastasia.servicefabric.azure.com/runtime/clusters/ac15585b-5d7b-4e82-8d1d-2d2ceab638a2\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogs2idnfejoizlt22\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2idnfejoizlt22.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogs2idnfejoizlt22.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogs2idnfejoizlt22.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"GTVM\",\r\n \"placementProperties\": {\r\n \"gatewayAllowed\": \"true\",\r\n \"systemServicesAllowed\": \"false\",\r\n \"streamProcessorAllowed\": \"false\",\r\n \"requestManagerAllowed\": \"false\",\r\n \"provisioningAllowed\": \"true\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"eastasia\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/nsgtest05/providers/Microsoft.ServiceFabric/clusters/nsgtest05\",\r\n \"name\": \"nsgtest05\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"nsgtest05\"\r\n },\r\n \"etag\": \"W/\\\"636144047518201703\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"c09d10e6-8cc9-40bf-88dd-246acdde5ea7\",\r\n \"clusterCodeVersion\": \"5.3.301.9590\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://nsgtest05.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://eastasia.servicefabric.azure.com/runtime/clusters/c09d10e6-8cc9-40bf-88dd-246acdde5ea7\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsz4fwhlzushoes2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsz4fwhlzushoes2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsz4fwhlzushoes2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsz4fwhlzushoes2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"GTVM\",\r\n \"placementProperties\": {\r\n \"gatewayAllowed\": \"true\",\r\n \"systemServicesAllowed\": \"false\",\r\n \"streamProcessorAllowed\": \"false\",\r\n \"requestManagerAllowed\": \"false\",\r\n \"provisioningAllowed\": \"true\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"japanwest\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/zikaiwtest10122016osrg/providers/Microsoft.ServiceFabric/clusters/zikaiwtest10122016os\",\r\n \"name\": \"zikaiwtest10122016os\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"zikaiwtest10122016os\"\r\n },\r\n \"etag\": \"W/\\\"636118914810023720\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"480f787d-ebfe-45b1-b9f0-917f21682d14\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://zikaiwtest10122016os.japanwest.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westjapan.servicefabric.azure.com/runtime/clusters/480f787d-ebfe-45b1-b9f0-917f21682d14\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogszikaiwtest10127306\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogszikaiwtest10127306.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogszikaiwtest10127306.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogszikaiwtest10127306.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"WF\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/zikaiwtest10122016tyrg/providers/Microsoft.ServiceFabric/clusters/zikaiwtest10122016ty\",\r\n \"name\": \"zikaiwtest10122016ty\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"zikaiwtest10122016ty\"\r\n },\r\n \"etag\": \"W/\\\"636118913413046187\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"a356a1d5-ed4f-4cdd-9b28-ee40b79ea34a\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://zikaiwtest10122016ty.japaneast.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://eastjapan.servicefabric.azure.com/runtime/clusters/a356a1d5-ed4f-4cdd-9b28-ee40b79ea34a\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogszikaiwtest10126623\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogszikaiwtest10126623.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogszikaiwtest10126623.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogszikaiwtest10126623.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"WF\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southindia\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/wftsvc-ma-20161202-222619667-v2/providers/Microsoft.ServiceFabric/clusters/wftsvc-ma-20161202-2\",\r\n \"name\": \"wftsvc-ma-20161202-2\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"wftsvc-ma-20161202-2\"\r\n },\r\n \"etag\": \"W/\\\"636163144488368065\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"a15ba6be-2e5e-49e7-8457-f6aeb88247ed\",\r\n \"clusterCodeVersion\": \"5.3.311.9590\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://wftsvc-ma-20161202-222619667-v2.southindia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://southindia.servicefabric.azure.com/runtime/clusters/a15ba6be-2e5e-49e7-8457-f6aeb88247ed\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagma20161202222619\",\r\n \"primaryAccessKey\": \"PEAjtqu51MYL4t9NIWC8f3MTfbyq8WCbFv0cyCNlFVMbfoAfwji5hLDiHxsSWmuBm4tSGIqMfjh2IiaecPWWsA==\",\r\n \"secondaryAccessKey\": \"W83Lr6FzTGZRjXyf3ETJayV17jJE5rfBJ3z+rDh9fdNkKUywV2+8/UF356HQZ2VuD9EXfyNAJ+6AAKRDUtibGw==\",\r\n \"blobEndpoint\": \"https://diagma20161202222619.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagma20161202222619.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagma20161202222619.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southindia\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/wftsvc-ma-20161216-222607320-v2/providers/Microsoft.ServiceFabric/clusters/wftsvc-ma-20161216-2\",\r\n \"name\": \"wftsvc-ma-20161216-2\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"wftsvc-ma-20161216-2\"\r\n },\r\n \"etag\": \"W/\\\"636175240100424900\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"d36dc919-f90b-488a-a637-692c60c313e2\",\r\n \"clusterCodeVersion\": \"5.4.145.9494\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://wftsvc-ma-20161216-222607320-v2.southindia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://southindia.servicefabric.azure.com/runtime/clusters/d36dc919-f90b-488a-a637-692c60c313e2\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagma20161216222607\",\r\n \"primaryAccessKey\": \"Q52vgLTLo8AOja6ZcB96IcREKV5xpkLtH8kRktYvVcBCkzczgBedbbhWswiNuL7lTtrAm/5UuRdxMb5a8muEEw==\",\r\n \"secondaryAccessKey\": \"pyFssc4UxbdxTfWkawgcROdk61Bs+JT3WL0bOw7+DGzK8oztR3nR9djzq0zS9klq4DTukat9LADN5jMU/bYK1w==\",\r\n \"blobEndpoint\": \"https://diagma20161216222607.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagma20161216222607.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagma20161216222607.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"brazilsouth\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/bztest-rg/providers/Microsoft.ServiceFabric/clusters/bztest\",\r\n \"name\": \"bztest\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"bztest\"\r\n },\r\n \"etag\": \"W/\\\"636058476587798244\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"cece147a-0b32-4390-beb6-e497934165d5\",\r\n \"clusterCodeVersion\": \"5.1.163.9590\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://bztest.brazilsouth.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://southbrazil.servicefabric.azure.com/runtime/clusters/cece147a-0b32-4390-beb6-e497934165d5\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsbztest2340\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsbztest2340.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsbztest2340.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsbztest2340.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"FE\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.1.163.9590\",\r\n \"supportExpiryUtc\": \"2017-01-20T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.121.9494\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"canadacentral\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/wftsvc-yt-20161026-012057297-v2/providers/Microsoft.ServiceFabric/clusters/wftsvc-yt-20161026-0\",\r\n \"name\": \"wftsvc-yt-20161026-0\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"wftsvc-yt-20161026-0\"\r\n },\r\n \"etag\": \"W/\\\"636130416957754817\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"254ef458-b578-4f77-b03c-71ef13d0c1bf\",\r\n \"clusterCodeVersion\": \"5.3.301.9590\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://wftsvc-yt-20161026-012057297-v2.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://centralcanada.servicefabric.azure.com/runtime/clusters/254ef458-b578-4f77-b03c-71ef13d0c1bf\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagyt20161026012057\",\r\n \"primaryAccessKey\": \"F9RVqgSqMSvC4/YB9OlHQh7dlUCit4LqE+8loPVfMDcE0aT5h+LP+Iwjq5N/KIVrr9Rz+xcBvIRnqj7o6eBXdg==\",\r\n \"secondaryAccessKey\": \"3prsh7JbxEjsKeuerXA67KI3d69x3l9xxZWTOCgTRkYKVVkZhzGsp3ctolBW4hW93tbz0JFOmYP9qWcv+syvGg==\",\r\n \"blobEndpoint\": \"https://diagyt20161026012057.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagyt20161026012057.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagyt20161026012057.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"canadacentral\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/wftsvc-yt-20161210-012552629-v2/providers/Microsoft.ServiceFabric/clusters/wftsvc-yt-20161210-0\",\r\n \"name\": \"wftsvc-yt-20161210-0\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"wftsvc-yt-20161210-0\"\r\n },\r\n \"etag\": \"W/\\\"636169300125211270\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"323f6f5a-e494-42de-af90-8c3fcaa041aa\",\r\n \"clusterCodeVersion\": \"5.4.145.9494\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://wftsvc-yt-20161210-012552629-v2.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://centralcanada.servicefabric.azure.com/runtime/clusters/323f6f5a-e494-42de-af90-8c3fcaa041aa\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagyt20161210012552\",\r\n \"primaryAccessKey\": \"HAp7JviOdhbBA4Hp4jpBUVQJ/6VVv2TTnAB7PnG+cVQbuV7K/8CvlMblKSzOnK6hiEI3ufsuoGVxXYEUxWhhAQ==\",\r\n \"secondaryAccessKey\": \"Kr5RgIxa2isAX/+Z5k+F0O7UhH3ORIBXARXroXVzPj6ByGBnXfZLhU6dmguokb4WGbXDoCIOm+EHprEZsrUhEw==\",\r\n \"blobEndpoint\": \"https://diagyt20161210012552.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagyt20161210012552.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagyt20161210012552.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"canadacentral\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/wftsvc-yt-20161221-012942018-v2/providers/Microsoft.ServiceFabric/clusters/wftsvc-yt-20161221-0\",\r\n \"name\": \"wftsvc-yt-20161221-0\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"wftsvc-yt-20161221-0\"\r\n },\r\n \"etag\": \"W/\\\"636178806211614120\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9286266b-50b7-46d3-8dcb-86b0189a1851\",\r\n \"clusterCodeVersion\": \"5.4.145.9494\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://wftsvc-yt-20161221-012942018-v2.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://centralcanada.servicefabric.azure.com/runtime/clusters/9286266b-50b7-46d3-8dcb-86b0189a1851\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagyt20161221012942\",\r\n \"primaryAccessKey\": \"AZWNWBkgJl+GBrTxH8TvJLd5lfbhIjZWslBaCgS2iH7n7tR4N7Xy1y/9RNr3mQ1+hFV86sxn9+XSGiruGejTpQ==\",\r\n \"secondaryAccessKey\": \"vPlVaIqF5u660R4dHBSuM+EdLJ6ADeQVxv2wEbAHBAuhKTQC9F9RhH0nuTVCN1oPH8avk3mZkGRKTNwl7Z7DGQ==\",\r\n \"blobEndpoint\": \"https://diagyt20161221012942.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagyt20161221012942.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagyt20161221012942.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"canadaeast\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/wftsvc-yq-20161201-012845413-v2/providers/Microsoft.ServiceFabric/clusters/wftsvc-yq-20161201-0\",\r\n \"name\": \"wftsvc-yq-20161201-0\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"wftsvc-yq-20161201-0\"\r\n },\r\n \"etag\": \"W/\\\"636161525689267021\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"99714df5-ce9b-4959-a4ee-f6c22f2713bd\",\r\n \"clusterCodeVersion\": \"5.3.301.9590\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://wftsvc-yq-20161201-012845413-v2.canadaeast.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://eastcanada.servicefabric.azure.com/runtime/clusters/99714df5-ce9b-4959-a4ee-f6c22f2713bd\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagyq20161201012845\",\r\n \"primaryAccessKey\": \"QPnyOiZwptIClQQjVU0MwL/kzunj6LGuW6u3D5c4aTbyYIyfkvw2M/RsNZAmVMgDOUb9/ppmlGYXe4hBzMG6oQ==\",\r\n \"secondaryAccessKey\": \"YB2q32M0lHy5mMUASGTr/PaM4FkpH8iKeqBGUiz1lw8wsR7T8NUdPNkKQi+LnbMFwkS2NNI8v5/zvXiXKoW1yw==\",\r\n \"blobEndpoint\": \"https://diagyq20161201012845.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagyq20161201012845.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagyq20161201012845.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa\",\r\n \"name\": \"aaaaaaaaaaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaaaaaaaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636244362547166622\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaaaaaaaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"8888\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaaaaaaaaaa6877\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1702250539/providers/Microsoft.ServiceFabric/clusters/abhaymtest1702250539\",\r\n \"name\": \"abhaymtest1702250539\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1702250539\"\r\n },\r\n \"etag\": \"W/\\\"636235980414159804\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6cd0affa-4be5-4bce-84fe-2301b19bd9f9\",\r\n \"clusterCodeVersion\": \"5.5.201.0\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"http://abhaymtest1702250539.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/6cd0affa-4be5-4bce-84fe-2301b19bd9f9\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"nwfsb4vkiahws2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://nwfsb4vkiahws2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://nwfsb4vkiahws2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://nwfsb4vkiahws2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1702251613/providers/Microsoft.ServiceFabric/clusters/abhaymtest1702251613\",\r\n \"name\": \"abhaymtest1702251613\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1702251613\"\r\n },\r\n \"etag\": \"W/\\\"636236360610819115\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"60b8eaa4-751f-4945-ba89-aff2d85be72a\",\r\n \"clusterCodeVersion\": \"5.5.201.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1702251613.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/60b8eaa4-751f-4945-ba89-aff2d85be72a\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"6sd5awwmol7yy2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://6sd5awwmol7yy2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://6sd5awwmol7yy2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://6sd5awwmol7yy2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sdktestrg2/providers/Microsoft.ServiceFabric/clusters/sdktest\",\r\n \"name\": \"sdktest\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sdktest\"\r\n },\r\n \"etag\": \"W/\\\"636244182147134128\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8d566293-3508-4d62-ba7b-056fa710c3c9\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8d566293-3508-4d62-ba7b-056fa710c3c9\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000000\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogssdktest5486\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogssdktest5486.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogssdktest5486.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogssdktest5486.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testCreaterg/providers/Microsoft.ServiceFabric/clusters/testCreateCluster\",\r\n \"name\": \"testCreateCluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636244261869715147\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"7ad66ff6-062b-41a1-8f96-c32b222e3e5e\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/7ad66ff6-062b-41a1-8f96-c32b222e3e5e\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testCreaterg1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636244595927345289\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"ed4fa900-6c59-430b-b807-2e440ac20456\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/ed4fa900-6c59-430b-b807-2e440ac20456\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 05:04:16 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-original-request-ids": [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14990" + ], + "x-ms-request-id": [ + "d0169cdf-c074-4e9e-a066-c844b8da6cc1" + ], + "x-ms-correlation-request-id": [ + "d0169cdf-c074-4e9e-a066-c844b8da6cc1" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T050416Z:d0169cdf-c074-4e9e-a066-c844b8da6cc1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "b36cdf46-b75d-4dc2-9fe1-1296ee8c623d" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestListByResourceGroup.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestListByResourceGroup.json new file mode 100644 index 000000000000..9db62f8c05dd --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestListByResourceGroup.json @@ -0,0 +1,177 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bc4885f2-b566-4fb9-b867-f5564ffd0a0a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg\",\r\n \"name\": \"aaaaaaaaaaaaarg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1702250539\",\r\n \"name\": \"abhaymtest1702250539\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1702251613\",\r\n \"name\": \"abhaymtest1702251613\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703010700\",\r\n \"name\": \"abhaymtest1703010700\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703012245\",\r\n \"name\": \"abhaymtest1703012245\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703012344\",\r\n \"name\": \"abhaymtest1703012344\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703020617\",\r\n \"name\": \"abhaymtest1703020617\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703020618\",\r\n \"name\": \"abhaymtest1703020618\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703020634\",\r\n \"name\": \"abhaymtest1703020634\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703030726\",\r\n \"name\": \"abhaymtest1703030726\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703061931\",\r\n \"name\": \"abhaymtest1703061931\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703062131\",\r\n \"name\": \"abhaymtest1703062131\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703062345\",\r\n \"name\": \"abhaymtest1703062345\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayreverseproxy02\",\r\n \"name\": \"abhayreverseproxy02\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest01\",\r\n \"name\": \"abhaytest01\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest04\",\r\n \"name\": \"abhaytest04\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayvm02\",\r\n \"name\": \"abhayvm02\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayvm03\",\r\n \"name\": \"abhayvm03\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/anmolprvbuild03\",\r\n \"name\": \"anmolprvbuild03\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/bztest-rg\",\r\n \"name\": \"bztest-rg\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/Default-ServiceBus-9653\",\r\n \"name\": \"Default-ServiceBus-9653\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/deployertest\",\r\n \"name\": \"deployertest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/dotnetsdkrg\",\r\n \"name\": \"dotnetsdkrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/nsgtest03\",\r\n \"name\": \"nsgtest03\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/nsgtest05\",\r\n \"name\": \"nsgtest05\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklinuxtest01\",\r\n \"name\": \"sdklinuxtest01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestrg2\",\r\n \"name\": \"sdktestrg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/SecureBaseImage\",\r\n \"name\": \"SecureBaseImage\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg\",\r\n \"name\": \"testCreaterg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1\",\r\n \"name\": \"testCreaterg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testsdkdnetrestrg\",\r\n \"name\": \"testsdkdnetrestrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-202955140-v2\",\r\n \"name\": \"wftsvc-bm-20161024-202955140-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-210350686-v2\",\r\n \"name\": \"wftsvc-bm-20161024-210350686-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-210948818-v2\",\r\n \"name\": \"wftsvc-bm-20161024-210948818-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161025-012157409-v2\",\r\n \"name\": \"wftsvc-bm-20161025-012157409-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161026-012217543-v2\",\r\n \"name\": \"wftsvc-bm-20161026-012217543-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161028-014354355-v2\",\r\n \"name\": \"wftsvc-bm-20161028-014354355-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161029-012553441-v2\",\r\n \"name\": \"wftsvc-bm-20161029-012553441-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161030-012137041-v2\",\r\n \"name\": \"wftsvc-bm-20161030-012137041-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161031-012217322-v2\",\r\n \"name\": \"wftsvc-bm-20161031-012217322-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161101-012812361-v2\",\r\n \"name\": \"wftsvc-bm-20161101-012812361-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161102-044018564-v2\",\r\n \"name\": \"wftsvc-bm-20161102-044018564-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161115-012828172-v2\",\r\n \"name\": \"wftsvc-bm-20161115-012828172-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161116-012248545-v2\",\r\n \"name\": \"wftsvc-bm-20161116-012248545-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161117-013025621-v2\",\r\n \"name\": \"wftsvc-bm-20161117-013025621-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161118-162552118-v2\",\r\n \"name\": \"wftsvc-bm-20161118-162552118-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161119-020853683-v2\",\r\n \"name\": \"wftsvc-bm-20161119-020853683-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161120-015112327-v2\",\r\n \"name\": \"wftsvc-bm-20161120-015112327-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161121-013411054-v2\",\r\n \"name\": \"wftsvc-bm-20161121-013411054-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161122-014033729-v2\",\r\n \"name\": \"wftsvc-bm-20161122-014033729-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161123-020328423-v2\",\r\n \"name\": \"wftsvc-bm-20161123-020328423-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161124-013118943-v2\",\r\n \"name\": \"wftsvc-bm-20161124-013118943-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161125-012512715-v2\",\r\n \"name\": \"wftsvc-bm-20161125-012512715-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161126-012537693-v2\",\r\n \"name\": \"wftsvc-bm-20161126-012537693-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161127-012554430-v2\",\r\n \"name\": \"wftsvc-bm-20161127-012554430-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161128-012517911-v2\",\r\n \"name\": \"wftsvc-bm-20161128-012517911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161129-012602111-v2\",\r\n \"name\": \"wftsvc-bm-20161129-012602111-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161130-022145798-v2\",\r\n \"name\": \"wftsvc-bm-20161130-022145798-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161201-014317317-v2\",\r\n \"name\": \"wftsvc-bm-20161201-014317317-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161202-012812276-v2\",\r\n \"name\": \"wftsvc-bm-20161202-012812276-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161203-012713277-v2\",\r\n \"name\": \"wftsvc-bm-20161203-012713277-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161206-025602238-v2\",\r\n \"name\": \"wftsvc-bm-20161206-025602238-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161207-012657615-v2\",\r\n \"name\": \"wftsvc-bm-20161207-012657615-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161208-024401245-v2\",\r\n \"name\": \"wftsvc-bm-20161208-024401245-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161209-012721060-v2\",\r\n \"name\": \"wftsvc-bm-20161209-012721060-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161210-012529259-v2\",\r\n \"name\": \"wftsvc-bm-20161210-012529259-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161211-012543460-v2\",\r\n \"name\": \"wftsvc-bm-20161211-012543460-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161212-012643580-v2\",\r\n \"name\": \"wftsvc-bm-20161212-012643580-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161213-135747390-v2\",\r\n \"name\": \"wftsvc-bm-20161213-135747390-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161214-020204911-v2\",\r\n \"name\": \"wftsvc-bm-20161214-020204911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161215-012912635-v2\",\r\n \"name\": \"wftsvc-bm-20161215-012912635-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161216-014118622-v2\",\r\n \"name\": \"wftsvc-bm-20161216-014118622-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161217-013027250-v2\",\r\n \"name\": \"wftsvc-bm-20161217-013027250-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161218-042923602-v2\",\r\n \"name\": \"wftsvc-bm-20161218-042923602-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161219-024910832-v2\",\r\n \"name\": \"wftsvc-bm-20161219-024910832-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161220-021526028-v2\",\r\n \"name\": \"wftsvc-bm-20161220-021526028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161221-014332493-v2\",\r\n \"name\": \"wftsvc-bm-20161221-014332493-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161222-190424958-v2\",\r\n \"name\": \"wftsvc-bm-20161222-190424958-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161223-020219887-v2\",\r\n \"name\": \"wftsvc-bm-20161223-020219887-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161224-012754028-v2\",\r\n \"name\": \"wftsvc-bm-20161224-012754028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161225-012413900-v2\",\r\n \"name\": \"wftsvc-bm-20161225-012413900-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161226-012537497-v2\",\r\n \"name\": \"wftsvc-bm-20161226-012537497-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161227-012619489-v2\",\r\n \"name\": \"wftsvc-bm-20161227-012619489-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161228-012627978-v2\",\r\n \"name\": \"wftsvc-bm-20161228-012627978-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161229-013147614-v2\",\r\n \"name\": \"wftsvc-bm-20161229-013147614-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161230-012714627-v2\",\r\n \"name\": \"wftsvc-bm-20161230-012714627-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-ma-20161202-222619667-v2\",\r\n \"name\": \"wftsvc-ma-20161202-222619667-v2\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-ma-20161216-222607320-v2\",\r\n \"name\": \"wftsvc-ma-20161216-222607320-v2\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-mwh-20161203-012707281-v2\",\r\n \"name\": \"wftsvc-mwh-20161203-012707281-v2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-sn-20161129-211521656-v2\",\r\n \"name\": \"wftsvc-sn-20161129-211521656-v2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-sn-20161129-211525592-v2\",\r\n \"name\": \"wftsvc-sn-20161129-211525592-v2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yq-20161201-012845413-v2\",\r\n \"name\": \"wftsvc-yq-20161201-012845413-v2\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161026-012057297-v2\",\r\n \"name\": \"wftsvc-yt-20161026-012057297-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161210-012552629-v2\",\r\n \"name\": \"wftsvc-yt-20161210-012552629-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161221-012942018-v2\",\r\n \"name\": \"wftsvc-yt-20161221-012942018-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault1\",\r\n \"name\": \"wftsvcKeyVault1\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault2\",\r\n \"name\": \"wftsvcKeyVault2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault3\",\r\n \"name\": \"wftsvcKeyVault3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault4\",\r\n \"name\": \"wftsvcKeyVault4\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault5\",\r\n \"name\": \"wftsvcKeyVault5\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault6\",\r\n \"name\": \"wftsvcKeyVault6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVaultAM\",\r\n \"name\": \"wftsvcKeyVaultAM\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016bnrg\",\r\n \"name\": \"zikaiwtest10122016bnrg\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016chrg\",\r\n \"name\": \"zikaiwtest10122016chrg\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016dmrg\",\r\n \"name\": \"zikaiwtest10122016dmrg\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016osrg\",\r\n \"name\": \"zikaiwtest10122016osrg\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016snrg\",\r\n \"name\": \"zikaiwtest10122016snrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016tyrg\",\r\n \"name\": \"zikaiwtest10122016tyrg\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 05:16:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14987" + ], + "x-ms-request-id": [ + "d166a354-d528-4646-a773-955e21c7b70d" + ], + "x-ms-correlation-request-id": [ + "d166a354-d528-4646-a773-955e21c7b70d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T051601Z:d166a354-d528-4646-a773-955e21c7b70d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg/resources?$filter=resourceType%20eq%20'Microsoft.ServiceFabric%2Fclusters'&api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FhYWFhYWFhYWFhYWFyZy9yZXNvdXJjZXM/JGZpbHRlcj1yZXNvdXJjZVR5cGUlMjBlcSUyMCdNaWNyb3NvZnQuU2VydmljZUZhYnJpYyUyRmNsdXN0ZXJzJyZhcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f7041ee8-d546-4298-851f-fd2dcb5ecef2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa\",\r\n \"name\": \"aaaaaaaaaaaaa\",\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaaaaaaaaaa\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 05:16:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-request-id": [ + "c881b029-9fbe-4895-bb18-7470da775615" + ], + "x-ms-correlation-request-id": [ + "c881b029-9fbe-4895-bb18-7470da775615" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T051602Z:c881b029-9fbe-4895-bb18-7470da775615" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzL2FhYWFhYWFhYWFhYWFyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa\",\r\n \"name\": \"aaaaaaaaaaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaaaaaaaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636244362547166622\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaaaaaaaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"8888\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaaaaaaaaaa6877\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 05:16:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "ffb6e8b2-89eb-4a8a-99ab-78ff5aa83b95" + ], + "x-ms-correlation-request-id": [ + "ffb6e8b2-89eb-4a8a-99ab-78ff5aa83b95" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T051603Z:ffb6e8b2-89eb-4a8a-99ab-78ff5aa83b95" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "b36cdf46-b75d-4dc2-9fe1-1296ee8c623d" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestUpdateClusterResource/TestUpdate.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestUpdateClusterResource/TestUpdate.json new file mode 100644 index 000000000000..e3c7df769d5f --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestUpdateClusterResource/TestUpdate.json @@ -0,0 +1,300 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "81d742f4-560b-401b-907c-0750f69c65ba" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg\",\r\n \"name\": \"aaaaaaaaaaaaarg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1702250539\",\r\n \"name\": \"abhaymtest1702250539\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1702251613\",\r\n \"name\": \"abhaymtest1702251613\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703010700\",\r\n \"name\": \"abhaymtest1703010700\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703012245\",\r\n \"name\": \"abhaymtest1703012245\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703012344\",\r\n \"name\": \"abhaymtest1703012344\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703020617\",\r\n \"name\": \"abhaymtest1703020617\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703020618\",\r\n \"name\": \"abhaymtest1703020618\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703020634\",\r\n \"name\": \"abhaymtest1703020634\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703030726\",\r\n \"name\": \"abhaymtest1703030726\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703061931\",\r\n \"name\": \"abhaymtest1703061931\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703062131\",\r\n \"name\": \"abhaymtest1703062131\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703062345\",\r\n \"name\": \"abhaymtest1703062345\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayreverseproxy02\",\r\n \"name\": \"abhayreverseproxy02\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest01\",\r\n \"name\": \"abhaytest01\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest04\",\r\n \"name\": \"abhaytest04\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayvm02\",\r\n \"name\": \"abhayvm02\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayvm03\",\r\n \"name\": \"abhayvm03\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/anmolprvbuild03\",\r\n \"name\": \"anmolprvbuild03\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/bztest-rg\",\r\n \"name\": \"bztest-rg\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/Default-ServiceBus-9653\",\r\n \"name\": \"Default-ServiceBus-9653\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/deployertest\",\r\n \"name\": \"deployertest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/dotnetsdkrg\",\r\n \"name\": \"dotnetsdkrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/nsgtest03\",\r\n \"name\": \"nsgtest03\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/nsgtest05\",\r\n \"name\": \"nsgtest05\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklinuxtest01\",\r\n \"name\": \"sdklinuxtest01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestrg2\",\r\n \"name\": \"sdktestrg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/SecureBaseImage\",\r\n \"name\": \"SecureBaseImage\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg\",\r\n \"name\": \"testCreaterg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1\",\r\n \"name\": \"testCreaterg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testsdkdnetrestrg\",\r\n \"name\": \"testsdkdnetrestrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-202955140-v2\",\r\n \"name\": \"wftsvc-bm-20161024-202955140-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-210350686-v2\",\r\n \"name\": \"wftsvc-bm-20161024-210350686-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-210948818-v2\",\r\n \"name\": \"wftsvc-bm-20161024-210948818-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161025-012157409-v2\",\r\n \"name\": \"wftsvc-bm-20161025-012157409-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161026-012217543-v2\",\r\n \"name\": \"wftsvc-bm-20161026-012217543-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161028-014354355-v2\",\r\n \"name\": \"wftsvc-bm-20161028-014354355-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161029-012553441-v2\",\r\n \"name\": \"wftsvc-bm-20161029-012553441-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161030-012137041-v2\",\r\n \"name\": \"wftsvc-bm-20161030-012137041-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161031-012217322-v2\",\r\n \"name\": \"wftsvc-bm-20161031-012217322-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161101-012812361-v2\",\r\n \"name\": \"wftsvc-bm-20161101-012812361-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161102-044018564-v2\",\r\n \"name\": \"wftsvc-bm-20161102-044018564-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161115-012828172-v2\",\r\n \"name\": \"wftsvc-bm-20161115-012828172-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161116-012248545-v2\",\r\n \"name\": \"wftsvc-bm-20161116-012248545-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161117-013025621-v2\",\r\n \"name\": \"wftsvc-bm-20161117-013025621-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161118-162552118-v2\",\r\n \"name\": \"wftsvc-bm-20161118-162552118-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161119-020853683-v2\",\r\n \"name\": \"wftsvc-bm-20161119-020853683-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161120-015112327-v2\",\r\n \"name\": \"wftsvc-bm-20161120-015112327-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161121-013411054-v2\",\r\n \"name\": \"wftsvc-bm-20161121-013411054-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161122-014033729-v2\",\r\n \"name\": \"wftsvc-bm-20161122-014033729-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161123-020328423-v2\",\r\n \"name\": \"wftsvc-bm-20161123-020328423-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161124-013118943-v2\",\r\n \"name\": \"wftsvc-bm-20161124-013118943-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161125-012512715-v2\",\r\n \"name\": \"wftsvc-bm-20161125-012512715-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161126-012537693-v2\",\r\n \"name\": \"wftsvc-bm-20161126-012537693-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161127-012554430-v2\",\r\n \"name\": \"wftsvc-bm-20161127-012554430-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161128-012517911-v2\",\r\n \"name\": \"wftsvc-bm-20161128-012517911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161129-012602111-v2\",\r\n \"name\": \"wftsvc-bm-20161129-012602111-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161130-022145798-v2\",\r\n \"name\": \"wftsvc-bm-20161130-022145798-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161201-014317317-v2\",\r\n \"name\": \"wftsvc-bm-20161201-014317317-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161202-012812276-v2\",\r\n \"name\": \"wftsvc-bm-20161202-012812276-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161203-012713277-v2\",\r\n \"name\": \"wftsvc-bm-20161203-012713277-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161206-025602238-v2\",\r\n \"name\": \"wftsvc-bm-20161206-025602238-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161207-012657615-v2\",\r\n \"name\": \"wftsvc-bm-20161207-012657615-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161208-024401245-v2\",\r\n \"name\": \"wftsvc-bm-20161208-024401245-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161209-012721060-v2\",\r\n \"name\": \"wftsvc-bm-20161209-012721060-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161210-012529259-v2\",\r\n \"name\": \"wftsvc-bm-20161210-012529259-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161211-012543460-v2\",\r\n \"name\": \"wftsvc-bm-20161211-012543460-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161212-012643580-v2\",\r\n \"name\": \"wftsvc-bm-20161212-012643580-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161213-135747390-v2\",\r\n \"name\": \"wftsvc-bm-20161213-135747390-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161214-020204911-v2\",\r\n \"name\": \"wftsvc-bm-20161214-020204911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161215-012912635-v2\",\r\n \"name\": \"wftsvc-bm-20161215-012912635-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161216-014118622-v2\",\r\n \"name\": \"wftsvc-bm-20161216-014118622-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161217-013027250-v2\",\r\n \"name\": \"wftsvc-bm-20161217-013027250-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161218-042923602-v2\",\r\n \"name\": \"wftsvc-bm-20161218-042923602-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161219-024910832-v2\",\r\n \"name\": \"wftsvc-bm-20161219-024910832-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161220-021526028-v2\",\r\n \"name\": \"wftsvc-bm-20161220-021526028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161221-014332493-v2\",\r\n \"name\": \"wftsvc-bm-20161221-014332493-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161222-190424958-v2\",\r\n \"name\": \"wftsvc-bm-20161222-190424958-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161223-020219887-v2\",\r\n \"name\": \"wftsvc-bm-20161223-020219887-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161224-012754028-v2\",\r\n \"name\": \"wftsvc-bm-20161224-012754028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161225-012413900-v2\",\r\n \"name\": \"wftsvc-bm-20161225-012413900-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161226-012537497-v2\",\r\n \"name\": \"wftsvc-bm-20161226-012537497-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161227-012619489-v2\",\r\n \"name\": \"wftsvc-bm-20161227-012619489-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161228-012627978-v2\",\r\n \"name\": \"wftsvc-bm-20161228-012627978-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161229-013147614-v2\",\r\n \"name\": \"wftsvc-bm-20161229-013147614-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161230-012714627-v2\",\r\n \"name\": \"wftsvc-bm-20161230-012714627-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-ma-20161202-222619667-v2\",\r\n \"name\": \"wftsvc-ma-20161202-222619667-v2\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-ma-20161216-222607320-v2\",\r\n \"name\": \"wftsvc-ma-20161216-222607320-v2\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-mwh-20161203-012707281-v2\",\r\n \"name\": \"wftsvc-mwh-20161203-012707281-v2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-sn-20161129-211521656-v2\",\r\n \"name\": \"wftsvc-sn-20161129-211521656-v2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-sn-20161129-211525592-v2\",\r\n \"name\": \"wftsvc-sn-20161129-211525592-v2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yq-20161201-012845413-v2\",\r\n \"name\": \"wftsvc-yq-20161201-012845413-v2\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161026-012057297-v2\",\r\n \"name\": \"wftsvc-yt-20161026-012057297-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161210-012552629-v2\",\r\n \"name\": \"wftsvc-yt-20161210-012552629-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161221-012942018-v2\",\r\n \"name\": \"wftsvc-yt-20161221-012942018-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault1\",\r\n \"name\": \"wftsvcKeyVault1\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault2\",\r\n \"name\": \"wftsvcKeyVault2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault3\",\r\n \"name\": \"wftsvcKeyVault3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault4\",\r\n \"name\": \"wftsvcKeyVault4\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault5\",\r\n \"name\": \"wftsvcKeyVault5\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault6\",\r\n \"name\": \"wftsvcKeyVault6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVaultAM\",\r\n \"name\": \"wftsvcKeyVaultAM\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016bnrg\",\r\n \"name\": \"zikaiwtest10122016bnrg\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016chrg\",\r\n \"name\": \"zikaiwtest10122016chrg\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016dmrg\",\r\n \"name\": \"zikaiwtest10122016dmrg\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016osrg\",\r\n \"name\": \"zikaiwtest10122016osrg\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016snrg\",\r\n \"name\": \"zikaiwtest10122016snrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016tyrg\",\r\n \"name\": \"zikaiwtest10122016tyrg\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 05:17:22 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14977" + ], + "x-ms-request-id": [ + "469ccb68-8900-46b7-95de-e9af6ff90287" + ], + "x-ms-correlation-request-id": [ + "469ccb68-8900-46b7-95de-e9af6ff90287" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T051722Z:469ccb68-8900-46b7-95de-e9af6ff90287" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg/resources?$filter=resourceType%20eq%20'Microsoft.ServiceFabric%2Fclusters'&api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FhYWFhYWFhYWFhYWFyZy9yZXNvdXJjZXM/JGZpbHRlcj1yZXNvdXJjZVR5cGUlMjBlcSUyMCdNaWNyb3NvZnQuU2VydmljZUZhYnJpYyUyRmNsdXN0ZXJzJyZhcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "10285681-4aab-4dd2-a711-a71b6143c85c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa\",\r\n \"name\": \"aaaaaaaaaaaaa\",\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaaaaaaaaaa\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 05:17:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-request-id": [ + "daa63793-1a6f-4c7c-83f9-57c4043c47c3" + ], + "x-ms-correlation-request-id": [ + "daa63793-1a6f-4c7c-83f9-57c4043c47c3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T051724Z:daa63793-1a6f-4c7c-83f9-57c4043c47c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FhYWFhYWFhYWFhYWFyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvYWFhYWFhYWFhYWFhYT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa\",\r\n \"name\": \"aaaaaaaaaaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaaaaaaaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636244362547166622\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaaaaaaaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"8888\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaaaaaaaaaa6877\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 05:17:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14985" + ], + "x-ms-request-id": [ + "328deb42-db9d-4180-a28a-5a99e75d8bfc" + ], + "x-ms-correlation-request-id": [ + "328deb42-db9d-4180-a28a-5a99e75d8bfc" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T051725Z:328deb42-db9d-4180-a28a-5a99e75d8bfc" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FhYWFhYWFhYWFhYWFyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvYWFhYWFhYWFhYWFhYT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa\",\r\n \"name\": \"aaaaaaaaaaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaaaaaaaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636244362547166623\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaaaaaaaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"8888\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaaaaaaaaaa6877\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 05:17:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14984" + ], + "x-ms-request-id": [ + "34945e91-0961-4305-9cd8-ad491f8ed12a" + ], + "x-ms-correlation-request-id": [ + "34945e91-0961-4305-9cd8-ad491f8ed12a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T051725Z:34945e91-0961-4305-9cd8-ad491f8ed12a" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FhYWFhYWFhYWFhYWFyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvYWFhYWFhYWFhYWFhYT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"8888\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"propertyNames\": [\r\n \"FabricSettings\"\r\n ]\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "303" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa\",\r\n \"name\": \"aaaaaaaaaaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaaaaaaaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636244362547166623\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaaaaaaaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"8888\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaaaaaaaaaa6877\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Tue, 07 Mar 2017 05:17:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "3a98c503-0f51-4475-b9ec-546151e6bd16" + ], + "x-ms-correlation-request-id": [ + "3a98c503-0f51-4475-b9ec-546151e6bd16" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170307T051725Z:3a98c503-0f51-4475-b9ec-546151e6bd16" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "b36cdf46-b75d-4dc2-9fe1-1296ee8c623d" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/TestHelper/RecordedDelegatingHandler.cs b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/TestHelper/RecordedDelegatingHandler.cs new file mode 100644 index 000000000000..b80dab0d7089 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/TestHelper/RecordedDelegatingHandler.cs @@ -0,0 +1,91 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +namespace ServiceFabric.Tests.TestHelper +{ + + using System; + using System.Net; + using System.Net.Http; + using System.Net.Http.Headers; + using System.Threading.Tasks; + + public class RecordedDelegatingHandler : DelegatingHandler + { + private HttpResponseMessage _response; + + public RecordedDelegatingHandler() + { + StatusCodeToReturn = HttpStatusCode.Created; + SubsequentStatusCodeToReturn = StatusCodeToReturn; + } + + public RecordedDelegatingHandler(HttpResponseMessage response) + { + StatusCodeToReturn = HttpStatusCode.Created; + SubsequentStatusCodeToReturn = StatusCodeToReturn; + _response = response; + } + + public HttpStatusCode StatusCodeToReturn { get; set; } + + public HttpStatusCode SubsequentStatusCodeToReturn { get; set; } + + public string Request { get; private set; } + + public HttpRequestHeaders RequestHeaders { get; private set; } + + public HttpContentHeaders ContentHeaders { get; private set; } + + public HttpMethod Method { get; private set; } + + public Uri Uri { get; private set; } + + public bool IsPassThrough { get; set; } + + private int counter; + + protected override async Task SendAsync(HttpRequestMessage request, System.Threading.CancellationToken cancellationToken) + { + counter++; + // Save request + if (request.Content == null) + { + Request = string.Empty; + } + else + { + Request = await request.Content.ReadAsStringAsync(); + } + RequestHeaders = request.Headers; + if (request.Content != null) + { + ContentHeaders = request.Content.Headers; + } + Method = request.Method; + Uri = request.RequestUri; + + // Prepare response + if (IsPassThrough) + { + return await base.SendAsync(request, cancellationToken); + } + else + { + if (_response != null && counter == 1) + { + return _response; + } + else + { + var statusCode = StatusCodeToReturn; + if (counter > 1) + statusCode = SubsequentStatusCodeToReturn; + HttpResponseMessage response = new HttpResponseMessage(statusCode); + response.Content = new StringContent(""); + return response; + } + } + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/ServiceFabricTestBase.cs b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/ServiceFabricTestBase.cs new file mode 100644 index 000000000000..b47593f3ca43 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/ServiceFabricTestBase.cs @@ -0,0 +1,131 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +namespace ServiceFabric.Tests.Tests +{ + using Microsoft.Azure.Management.Resources; + using Microsoft.Azure.Management.Resources.Models; + using Microsoft.Azure.Management.ServiceFabric; + using Microsoft.Rest.Azure; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using TestHelper; + using System.Net; + using Microsoft.Azure.Management.ServiceFabric.Models; + using System; + using System.Collections.Generic; + using Xunit; + + public class ServiceFabricTestBase + { + protected string clusterIdFormat = "/subscriptions/{0}/resourcegroups/{1}/providers/Microsoft.ServiceFabric/clusters/{2}"; + + protected ResourceManagementClient GetResourceManagementClient(MockContext context) + { + return context.GetServiceClient( + handlers: new RecordedDelegatingHandler() + { + StatusCodeToReturn = HttpStatusCode.OK, + IsPassThrough = true + }); + } + + protected ServiceFabricClient GetServiceFabricClient(MockContext context) + { + return context.GetServiceClient( + handlers: new RecordedDelegatingHandler() + { + StatusCodeToReturn = HttpStatusCode.OK, + IsPassThrough = true + }); + } + + protected IPage GetAllServiceFabricClusterResources( + MockContext context, + ResourceGroup rg) + { + var resouceClient = GetResourceManagementClient(context); + + var query = new Microsoft.Rest.Azure.OData.ODataQuery< + GenericResourceFilter>(); + query.SetFilter( + f => f.ResourceType == "Microsoft.ServiceFabric/clusters"); + + return resouceClient.ResourceGroups.ListResources(rg.Name, query); + } + + protected Cluster CreateACluster( + ResourceManagementClient resouceClient, + ServiceFabricClient serviceFabricClient, + string rg, + string rgLocation, + string clusterName) + { + var clusterId = string.Format( + clusterIdFormat, + resouceClient.SubscriptionId, + rg, + clusterName); + + var newCluster = new Cluster( + rgLocation, + clusterId, + clusterName, + "Microsoft.ServiceFabric/clusters", + null, + null, + Guid.NewGuid().ToString(), + "Ready", + "https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8d566293-3508-4d62-ba7b-056fa710c3c9", + null, + null, + "Silver", + "Automatic", + null, + null, + null, + null, + "http://sdktest.southcentralus.cloudapp.azure.com:19080", + new List() + { + new NodeTypeDescription() + { + ApplicationPorts = new EndpointRangeDescription() + { + StartPort = 1234, + EndPort = 4321 + }, + DurabilityLevel = "Bronze", + EphemeralPorts = new EndpointRangeDescription() + { + StartPort = 3456, + EndPort = 6543 + }, + IsPrimary = true, + Name = "n1", + ClientConnectionEndpointPort = 19000, + Capacities =null, + HttpGatewayEndpointPort = 19080, + PlacementProperties = null, + VmInstanceCount = 5, + ReverseProxyEndpointPort = null + } + } + , + "Succeeded", + "Windows", + null, + null) + { + }; + + resouceClient.ResourceGroups.CreateOrUpdate( + rg, + new ResourceGroup(rgLocation)); + + var cluster = serviceFabricClient.Clusters.Create(rg, clusterName, newCluster); + + Assert.NotNull(cluster); + return cluster; + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestCreateClusterResource.cs b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestCreateClusterResource.cs new file mode 100644 index 000000000000..d65097a221d4 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestCreateClusterResource.cs @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +namespace ServiceFabric.Tests.Tests +{ + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Xunit; + using Microsoft.Azure.Management.ServiceFabric; + using System.Linq; + using Microsoft.Azure.Management.Resources; + using Microsoft.Azure.Management.Resources.Models; + using System.IO; + using Microsoft.Azure.Management.ServiceFabric.Models; + using System; + using System.Collections.Generic; + + public class TestCreateClusterResource : ServiceFabricTestBase + { + [Fact] + public void TestCreate() + { + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var serviceFabricClient = GetServiceFabricClient(context); + var resouceClient = GetResourceManagementClient(context); + var resouceGroupName = "testCreaterg1"; + var location = "South Central US"; + var clusterName = "testCreateCluster2"; + + try + { + serviceFabricClient.Clusters.Get(resouceGroupName, clusterName); + serviceFabricClient.Clusters.Delete(resouceGroupName, clusterName); + } + catch (ErrorModelException e) + { + Assert.True(e.Response.StatusCode == System.Net.HttpStatusCode.NotFound); + } + + System.Threading.Thread.Sleep(TimeSpan.FromSeconds(10)); + + var cluster = CreateACluster(resouceClient, serviceFabricClient, resouceGroupName, location, clusterName); + cluster = serviceFabricClient.Clusters.Get(resouceGroupName, clusterName); + Assert.NotNull(cluster); + } + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestDeleteClusterResource.cs b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestDeleteClusterResource.cs new file mode 100644 index 000000000000..54eea9700b23 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestDeleteClusterResource.cs @@ -0,0 +1,48 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +namespace ServiceFabric.Tests.Tests +{ + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Xunit; + using Microsoft.Azure.Management.ServiceFabric; + using System.Linq; + using Microsoft.Azure.Management.Resources; + using Microsoft.Azure.Management.Resources.Models; + using System.IO; + using Microsoft.Azure.Management.ServiceFabric.Models; + using System; + using System.Collections.Generic; + + public class TestDeleteClusterResource : ServiceFabricTestBase + { + [Fact] + public void TestDelete() + { + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var serviceFabricClient = GetServiceFabricClient(context); + var resouceClient = GetResourceManagementClient(context); + var resouceGroupName = "testDeleterg"; + var location = "South Central US"; + var clusterName = "testDeleteCluster"; + + var cluster = CreateACluster(resouceClient, serviceFabricClient, resouceGroupName, location, clusterName); + + cluster = serviceFabricClient.Clusters.Get(resouceGroupName, clusterName); + Assert.NotNull(cluster); + + serviceFabricClient.Clusters.Delete(resouceGroupName, clusterName); + + var exception = Assert.Throws(() => + { + cluster = serviceFabricClient.Clusters.Get(resouceGroupName, clusterName); + }); + + Assert.True(exception.Response.StatusCode == System.Net.HttpStatusCode.NotFound); + + serviceFabricClient.Clusters.Delete(resouceGroupName, "donotexistcluster"); + } + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestGetClusterResource.cs b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestGetClusterResource.cs new file mode 100644 index 000000000000..a6c6f4e05cad --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestGetClusterResource.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. + +namespace ServiceFabric.Tests.Tests +{ + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Xunit; + using Microsoft.Azure.Management.ServiceFabric; + using System.Linq; + using Microsoft.Azure.Management.Resources; + using Microsoft.Azure.Management.Resources.Models; + using System.IO; + using Microsoft.Azure.Management.ServiceFabric.Models; + + public class TestGetClusterResource : ServiceFabricTestBase + { + [Fact] + public void TestGet() + { + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var serviceFabricClient = GetServiceFabricClient(context); + var resouceClient = GetResourceManagementClient(context); + var resourceGroups = resouceClient.ResourceGroups.List(); + foreach (var rg in resourceGroups) + { + var resources = GetAllServiceFabricClusterResources(context, rg); + if (resources.Any()) + { + var res = resources.First(); + var cluster = serviceFabricClient.Clusters.Get(rg.Name, res.Name); + Assert.NotNull(cluster); + } + + var randomResName = "donotexisting"; + if (resources.Where(r => r.Name == randomResName).Count() == 0) + { + try + { + serviceFabricClient.Clusters.Get(rg.Name, randomResName); + } + catch (ErrorModelException exception) + { + Assert.True(exception.Response.StatusCode == System.Net.HttpStatusCode.NotFound); + } + } + + break; + } + } + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestListClusterResource.cs b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestListClusterResource.cs new file mode 100644 index 000000000000..e83e2775f1f3 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestListClusterResource.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. + +namespace ServiceFabric.Tests.Tests +{ + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Xunit; + using Microsoft.Azure.Management.ServiceFabric; + using System.Linq; + using Microsoft.Azure.Management.Resources; + + public class TestListClusterResource : ServiceFabricTestBase + { + [Fact] + public void TestList() + { + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var serviceFabricClient = GetServiceFabricClient(context); + var clusters = serviceFabricClient.Clusters.List(); + + Assert.NotNull(clusters); + Assert.NotNull(clusters.Value); + var subscriptions = clusters.Value.GroupBy(c => c.Id).Select(r => r.Key.Split('/')[2]).Distinct(); + Assert.Equal(subscriptions.Count(), 1); + } + } + + [Fact] + public void TestListByResourceGroup() + { + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var serviceFabricClient = GetServiceFabricClient(context); + var resouceClient = GetResourceManagementClient(context); + var resourceGroups = resouceClient.ResourceGroups.List(); + foreach (var rg in resourceGroups) + { + var resources = GetAllServiceFabricClusterResources(context, rg); + if (resources.Any()) + { + var clusters = serviceFabricClient.Clusters.ListByResourceGroup(rg.Name); + Assert.NotNull(clusters); + + var res1 = resources.Select(r => r.Name).OrderBy(r => r).ToList(); + var res2 = clusters.Value.Select( + c => c.Name).OrderBy(r => r).ToList(); + + Assert.True(res1.Count == res2.Count); + + for (int i = 0; i < res1.Count; i++) + { + Assert.True(res1[i] == res2[i]); + } + + break; + } + } + } + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestUpdateClusterResource.cs b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestUpdateClusterResource.cs new file mode 100644 index 000000000000..3f8d05b4270b --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestUpdateClusterResource.cs @@ -0,0 +1,76 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +namespace ServiceFabric.Tests.Tests +{ + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Xunit; + using Microsoft.Azure.Management.ServiceFabric; + using System.Linq; + using Microsoft.Azure.Management.Resources; + using System.Collections.Generic; + using Microsoft.Azure.Management.ServiceFabric.Models; + using System; + + public class TestUpdateClusterResource : ServiceFabricTestBase + { + [Fact] + public void TestUpdate() + { + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var serviceFabricClient = GetServiceFabricClient(context); + var resouceClient = GetResourceManagementClient(context); + + var resourceGroups = resouceClient.ResourceGroups.List(); + foreach (var rg in resourceGroups) + { + var resources = GetAllServiceFabricClusterResources(context, rg); + if (resources.Any()) + { + var res = resources.First(); + var cluster = serviceFabricClient.Clusters.Get(rg.Name, res.Name); + + serviceFabricClient.Clusters.Update(rg.Name, res.Name, + new ClusterUpdateParameters() + { + FabricSettings = new List() + { + new SettingsSectionDescription() + { + Name = "NamingService", + Parameters = new List() + { + new SettingsParameterDescription() + { + Name = "MaxOperationTimeout", + Value = "8888" + } + } + } + }, + + PropertyNames = new[] { "FabricSettings" } + }); + + cluster = serviceFabricClient.Clusters.Get(rg.Name, res.Name); + while (string.Compare(cluster.ClusterState, "ready",true) != 0) + { + cluster = serviceFabricClient.Clusters.Get(rg.Name, res.Name); + System.Threading.Thread.Sleep(TimeSpan.FromMinutes(1)); + } + + var ns = cluster.FabricSettings.Where(s => s.Name == "NamingService").First(); + var p = ns.Parameters.Where( + parameter => + parameter.Name == "MaxOperationTimeout").First(); + + Assert.True(p.Value == "8888"); + + break; + } + } + } + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/project.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/project.json new file mode 100644 index 000000000000..b7e4b8f1c373 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/project.json @@ -0,0 +1,41 @@ +{ + "version": "1.0.0-*", + "description": "ServiceFabric Tests Class Library", + "authors": [ "Microsoft Corporation" ], + + "packOptions": { + "summary": "ServiceFabric.Tests", + "tags": [ "" ], + "projectUrl": "https://github.com/Azure/azure-sdk-for-net", + "licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE" + }, + "buildOptions": { + "delaySign": true, + "publicSign": false, + "keyFile": "../../../../tools/MSSharedLibKey.snk", + "compile": "../../../../tools/DisableTestRunParallel.cs" + }, + + "testRunner": "xunit", + "frameworks": { + "netcoreapp1.0": { + "imports": [ "dnxcore50", "portable-net45+win8" ], + "dependencies": { + } + } + }, + "dependencies": { + "Microsoft.NETCore.App": { + "type": "platform", + "version": "1.0.0" + }, + "Microsoft.Azure.Test.HttpRecorder": "[1.6.6-preview,2.0.0)", + "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "[1.5.0-preview,2.0.0)", + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)", + "Microsoft.Azure.ResourceManager": "1.0.0-preview", + "xunit": "2.2.0-beta2-build3300", + "dotnet-test-xunit": "2.2.0-preview2-build1029", + "Microsoft.Azure.Management.ServiceFabric": "1.0.0", + "System.Linq": "4.3.0" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.sln b/src/ResourceManagement/ServiceFabric/ServiceFabric.sln new file mode 100644 index 000000000000..92db51d3a784 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.sln @@ -0,0 +1,34 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.25420.1 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "ServiceFabric.Tests", "ServiceFabric.Test\ServiceFabric.Tests.xproj", "{F857A01A-2955-4FC9-836B-FE7FD80C6CC2}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "HttpRecorder", "..\..\TestFramework\Microsoft.Azure.Test.HttpRecorder\HttpRecorder.xproj", "{5D12D45A-E55F-410E-B8AF-9DC90E81B237}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Azure.Management.ServiceFabric", "Microsoft.Azure.Management.ServiceFabric\Microsoft.Azure.Management.ServiceFabric.xproj", "{624659FE-FE8F-41D2-99AB-0BA92DE15A65}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F857A01A-2955-4FC9-836B-FE7FD80C6CC2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F857A01A-2955-4FC9-836B-FE7FD80C6CC2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F857A01A-2955-4FC9-836B-FE7FD80C6CC2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F857A01A-2955-4FC9-836B-FE7FD80C6CC2}.Release|Any CPU.Build.0 = Release|Any CPU + {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Release|Any CPU.Build.0 = Release|Any CPU + {624659FE-FE8F-41D2-99AB-0BA92DE15A65}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {624659FE-FE8F-41D2-99AB-0BA92DE15A65}.Debug|Any CPU.Build.0 = Debug|Any CPU + {624659FE-FE8F-41D2-99AB-0BA92DE15A65}.Release|Any CPU.ActiveCfg = Release|Any CPU + {624659FE-FE8F-41D2-99AB-0BA92DE15A65}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal From f3178a53addccb46c97fbf1fadfd77f7903a922a Mon Sep 17 00:00:00 2001 From: Ching Chen Date: Wed, 8 Mar 2017 06:59:01 -0800 Subject: [PATCH 2/7] update with latest swagger file --- .../Generated/Clusters.cs | 23 ++--- .../Generated/ClustersExtensions.cs | 22 +++-- .../Generated/IClusters.cs | 9 +- .../Models/ClusterUpdateParameters.cs | 99 +++---------------- .../Models/SettingsParameterDescription.cs | 4 +- .../Models/SettingsSectionDescription.cs | 2 +- .../TestCreate.json | 60 +++++------ .../TestDelete.json | 66 ++++++------- .../TestGet.json | 44 ++++----- .../TestList.json | 12 +-- .../TestListByResourceGroup.json | 38 +++---- .../TestUpdate.json | 64 ++++++------ .../Tests/TestUpdateClusterResource.cs | 4 +- 13 files changed, 186 insertions(+), 261 deletions(-) diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Clusters.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Clusters.cs index 1005308686c6..6410758bfac7 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Clusters.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Clusters.cs @@ -45,7 +45,7 @@ public Clusters(ServiceFabricClient client) public ServiceFabricClient Client { get; private set; } /// - /// Update cluster config + /// Update cluster configuration /// /// /// The name of the Resource Group to which the server belongs. @@ -54,7 +54,8 @@ public Clusters(ServiceFabricClient client) /// The name of the cluster /// /// - /// Patch Request + /// The parameters which contains the property value and property name which + /// used to update the cluster configuration /// /// /// Headers that will be added to request. @@ -389,7 +390,7 @@ public Clusters(ServiceFabricClient client) /// /// The name of the cluster /// - /// + /// /// Put Request /// /// @@ -401,7 +402,7 @@ public Clusters(ServiceFabricClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, Cluster clusterUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, Cluster clusterresource, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -415,13 +416,13 @@ public Clusters(ServiceFabricClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } - if (clusterUpdateParameters == null) + if (clusterresource == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "clusterUpdateParameters"); + throw new ValidationException(ValidationRules.CannotBeNull, "clusterresource"); } - if (clusterUpdateParameters != null) + if (clusterresource != null) { - clusterUpdateParameters.Validate(); + clusterresource.Validate(); } if (this.Client.SubscriptionId == null) { @@ -436,7 +437,7 @@ public Clusters(ServiceFabricClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("clusterName", clusterName); - tracingParameters.Add("clusterUpdateParameters", clusterUpdateParameters); + tracingParameters.Add("clusterresource", clusterresource); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Create", tracingParameters); } @@ -475,9 +476,9 @@ public Clusters(ServiceFabricClient client) // Serialize Request string _requestContent = null; - if(clusterUpdateParameters != null) + if(clusterresource != null) { - _requestContent = SafeJsonConvert.SerializeObject(clusterUpdateParameters, this.Client.SerializationSettings); + _requestContent = SafeJsonConvert.SerializeObject(clusterresource, this.Client.SerializationSettings); _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClustersExtensions.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClustersExtensions.cs index 419d705f09e8..5279e0b77413 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClustersExtensions.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClustersExtensions.cs @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Management.ServiceFabric public static partial class ClustersExtensions { /// - /// Update cluster config + /// Update cluster configuration /// /// /// The operations group for this extension method. @@ -30,7 +30,8 @@ public static partial class ClustersExtensions /// The name of the cluster /// /// - /// Patch Request + /// The parameters which contains the property value and property name which + /// used to update the cluster configuration /// public static Cluster Update(this IClusters operations, string resourceGroupName, string clusterName, ClusterUpdateParameters clusterUpdateParameters) { @@ -38,7 +39,7 @@ public static Cluster Update(this IClusters operations, string resourceGroupName } /// - /// Update cluster config + /// Update cluster configuration /// /// /// The operations group for this extension method. @@ -50,7 +51,8 @@ public static Cluster Update(this IClusters operations, string resourceGroupName /// The name of the cluster /// /// - /// Patch Request + /// The parameters which contains the property value and property name which + /// used to update the cluster configuration /// /// /// The cancellation token. @@ -115,12 +117,12 @@ public static Cluster Get(this IClusters operations, string resourceGroupName, s /// /// The name of the cluster /// - /// + /// /// Put Request /// - public static Cluster Create(this IClusters operations, string resourceGroupName, string clusterName, Cluster clusterUpdateParameters) + public static Cluster Create(this IClusters operations, string resourceGroupName, string clusterName, Cluster clusterresource) { - return Task.Factory.StartNew(s => ((IClusters)s).CreateAsync(resourceGroupName, clusterName, clusterUpdateParameters), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IClusters)s).CreateAsync(resourceGroupName, clusterName, clusterresource), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -135,15 +137,15 @@ public static Cluster Create(this IClusters operations, string resourceGroupName /// /// The name of the cluster /// - /// + /// /// Put Request /// /// /// The cancellation token. /// - public static async Task CreateAsync(this IClusters operations, string resourceGroupName, string clusterName, Cluster clusterUpdateParameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateAsync(this IClusters operations, string resourceGroupName, string clusterName, Cluster clusterresource, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateWithHttpMessagesAsync(resourceGroupName, clusterName, clusterUpdateParameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateWithHttpMessagesAsync(resourceGroupName, clusterName, clusterresource, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IClusters.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IClusters.cs index 8e9f90cb65e0..c651aab59dae 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IClusters.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IClusters.cs @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Management.ServiceFabric public partial interface IClusters { /// - /// Update cluster config + /// Update cluster configuration /// /// /// The name of the Resource Group to which the server belongs. @@ -27,7 +27,8 @@ public partial interface IClusters /// The name of the cluster /// /// - /// Patch Request + /// The parameters which contains the property value and property name + /// which used to update the cluster configuration /// /// /// The headers that will be added to request. @@ -61,7 +62,7 @@ public partial interface IClusters /// /// The name of the cluster /// - /// + /// /// Put Request /// /// @@ -70,7 +71,7 @@ public partial interface IClusters /// /// The cancellation token. /// - Task> CreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, Cluster clusterUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, Cluster clusterresource, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Delete cluster resource /// diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpdateParameters.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpdateParameters.cs index 659491416730..9ff8f9456862 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpdateParameters.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpdateParameters.cs @@ -25,54 +25,31 @@ public ClusterUpdateParameters() { } /// /// Initializes a new instance of the ClusterUpdateParameters class. /// - public ClusterUpdateParameters(IList availableClusterVersions = default(IList), string clusterId = default(string), string clusterState = default(string), string clusterEndpoint = default(string), string clusterCodeVersion = default(string), CertificateDescription certificate = default(CertificateDescription), string reliabilityLevel = default(string), string upgradeMode = default(string), IList clientCertificateThumbprints = default(IList), IList clientCertificateCommonNames = default(IList), IList fabricSettings = default(IList), CertificateDescription reverseProxyCertificate = default(CertificateDescription), string managementEndpoint = default(string), IList nodeTypes = default(IList), string provisioningState = default(string), string vmImage = default(string), DiagnosticsStorageAccountConfig diagnosticsStorageAccountConfig = default(DiagnosticsStorageAccountConfig), PaasClusterUpgradePolicy upgradeDescription = default(PaasClusterUpgradePolicy), IDictionary tags = default(IDictionary), IList propertyNames = default(IList)) + public ClusterUpdateParameters(string reliabilityLevel = default(string), string upgradeMode = default(string), string clusterCodeVersion = default(string), CertificateDescription certificate = default(CertificateDescription), IList clientCertificateThumbprints = default(IList), IList fabricSettings = default(IList), CertificateDescription reverseProxyCertificate = default(CertificateDescription), IList nodeTypes = default(IList), IDictionary tags = default(IDictionary)) { - AvailableClusterVersions = availableClusterVersions; - ClusterId = clusterId; - ClusterState = clusterState; - ClusterEndpoint = clusterEndpoint; - ClusterCodeVersion = clusterCodeVersion; - Certificate = certificate; ReliabilityLevel = reliabilityLevel; UpgradeMode = upgradeMode; + ClusterCodeVersion = clusterCodeVersion; + Certificate = certificate; ClientCertificateThumbprints = clientCertificateThumbprints; - ClientCertificateCommonNames = clientCertificateCommonNames; FabricSettings = fabricSettings; ReverseProxyCertificate = reverseProxyCertificate; - ManagementEndpoint = managementEndpoint; NodeTypes = nodeTypes; - ProvisioningState = provisioningState; - VmImage = vmImage; - DiagnosticsStorageAccountConfig = diagnosticsStorageAccountConfig; - UpgradeDescription = upgradeDescription; Tags = tags; - PropertyNames = propertyNames; } /// + /// Possible values include: 'Invalid', 'Bronze', 'Silver', 'Gold', + /// 'Platinum' /// - [JsonProperty(PropertyName = "properties.availableClusterVersions")] - public IList AvailableClusterVersions { get; private set; } - - /// - /// - [JsonProperty(PropertyName = "properties.clusterId")] - public string ClusterId { get; set; } - - /// - /// Possible values include: 'Default', 'WaitingForNodes', - /// 'Deploying', 'BaselineUpgrade', 'UpdatingUserConfiguration', - /// 'UpdatingUserCertificate', 'UpdatingInfrastructure', - /// 'EnforcingClusterVersion', 'UpgradeServiceUnreachable', - /// 'Deleting', 'ScaleUp', 'ScaleDown', 'AutoScale', 'Ready', 'Failed' - /// - [JsonProperty(PropertyName = "properties.clusterState")] - public string ClusterState { get; private set; } + [JsonProperty(PropertyName = "properties.reliabilityLevel")] + public string ReliabilityLevel { get; set; } /// + /// Possible values include: 'Default', 'Automatic', 'Manual' /// - [JsonProperty(PropertyName = "properties.clusterEndpoint")] - public string ClusterEndpoint { get; set; } + [JsonProperty(PropertyName = "properties.upgradeMode")] + public string UpgradeMode { get; set; } /// /// @@ -84,29 +61,11 @@ public ClusterUpdateParameters() { } [JsonProperty(PropertyName = "properties.certificate")] public CertificateDescription Certificate { get; set; } - /// - /// Possible values include: 'Invalid', 'Bronze', 'Silver', 'Gold', - /// 'Platinum' - /// - [JsonProperty(PropertyName = "properties.reliabilityLevel")] - public string ReliabilityLevel { get; set; } - - /// - /// Possible values include: 'Default', 'Automatic', 'Manual' - /// - [JsonProperty(PropertyName = "properties.upgradeMode")] - public string UpgradeMode { get; set; } - /// /// [JsonProperty(PropertyName = "properties.clientCertificateThumbprints")] public IList ClientCertificateThumbprints { get; set; } - /// - /// - [JsonProperty(PropertyName = "properties.clientCertificateCommonNames")] - public IList ClientCertificateCommonNames { get; set; } - /// /// [JsonProperty(PropertyName = "properties.fabricSettings")] @@ -117,52 +76,16 @@ public ClusterUpdateParameters() { } [JsonProperty(PropertyName = "properties.reverseProxyCertificate")] public CertificateDescription ReverseProxyCertificate { get; set; } - /// - /// - [JsonProperty(PropertyName = "properties.managementEndpoint")] - public string ManagementEndpoint { get; set; } - /// /// [JsonProperty(PropertyName = "properties.nodeTypes")] public IList NodeTypes { get; set; } - /// - /// Possible values include: 'Default', 'WaitingForNodes', - /// 'Deploying', 'BaselineUpgrade', 'UpdatingUserConfiguration', - /// 'UpdatingUserCertificate', 'UpdatingInfrastructure', - /// 'EnforcingClusterVersion', 'UpgradeServiceUnreachable', - /// 'Deleting', 'ScaleUp', 'ScaleDown', 'AutoScale', 'Ready', 'Failed' - /// - [JsonProperty(PropertyName = "properties.provisioningState")] - public string ProvisioningState { get; set; } - - /// - /// - [JsonProperty(PropertyName = "properties.vmImage")] - public string VmImage { get; set; } - - /// - /// - [JsonProperty(PropertyName = "properties.diagnosticsStorageAccountConfig")] - public DiagnosticsStorageAccountConfig DiagnosticsStorageAccountConfig { get; set; } - - /// - /// - [JsonProperty(PropertyName = "properties.upgradeDescription")] - public PaasClusterUpgradePolicy UpgradeDescription { get; set; } - /// /// Cluster tags. /// - [JsonProperty(PropertyName = "properties.tags")] + [JsonProperty(PropertyName = "tags")] public IDictionary Tags { get; set; } - /// - /// Allowed properties - /// - [JsonProperty(PropertyName = "properties.propertyNames")] - public IList PropertyNames { get; set; } - } } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsParameterDescription.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsParameterDescription.cs index 3791ab90e6c9..d0884ce36a99 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsParameterDescription.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsParameterDescription.cs @@ -33,13 +33,13 @@ public SettingsParameterDescription() { } } /// - /// name + /// The name of settings parameter description /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// - /// name + /// The value of the property /// [JsonProperty(PropertyName = "value")] public string Value { get; set; } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsSectionDescription.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsSectionDescription.cs index 02314b7c9120..fcea8d49bdc2 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsSectionDescription.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsSectionDescription.cs @@ -31,7 +31,7 @@ public SettingsSectionDescription() { } } /// - /// name + /// The name of settings section description /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestCreateClusterResource/TestCreate.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestCreateClusterResource/TestCreate.json index 5cd142686a8e..506395209087 100644 --- a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestCreateClusterResource/TestCreate.json +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestCreateClusterResource/TestCreate.json @@ -11,7 +11,7 @@ "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testCreaterg1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636244592740958842\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"dcec1f27-9da4-4d1a-981d-b381aa6a7b8f\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/dcec1f27-9da4-4d1a-981d-b381aa6a7b8f\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testCreaterg1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636244595927345289\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"ed4fa900-6c59-430b-b807-2e440ac20456\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/ed4fa900-6c59-430b-b807-2e440ac20456\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -23,7 +23,7 @@ "no-cache" ], "Date": [ - "Tue, 07 Mar 2017 04:59:37 GMT" + "Wed, 08 Mar 2017 14:51:47 GMT" ], "Pragma": [ "no-cache" @@ -45,16 +45,16 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14975" ], "x-ms-request-id": [ - "20473828-c6f9-4c83-addb-1b124c27ca4a" + "9a29b8ac-50e3-490c-a972-2917bb8f2831" ], "x-ms-correlation-request-id": [ - "20473828-c6f9-4c83-addb-1b124c27ca4a" + "9a29b8ac-50e3-490c-a972-2917bb8f2831" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170307T045938Z:20473828-c6f9-4c83-addb-1b124c27ca4a" + "WESTUS2:20170308T145147Z:9a29b8ac-50e3-490c-a972-2917bb8f2831" ] }, "StatusCode": 200 @@ -70,7 +70,7 @@ "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testCreaterg1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636244595927345289\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"ed4fa900-6c59-430b-b807-2e440ac20456\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/ed4fa900-6c59-430b-b807-2e440ac20456\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testCreaterg1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636245815210570948\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"58f8e36b-d85b-4d8e-8d52-34e27dd1d0e5\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/58f8e36b-d85b-4d8e-8d52-34e27dd1d0e5\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -82,7 +82,7 @@ "no-cache" ], "Date": [ - "Tue, 07 Mar 2017 04:59:51 GMT" + "Wed, 08 Mar 2017 14:52:00 GMT" ], "Pragma": [ "no-cache" @@ -104,16 +104,16 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14974" ], "x-ms-request-id": [ - "24f2f347-463e-4893-8299-efb452ff2561" + "31e72799-b9c3-40c7-b4e6-f2bd1683daed" ], "x-ms-correlation-request-id": [ - "24f2f347-463e-4893-8299-efb452ff2561" + "31e72799-b9c3-40c7-b4e6-f2bd1683daed" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170307T045952Z:24f2f347-463e-4893-8299-efb452ff2561" + "WESTUS2:20170308T145200Z:31e72799-b9c3-40c7-b4e6-f2bd1683daed" ] }, "StatusCode": 200 @@ -141,7 +141,7 @@ "no-cache" ], "Date": [ - "Tue, 07 Mar 2017 04:59:38 GMT" + "Wed, 08 Mar 2017 14:51:48 GMT" ], "Pragma": [ "no-cache" @@ -156,16 +156,16 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-request-id": [ - "1f8b2a6c-f7bd-4635-8211-cddd8925991e" + "6fa67443-be66-4065-93b0-d06b586b1e8c" ], "x-ms-correlation-request-id": [ - "1f8b2a6c-f7bd-4635-8211-cddd8925991e" + "6fa67443-be66-4065-93b0-d06b586b1e8c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170307T045939Z:1f8b2a6c-f7bd-4635-8211-cddd8925991e" + "WESTUS2:20170308T145148Z:6fa67443-be66-4065-93b0-d06b586b1e8c" ] }, "StatusCode": 200 @@ -183,7 +183,7 @@ "38" ], "x-ms-client-request-id": [ - "040d253c-477b-470f-9c20-93319f178242" + "c9321769-a8ef-47be-a966-7682c5f06a0c" ], "accept-language": [ "en-US" @@ -205,7 +205,7 @@ "no-cache" ], "Date": [ - "Tue, 07 Mar 2017 04:59:50 GMT" + "Wed, 08 Mar 2017 14:51:59 GMT" ], "Pragma": [ "no-cache" @@ -217,16 +217,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-request-id": [ - "84520577-8723-47e9-80b2-728a0f8d1466" + "145ec377-4b75-4afb-9c2d-aa76d34a40e0" ], "x-ms-correlation-request-id": [ - "84520577-8723-47e9-80b2-728a0f8d1466" + "145ec377-4b75-4afb-9c2d-aa76d34a40e0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170307T045951Z:84520577-8723-47e9-80b2-728a0f8d1466" + "WESTUS2:20170308T145159Z:145ec377-4b75-4afb-9c2d-aa76d34a40e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -238,7 +238,7 @@ "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2?api-version=2016-09-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3RDcmVhdGVyZzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL3Rlc3RDcmVhdGVDbHVzdGVyMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"clusterId\": \"415ec851-9e85-486d-b701-51b242eef292\",\r\n \"clusterState\": \"Ready\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8d566293-3508-4d62-ba7b-056fa710c3c9\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"durabilityLevel\": \"Bronze\",\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"vmImage\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testCreaterg1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"clusterId\": \"ed8c1325-a839-4916-95dd-b05fd3bd5046\",\r\n \"clusterState\": \"Ready\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8d566293-3508-4d62-ba7b-056fa710c3c9\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"durabilityLevel\": \"Bronze\",\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"vmImage\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testCreaterg1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -251,7 +251,7 @@ "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testCreaterg1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636244595927345289\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"ed4fa900-6c59-430b-b807-2e440ac20456\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/ed4fa900-6c59-430b-b807-2e440ac20456\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testCreaterg1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636245815210570948\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"58f8e36b-d85b-4d8e-8d52-34e27dd1d0e5\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/58f8e36b-d85b-4d8e-8d52-34e27dd1d0e5\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -263,7 +263,7 @@ "no-cache" ], "Date": [ - "Tue, 07 Mar 2017 04:59:51 GMT" + "Wed, 08 Mar 2017 14:52:00 GMT" ], "Pragma": [ "no-cache" @@ -284,16 +284,16 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-request-id": [ - "0c45f5e9-523e-48dd-8771-51ddf493209c" + "dd9833f4-0fa4-411e-bc00-20b88667ec07" ], "x-ms-correlation-request-id": [ - "0c45f5e9-523e-48dd-8771-51ddf493209c" + "dd9833f4-0fa4-411e-bc00-20b88667ec07" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170307T045952Z:0c45f5e9-523e-48dd-8771-51ddf493209c" + "WESTUS2:20170308T145200Z:dd9833f4-0fa4-411e-bc00-20b88667ec07" ] }, "StatusCode": 200 diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestDeleteClusterResource/TestDelete.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestDeleteClusterResource/TestDelete.json index 50d6f067ed7d..81ffbae186ea 100644 --- a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestDeleteClusterResource/TestDelete.json +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestDeleteClusterResource/TestDelete.json @@ -13,7 +13,7 @@ "38" ], "x-ms-client-request-id": [ - "eb8961a8-1732-4d65-b147-3e1f3e28c9b8" + "1d82ac25-ccf4-421a-b3d4-f0ff1cbdb426" ], "accept-language": [ "en-US" @@ -38,22 +38,22 @@ "no-cache" ], "Date": [ - "Tue, 07 Mar 2017 05:00:18 GMT" + "Wed, 08 Mar 2017 14:51:36 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1199" ], "x-ms-request-id": [ - "728f8e80-cbac-47cb-a3aa-9cd06e6cdb02" + "586446f3-40ea-4303-8bb4-f8bdaf61dcc7" ], "x-ms-correlation-request-id": [ - "728f8e80-cbac-47cb-a3aa-9cd06e6cdb02" + "586446f3-40ea-4303-8bb4-f8bdaf61dcc7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170307T050018Z:728f8e80-cbac-47cb-a3aa-9cd06e6cdb02" + "WESTUS2:20170308T145136Z:586446f3-40ea-4303-8bb4-f8bdaf61dcc7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -65,7 +65,7 @@ "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster?api-version=2016-09-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3REZWxldGVyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvdGVzdERlbGV0ZUNsdXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"clusterId\": \"587845f7-d425-4661-955b-842f238ec698\",\r\n \"clusterState\": \"Ready\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8d566293-3508-4d62-ba7b-056fa710c3c9\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"durabilityLevel\": \"Bronze\",\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"vmImage\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster\",\r\n \"name\": \"testDeleteCluster\",\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"clusterId\": \"29540499-b0b2-4c12-86ee-50d0d8795753\",\r\n \"clusterState\": \"Ready\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8d566293-3508-4d62-ba7b-056fa710c3c9\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"durabilityLevel\": \"Bronze\",\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"vmImage\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster\",\r\n \"name\": \"testDeleteCluster\",\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -78,7 +78,7 @@ "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster\",\r\n \"name\": \"testDeleteCluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636244596211435035\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"61a466d1-f0ef-48d0-aeeb-6baa2a97f0a4\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/61a466d1-f0ef-48d0-aeeb-6baa2a97f0a4\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster\",\r\n \"name\": \"testDeleteCluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636245814982746669\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"906c266d-9ba3-4514-ad9c-d54cbaba73db\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/906c266d-9ba3-4514-ad9c-d54cbaba73db\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -90,7 +90,7 @@ "no-cache" ], "Date": [ - "Tue, 07 Mar 2017 05:00:19 GMT" + "Wed, 08 Mar 2017 14:51:37 GMT" ], "Pragma": [ "no-cache" @@ -111,16 +111,16 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1199" ], "x-ms-request-id": [ - "eac252a3-34c3-4a32-8dc9-27401e4834c0" + "bb4651ab-6481-40bc-9bb5-94fdddca83e7" ], "x-ms-correlation-request-id": [ - "eac252a3-34c3-4a32-8dc9-27401e4834c0" + "bb4651ab-6481-40bc-9bb5-94fdddca83e7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170307T050020Z:eac252a3-34c3-4a32-8dc9-27401e4834c0" + "WESTUS2:20170308T145137Z:bb4651ab-6481-40bc-9bb5-94fdddca83e7" ] }, "StatusCode": 200 @@ -136,7 +136,7 @@ "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster\",\r\n \"name\": \"testDeleteCluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636244596211435035\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"61a466d1-f0ef-48d0-aeeb-6baa2a97f0a4\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/61a466d1-f0ef-48d0-aeeb-6baa2a97f0a4\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster\",\r\n \"name\": \"testDeleteCluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636245814982746669\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"906c266d-9ba3-4514-ad9c-d54cbaba73db\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/906c266d-9ba3-4514-ad9c-d54cbaba73db\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -148,7 +148,7 @@ "no-cache" ], "Date": [ - "Tue, 07 Mar 2017 05:00:19 GMT" + "Wed, 08 Mar 2017 14:51:37 GMT" ], "Pragma": [ "no-cache" @@ -170,16 +170,16 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14973" ], "x-ms-request-id": [ - "6b764238-ddf9-4d60-97b2-812152107c6b" + "906dd028-cac7-4770-9563-f69ac3ed0a1f" ], "x-ms-correlation-request-id": [ - "6b764238-ddf9-4d60-97b2-812152107c6b" + "906dd028-cac7-4770-9563-f69ac3ed0a1f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170307T050020Z:6b764238-ddf9-4d60-97b2-812152107c6b" + "WESTUS2:20170308T145137Z:906dd028-cac7-4770-9563-f69ac3ed0a1f" ] }, "StatusCode": 200 @@ -210,7 +210,7 @@ "no-cache" ], "Date": [ - "Tue, 07 Mar 2017 05:00:20 GMT" + "Wed, 08 Mar 2017 14:51:38 GMT" ], "Pragma": [ "no-cache" @@ -219,13 +219,13 @@ "gateway" ], "x-ms-request-id": [ - "9c37c802-408f-4423-8ae3-790cea8aee7f" + "7d1c3902-d589-49e1-beb1-982b4cb7a374" ], "x-ms-correlation-request-id": [ - "9c37c802-408f-4423-8ae3-790cea8aee7f" + "7d1c3902-d589-49e1-beb1-982b4cb7a374" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170307T050021Z:9c37c802-408f-4423-8ae3-790cea8aee7f" + "WESTUS2:20170308T145138Z:7d1c3902-d589-49e1-beb1-982b4cb7a374" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -256,7 +256,7 @@ "no-cache" ], "Date": [ - "Tue, 07 Mar 2017 05:00:20 GMT" + "Wed, 08 Mar 2017 14:51:38 GMT" ], "Pragma": [ "no-cache" @@ -271,16 +271,16 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1198" ], "x-ms-request-id": [ - "ea7f1075-8501-459e-8403-133e53e8689f" + "d1b2194c-8bf4-439c-99eb-998f0c199979" ], "x-ms-correlation-request-id": [ - "ea7f1075-8501-459e-8403-133e53e8689f" + "d1b2194c-8bf4-439c-99eb-998f0c199979" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170307T050021Z:ea7f1075-8501-459e-8403-133e53e8689f" + "WESTUS2:20170308T145138Z:d1b2194c-8bf4-439c-99eb-998f0c199979" ] }, "StatusCode": 200 @@ -305,22 +305,22 @@ "no-cache" ], "Date": [ - "Tue, 07 Mar 2017 05:00:20 GMT" + "Wed, 08 Mar 2017 14:51:39 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1197" ], "x-ms-request-id": [ - "eb50c030-df0e-439c-ba18-e21329573568" + "44e2116a-0c56-4300-93f5-d17c2ff19c12" ], "x-ms-correlation-request-id": [ - "eb50c030-df0e-439c-ba18-e21329573568" + "44e2116a-0c56-4300-93f5-d17c2ff19c12" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170307T050021Z:eb50c030-df0e-439c-ba18-e21329573568" + "WESTUS2:20170308T145139Z:44e2116a-0c56-4300-93f5-d17c2ff19c12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestGetClusterResource/TestGet.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestGetClusterResource/TestGet.json index 3f6c0c74b66f..a021294392fb 100644 --- a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestGetClusterResource/TestGet.json +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestGetClusterResource/TestGet.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c2d0009-65f4-4055-ba25-3a0add1088ec" + "5b211003-1dbc-4c8a-a009-384d556366ad" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg\",\r\n \"name\": \"aaaaaaaaaaaaarg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1702250539\",\r\n \"name\": \"abhaymtest1702250539\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1702251613\",\r\n \"name\": \"abhaymtest1702251613\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703010700\",\r\n \"name\": \"abhaymtest1703010700\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703012245\",\r\n \"name\": \"abhaymtest1703012245\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703012344\",\r\n \"name\": \"abhaymtest1703012344\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703020617\",\r\n \"name\": \"abhaymtest1703020617\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703020618\",\r\n \"name\": \"abhaymtest1703020618\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703020634\",\r\n \"name\": \"abhaymtest1703020634\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703030726\",\r\n \"name\": \"abhaymtest1703030726\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703061931\",\r\n \"name\": \"abhaymtest1703061931\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703062131\",\r\n \"name\": \"abhaymtest1703062131\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703062345\",\r\n \"name\": \"abhaymtest1703062345\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayreverseproxy02\",\r\n \"name\": \"abhayreverseproxy02\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest01\",\r\n \"name\": \"abhaytest01\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest04\",\r\n \"name\": \"abhaytest04\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayvm02\",\r\n \"name\": \"abhayvm02\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayvm03\",\r\n \"name\": \"abhayvm03\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/anmolprvbuild03\",\r\n \"name\": \"anmolprvbuild03\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/bztest-rg\",\r\n \"name\": \"bztest-rg\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/Default-ServiceBus-9653\",\r\n \"name\": \"Default-ServiceBus-9653\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/deployertest\",\r\n \"name\": \"deployertest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/dotnetsdkrg\",\r\n \"name\": \"dotnetsdkrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/nsgtest03\",\r\n \"name\": \"nsgtest03\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/nsgtest05\",\r\n \"name\": \"nsgtest05\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklinuxtest01\",\r\n \"name\": \"sdklinuxtest01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestrg2\",\r\n \"name\": \"sdktestrg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/SecureBaseImage\",\r\n \"name\": \"SecureBaseImage\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg\",\r\n \"name\": \"testCreaterg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1\",\r\n \"name\": \"testCreaterg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testsdkdnetrestrg\",\r\n \"name\": \"testsdkdnetrestrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-202955140-v2\",\r\n \"name\": \"wftsvc-bm-20161024-202955140-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-210350686-v2\",\r\n \"name\": \"wftsvc-bm-20161024-210350686-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-210948818-v2\",\r\n \"name\": \"wftsvc-bm-20161024-210948818-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161025-012157409-v2\",\r\n \"name\": \"wftsvc-bm-20161025-012157409-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161026-012217543-v2\",\r\n \"name\": \"wftsvc-bm-20161026-012217543-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161028-014354355-v2\",\r\n \"name\": \"wftsvc-bm-20161028-014354355-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161029-012553441-v2\",\r\n \"name\": \"wftsvc-bm-20161029-012553441-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161030-012137041-v2\",\r\n \"name\": \"wftsvc-bm-20161030-012137041-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161031-012217322-v2\",\r\n \"name\": \"wftsvc-bm-20161031-012217322-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161101-012812361-v2\",\r\n \"name\": \"wftsvc-bm-20161101-012812361-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161102-044018564-v2\",\r\n \"name\": \"wftsvc-bm-20161102-044018564-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161115-012828172-v2\",\r\n \"name\": \"wftsvc-bm-20161115-012828172-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161116-012248545-v2\",\r\n \"name\": \"wftsvc-bm-20161116-012248545-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161117-013025621-v2\",\r\n \"name\": \"wftsvc-bm-20161117-013025621-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161118-162552118-v2\",\r\n \"name\": \"wftsvc-bm-20161118-162552118-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161119-020853683-v2\",\r\n \"name\": \"wftsvc-bm-20161119-020853683-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161120-015112327-v2\",\r\n \"name\": \"wftsvc-bm-20161120-015112327-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161121-013411054-v2\",\r\n \"name\": \"wftsvc-bm-20161121-013411054-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161122-014033729-v2\",\r\n \"name\": \"wftsvc-bm-20161122-014033729-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161123-020328423-v2\",\r\n \"name\": \"wftsvc-bm-20161123-020328423-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161124-013118943-v2\",\r\n \"name\": \"wftsvc-bm-20161124-013118943-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161125-012512715-v2\",\r\n \"name\": \"wftsvc-bm-20161125-012512715-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161126-012537693-v2\",\r\n \"name\": \"wftsvc-bm-20161126-012537693-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161127-012554430-v2\",\r\n \"name\": \"wftsvc-bm-20161127-012554430-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161128-012517911-v2\",\r\n \"name\": \"wftsvc-bm-20161128-012517911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161129-012602111-v2\",\r\n \"name\": \"wftsvc-bm-20161129-012602111-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161130-022145798-v2\",\r\n \"name\": \"wftsvc-bm-20161130-022145798-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161201-014317317-v2\",\r\n \"name\": \"wftsvc-bm-20161201-014317317-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161202-012812276-v2\",\r\n \"name\": \"wftsvc-bm-20161202-012812276-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161203-012713277-v2\",\r\n \"name\": \"wftsvc-bm-20161203-012713277-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161206-025602238-v2\",\r\n \"name\": \"wftsvc-bm-20161206-025602238-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161207-012657615-v2\",\r\n \"name\": \"wftsvc-bm-20161207-012657615-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161208-024401245-v2\",\r\n \"name\": \"wftsvc-bm-20161208-024401245-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161209-012721060-v2\",\r\n \"name\": \"wftsvc-bm-20161209-012721060-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161210-012529259-v2\",\r\n \"name\": \"wftsvc-bm-20161210-012529259-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161211-012543460-v2\",\r\n \"name\": \"wftsvc-bm-20161211-012543460-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161212-012643580-v2\",\r\n \"name\": \"wftsvc-bm-20161212-012643580-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161213-135747390-v2\",\r\n \"name\": \"wftsvc-bm-20161213-135747390-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161214-020204911-v2\",\r\n \"name\": \"wftsvc-bm-20161214-020204911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161215-012912635-v2\",\r\n \"name\": \"wftsvc-bm-20161215-012912635-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161216-014118622-v2\",\r\n \"name\": \"wftsvc-bm-20161216-014118622-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161217-013027250-v2\",\r\n \"name\": \"wftsvc-bm-20161217-013027250-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161218-042923602-v2\",\r\n \"name\": \"wftsvc-bm-20161218-042923602-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161219-024910832-v2\",\r\n \"name\": \"wftsvc-bm-20161219-024910832-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161220-021526028-v2\",\r\n \"name\": \"wftsvc-bm-20161220-021526028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161221-014332493-v2\",\r\n \"name\": \"wftsvc-bm-20161221-014332493-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161222-190424958-v2\",\r\n \"name\": \"wftsvc-bm-20161222-190424958-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161223-020219887-v2\",\r\n \"name\": \"wftsvc-bm-20161223-020219887-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161224-012754028-v2\",\r\n \"name\": \"wftsvc-bm-20161224-012754028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161225-012413900-v2\",\r\n \"name\": \"wftsvc-bm-20161225-012413900-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161226-012537497-v2\",\r\n \"name\": \"wftsvc-bm-20161226-012537497-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161227-012619489-v2\",\r\n \"name\": \"wftsvc-bm-20161227-012619489-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161228-012627978-v2\",\r\n \"name\": \"wftsvc-bm-20161228-012627978-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161229-013147614-v2\",\r\n \"name\": \"wftsvc-bm-20161229-013147614-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161230-012714627-v2\",\r\n \"name\": \"wftsvc-bm-20161230-012714627-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-ma-20161202-222619667-v2\",\r\n \"name\": \"wftsvc-ma-20161202-222619667-v2\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-ma-20161216-222607320-v2\",\r\n \"name\": \"wftsvc-ma-20161216-222607320-v2\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-mwh-20161203-012707281-v2\",\r\n \"name\": \"wftsvc-mwh-20161203-012707281-v2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-sn-20161129-211521656-v2\",\r\n \"name\": \"wftsvc-sn-20161129-211521656-v2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-sn-20161129-211525592-v2\",\r\n \"name\": \"wftsvc-sn-20161129-211525592-v2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yq-20161201-012845413-v2\",\r\n \"name\": \"wftsvc-yq-20161201-012845413-v2\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161026-012057297-v2\",\r\n \"name\": \"wftsvc-yt-20161026-012057297-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161210-012552629-v2\",\r\n \"name\": \"wftsvc-yt-20161210-012552629-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161221-012942018-v2\",\r\n \"name\": \"wftsvc-yt-20161221-012942018-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault1\",\r\n \"name\": \"wftsvcKeyVault1\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault2\",\r\n \"name\": \"wftsvcKeyVault2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault3\",\r\n \"name\": \"wftsvcKeyVault3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault4\",\r\n \"name\": \"wftsvcKeyVault4\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault5\",\r\n \"name\": \"wftsvcKeyVault5\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault6\",\r\n \"name\": \"wftsvcKeyVault6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVaultAM\",\r\n \"name\": \"wftsvcKeyVaultAM\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016bnrg\",\r\n \"name\": \"zikaiwtest10122016bnrg\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016chrg\",\r\n \"name\": \"zikaiwtest10122016chrg\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016dmrg\",\r\n \"name\": \"zikaiwtest10122016dmrg\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016osrg\",\r\n \"name\": \"zikaiwtest10122016osrg\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016snrg\",\r\n \"name\": \"zikaiwtest10122016snrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016tyrg\",\r\n \"name\": \"zikaiwtest10122016tyrg\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg\",\r\n \"name\": \"aaaaaaaaaaaaarg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1702250539\",\r\n \"name\": \"abhaymtest1702250539\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1702251613\",\r\n \"name\": \"abhaymtest1702251613\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703030726\",\r\n \"name\": \"abhaymtest1703030726\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703061931\",\r\n \"name\": \"abhaymtest1703061931\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703062131\",\r\n \"name\": \"abhaymtest1703062131\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703062345\",\r\n \"name\": \"abhaymtest1703062345\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703072008\",\r\n \"name\": \"abhaymtest1703072008\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703072343\",\r\n \"name\": \"abhaymtest1703072343\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayreverseproxy02\",\r\n \"name\": \"abhayreverseproxy02\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest01\",\r\n \"name\": \"abhaytest01\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest02\",\r\n \"name\": \"abhaytest02\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest04\",\r\n \"name\": \"abhaytest04\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayvm02\",\r\n \"name\": \"abhayvm02\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayvm03\",\r\n \"name\": \"abhayvm03\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/anmolprvbuild03\",\r\n \"name\": \"anmolprvbuild03\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/bztest-rg\",\r\n \"name\": \"bztest-rg\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/Default-ServiceBus-9653\",\r\n \"name\": \"Default-ServiceBus-9653\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/deployertest\",\r\n \"name\": \"deployertest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/dotnetsdkrg\",\r\n \"name\": \"dotnetsdkrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/nsgtest03\",\r\n \"name\": \"nsgtest03\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/nsgtest05\",\r\n \"name\": \"nsgtest05\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklinuxtest01\",\r\n \"name\": \"sdklinuxtest01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestrg2\",\r\n \"name\": \"sdktestrg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/SecureBaseImage\",\r\n \"name\": \"SecureBaseImage\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg\",\r\n \"name\": \"testCreaterg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1\",\r\n \"name\": \"testCreaterg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testsdkdnetrestrg\",\r\n \"name\": \"testsdkdnetrestrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-202955140-v2\",\r\n \"name\": \"wftsvc-bm-20161024-202955140-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-210350686-v2\",\r\n \"name\": \"wftsvc-bm-20161024-210350686-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-210948818-v2\",\r\n \"name\": \"wftsvc-bm-20161024-210948818-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161025-012157409-v2\",\r\n \"name\": \"wftsvc-bm-20161025-012157409-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161026-012217543-v2\",\r\n \"name\": \"wftsvc-bm-20161026-012217543-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161028-014354355-v2\",\r\n \"name\": \"wftsvc-bm-20161028-014354355-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161029-012553441-v2\",\r\n \"name\": \"wftsvc-bm-20161029-012553441-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161030-012137041-v2\",\r\n \"name\": \"wftsvc-bm-20161030-012137041-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161031-012217322-v2\",\r\n \"name\": \"wftsvc-bm-20161031-012217322-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161101-012812361-v2\",\r\n \"name\": \"wftsvc-bm-20161101-012812361-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161102-044018564-v2\",\r\n \"name\": \"wftsvc-bm-20161102-044018564-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161115-012828172-v2\",\r\n \"name\": \"wftsvc-bm-20161115-012828172-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161116-012248545-v2\",\r\n \"name\": \"wftsvc-bm-20161116-012248545-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161117-013025621-v2\",\r\n \"name\": \"wftsvc-bm-20161117-013025621-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161118-162552118-v2\",\r\n \"name\": \"wftsvc-bm-20161118-162552118-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161119-020853683-v2\",\r\n \"name\": \"wftsvc-bm-20161119-020853683-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161120-015112327-v2\",\r\n \"name\": \"wftsvc-bm-20161120-015112327-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161121-013411054-v2\",\r\n \"name\": \"wftsvc-bm-20161121-013411054-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161122-014033729-v2\",\r\n \"name\": \"wftsvc-bm-20161122-014033729-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161123-020328423-v2\",\r\n \"name\": \"wftsvc-bm-20161123-020328423-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161124-013118943-v2\",\r\n \"name\": \"wftsvc-bm-20161124-013118943-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161125-012512715-v2\",\r\n \"name\": \"wftsvc-bm-20161125-012512715-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161126-012537693-v2\",\r\n \"name\": \"wftsvc-bm-20161126-012537693-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161127-012554430-v2\",\r\n \"name\": \"wftsvc-bm-20161127-012554430-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161128-012517911-v2\",\r\n \"name\": \"wftsvc-bm-20161128-012517911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161129-012602111-v2\",\r\n \"name\": \"wftsvc-bm-20161129-012602111-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161130-022145798-v2\",\r\n \"name\": \"wftsvc-bm-20161130-022145798-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161201-014317317-v2\",\r\n \"name\": \"wftsvc-bm-20161201-014317317-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161202-012812276-v2\",\r\n \"name\": \"wftsvc-bm-20161202-012812276-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161203-012713277-v2\",\r\n \"name\": \"wftsvc-bm-20161203-012713277-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161206-025602238-v2\",\r\n \"name\": \"wftsvc-bm-20161206-025602238-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161207-012657615-v2\",\r\n \"name\": \"wftsvc-bm-20161207-012657615-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161208-024401245-v2\",\r\n \"name\": \"wftsvc-bm-20161208-024401245-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161209-012721060-v2\",\r\n \"name\": \"wftsvc-bm-20161209-012721060-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161210-012529259-v2\",\r\n \"name\": \"wftsvc-bm-20161210-012529259-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161211-012543460-v2\",\r\n \"name\": \"wftsvc-bm-20161211-012543460-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161212-012643580-v2\",\r\n \"name\": \"wftsvc-bm-20161212-012643580-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161213-135747390-v2\",\r\n \"name\": \"wftsvc-bm-20161213-135747390-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161214-020204911-v2\",\r\n \"name\": \"wftsvc-bm-20161214-020204911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161215-012912635-v2\",\r\n \"name\": \"wftsvc-bm-20161215-012912635-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161216-014118622-v2\",\r\n \"name\": \"wftsvc-bm-20161216-014118622-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161217-013027250-v2\",\r\n \"name\": \"wftsvc-bm-20161217-013027250-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161218-042923602-v2\",\r\n \"name\": \"wftsvc-bm-20161218-042923602-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161219-024910832-v2\",\r\n \"name\": \"wftsvc-bm-20161219-024910832-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161220-021526028-v2\",\r\n \"name\": \"wftsvc-bm-20161220-021526028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161221-014332493-v2\",\r\n \"name\": \"wftsvc-bm-20161221-014332493-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161222-190424958-v2\",\r\n \"name\": \"wftsvc-bm-20161222-190424958-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161223-020219887-v2\",\r\n \"name\": \"wftsvc-bm-20161223-020219887-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161224-012754028-v2\",\r\n \"name\": \"wftsvc-bm-20161224-012754028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161225-012413900-v2\",\r\n \"name\": \"wftsvc-bm-20161225-012413900-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161226-012537497-v2\",\r\n \"name\": \"wftsvc-bm-20161226-012537497-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161227-012619489-v2\",\r\n \"name\": \"wftsvc-bm-20161227-012619489-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161228-012627978-v2\",\r\n \"name\": \"wftsvc-bm-20161228-012627978-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161229-013147614-v2\",\r\n \"name\": \"wftsvc-bm-20161229-013147614-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161230-012714627-v2\",\r\n \"name\": \"wftsvc-bm-20161230-012714627-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-ma-20161202-222619667-v2\",\r\n \"name\": \"wftsvc-ma-20161202-222619667-v2\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-ma-20161216-222607320-v2\",\r\n \"name\": \"wftsvc-ma-20161216-222607320-v2\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-mwh-20161203-012707281-v2\",\r\n \"name\": \"wftsvc-mwh-20161203-012707281-v2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-sn-20161129-211521656-v2\",\r\n \"name\": \"wftsvc-sn-20161129-211521656-v2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-sn-20161129-211525592-v2\",\r\n \"name\": \"wftsvc-sn-20161129-211525592-v2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yq-20161201-012845413-v2\",\r\n \"name\": \"wftsvc-yq-20161201-012845413-v2\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161026-012057297-v2\",\r\n \"name\": \"wftsvc-yt-20161026-012057297-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161210-012552629-v2\",\r\n \"name\": \"wftsvc-yt-20161210-012552629-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161221-012942018-v2\",\r\n \"name\": \"wftsvc-yt-20161221-012942018-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault1\",\r\n \"name\": \"wftsvcKeyVault1\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault2\",\r\n \"name\": \"wftsvcKeyVault2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault3\",\r\n \"name\": \"wftsvcKeyVault3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault4\",\r\n \"name\": \"wftsvcKeyVault4\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault5\",\r\n \"name\": \"wftsvcKeyVault5\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault6\",\r\n \"name\": \"wftsvcKeyVault6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVaultAM\",\r\n \"name\": \"wftsvcKeyVaultAM\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016bnrg\",\r\n \"name\": \"zikaiwtest10122016bnrg\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016chrg\",\r\n \"name\": \"zikaiwtest10122016chrg\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016dmrg\",\r\n \"name\": \"zikaiwtest10122016dmrg\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016osrg\",\r\n \"name\": \"zikaiwtest10122016osrg\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016snrg\",\r\n \"name\": \"zikaiwtest10122016snrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016tyrg\",\r\n \"name\": \"zikaiwtest10122016tyrg\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 07 Mar 2017 05:26:27 GMT" + "Wed, 08 Mar 2017 14:51:21 GMT" ], "Pragma": [ "no-cache" @@ -38,16 +38,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14975" ], "x-ms-request-id": [ - "6ea9abe8-01ae-4c18-b698-698d376f0915" + "6d622bd2-6cd1-48e1-a6df-f1b26774eceb" ], "x-ms-correlation-request-id": [ - "6ea9abe8-01ae-4c18-b698-698d376f0915" + "6d622bd2-6cd1-48e1-a6df-f1b26774eceb" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170307T052628Z:6ea9abe8-01ae-4c18-b698-698d376f0915" + "WESTUS2:20170308T145121Z:6d622bd2-6cd1-48e1-a6df-f1b26774eceb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,7 +62,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4df574a2-c274-4259-8757-0bfb7aaa13f2" + "0d4c4b0b-8bc9-48e5-be6d-7d146aba4c11" ], "accept-language": [ "en-US" @@ -84,7 +84,7 @@ "no-cache" ], "Date": [ - "Tue, 07 Mar 2017 05:26:31 GMT" + "Wed, 08 Mar 2017 14:51:22 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +93,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14976" ], "x-ms-request-id": [ - "bd27d321-0577-46d3-9243-bddaf0a4c11f" + "3618d2b5-81f9-42d6-af71-69e2249182fa" ], "x-ms-correlation-request-id": [ - "bd27d321-0577-46d3-9243-bddaf0a4c11f" + "3618d2b5-81f9-42d6-af71-69e2249182fa" ], "x-ms-routing-request-id": [ - "WESTUS2:20170307T052631Z:bd27d321-0577-46d3-9243-bddaf0a4c11f" + "WESTUS2:20170308T145123Z:3618d2b5-81f9-42d6-af71-69e2249182fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -133,7 +133,7 @@ "no-cache" ], "Date": [ - "Tue, 07 Mar 2017 05:26:32 GMT" + "Wed, 08 Mar 2017 14:51:22 GMT" ], "Pragma": [ "no-cache" @@ -155,16 +155,16 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14975" ], "x-ms-request-id": [ - "d19effca-fd92-4ae3-9c21-80f7fcce6228" + "4cc9ea1c-cb23-4ca2-915f-b9e0da3d1de8" ], "x-ms-correlation-request-id": [ - "d19effca-fd92-4ae3-9c21-80f7fcce6228" + "4cc9ea1c-cb23-4ca2-915f-b9e0da3d1de8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170307T052632Z:d19effca-fd92-4ae3-9c21-80f7fcce6228" + "WESTUS2:20170308T145123Z:4cc9ea1c-cb23-4ca2-915f-b9e0da3d1de8" ] }, "StatusCode": 200 @@ -195,7 +195,7 @@ "no-cache" ], "Date": [ - "Tue, 07 Mar 2017 05:26:32 GMT" + "Wed, 08 Mar 2017 14:51:23 GMT" ], "Pragma": [ "no-cache" @@ -204,13 +204,13 @@ "gateway" ], "x-ms-request-id": [ - "f074e6de-eb43-4e47-82f1-09150d7d2713" + "b3cae4d2-4f68-49fe-89ba-7c3662903319" ], "x-ms-correlation-request-id": [ - "f074e6de-eb43-4e47-82f1-09150d7d2713" + "b3cae4d2-4f68-49fe-89ba-7c3662903319" ], "x-ms-routing-request-id": [ - "WESTUS2:20170307T052632Z:f074e6de-eb43-4e47-82f1-09150d7d2713" + "WESTUS2:20170308T145124Z:b3cae4d2-4f68-49fe-89ba-7c3662903319" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestList.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestList.json index 08748421cb16..c54d89f1f39a 100644 --- a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestList.json +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestList.json @@ -11,7 +11,7 @@ "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/deployertest/providers/Microsoft.ServiceFabric/clusters/deployertest\",\r\n \"name\": \"deployertest\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"deployertest\"\r\n },\r\n \"etag\": \"W/\\\"636197629293638021\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"59e810a3-1644-47e2-86b5-a66e916c0bb8\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://deployertest.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/59e810a3-1644-47e2-86b5-a66e916c0bb8\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsdeployertest6267\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsdeployertest6267.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsdeployertest6267.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsdeployertest6267.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"deployer\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703010700/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703010700\",\r\n \"name\": \"abhaymtest1703010700\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703010700\"\r\n },\r\n \"etag\": \"W/\\\"636239485014229464\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6c448df9-f950-4466-b205-2bc89e7784e4\",\r\n \"clusterCodeVersion\": \"5.3.311.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703010700.westus2.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus2.servicefabric.azure.com/runtime/clusters/6c448df9-f950-4466-b205-2bc89e7784e4\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:01:00\",\r\n \"healthCheckStableDuration\": \"00:01:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"4kgfrfofem5ga2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://4kgfrfofem5ga2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://4kgfrfofem5ga2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://4kgfrfofem5ga2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703012245/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703012245\",\r\n \"name\": \"abhaymtest1703012245\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703012245\"\r\n },\r\n \"etag\": \"W/\\\"636240051835519823\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"55d5a53a-b95b-485d-ba92-74e823c1d86a\",\r\n \"clusterCodeVersion\": \"5.4.145.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703012245.westus2.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus2.servicefabric.azure.com/runtime/clusters/55d5a53a-b95b-485d-ba92-74e823c1d86a\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:01:00\",\r\n \"healthCheckStableDuration\": \"00:01:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"t5554vdvsr5ns2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://t5554vdvsr5ns2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://t5554vdvsr5ns2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://t5554vdvsr5ns2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703012344/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703012344\",\r\n \"name\": \"abhaymtest1703012344\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703012344\"\r\n },\r\n \"etag\": \"W/\\\"636240087043530260\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"1e93ce39-939b-4bd2-95d7-84977653c6b5\",\r\n \"clusterCodeVersion\": \"5.3.301.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703012344.westus2.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus2.servicefabric.azure.com/runtime/clusters/1e93ce39-939b-4bd2-95d7-84977653c6b5\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"6rtd6hemeobas2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://6rtd6hemeobas2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://6rtd6hemeobas2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://6rtd6hemeobas2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703061931/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703061931\",\r\n \"name\": \"abhaymtest1703061931\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703061931\"\r\n },\r\n \"etag\": \"W/\\\"636244255602049660\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8bf3f6ed-a780-49dc-927b-c5511fe21076\",\r\n \"clusterCodeVersion\": \"5.3.301.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703061931.westus2.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus2.servicefabric.azure.com/runtime/clusters/8bf3f6ed-a780-49dc-927b-c5511fe21076\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"amloc5ev2zcsa2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://amloc5ev2zcsa2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://amloc5ev2zcsa2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://amloc5ev2zcsa2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/wftsvc-mwh-20161203-012707281-v2/providers/Microsoft.ServiceFabric/clusters/wftsvc-mwh-20161203-\",\r\n \"name\": \"wftsvc-mwh-20161203-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"wftsvc-mwh-20161203-\"\r\n },\r\n \"etag\": \"W/\\\"636163252596227409\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"f7c0ff3b-0ff5-41df-8f0c-4e51f46bee79\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://wftsvc-mwh-20161203-012707281-v2.westus2.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus2.servicefabric.azure.com/runtime/clusters/f7c0ff3b-0ff5-41df-8f0c-4e51f46bee79\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagmwh20161203012707\",\r\n \"primaryAccessKey\": \"2+20fZYSmdfT8KUPCUu5UKXvHeLKTuFwqm3UBJCkmX42iKPqq9qLxc09cVx0Uolaw6s6HRUtIOm83uHMPSKEdg==\",\r\n \"secondaryAccessKey\": \"Mn8li9IXuNnQgfdTlFKR8eGW+HHKopQa7tSgKF4WlYemA2xWxbZCSV/toP4142FzQEg72HEH7q0AhTXDzDXHKg==\",\r\n \"blobEndpoint\": \"https://diagmwh20161203012707.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagmwh20161203012707.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagmwh20161203012707.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703062131/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703062131\",\r\n \"name\": \"abhaymtest1703062131\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703062131\"\r\n },\r\n \"etag\": \"W/\\\"636244327150066216\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"bc2e164d-009a-4b30-b302-ca9d72a4f92b\",\r\n \"clusterCodeVersion\": \"5.3.301.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703062131.westus2.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus2.servicefabric.azure.com/runtime/clusters/bc2e164d-009a-4b30-b302-ca9d72a4f92b\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"ghxpn355atby42\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://ghxpn355atby42.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://ghxpn355atby42.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://ghxpn355atby42.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703062345/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703062345\",\r\n \"name\": \"abhaymtest1703062345\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703062345\"\r\n },\r\n \"etag\": \"W/\\\"636244408062668480\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"aadc8f9d-4227-4b49-bc11-40cdaea69be0\",\r\n \"clusterCodeVersion\": \"5.3.301.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703062345.westus2.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus2.servicefabric.azure.com/runtime/clusters/aadc8f9d-4227-4b49-bc11-40cdaea69be0\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"vu4zfs2wvfiii2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://vu4zfs2wvfiii2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://vu4zfs2wvfiii2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://vu4zfs2wvfiii2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703020634/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703020634\",\r\n \"name\": \"abhaymtest1703020634\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703020634\"\r\n },\r\n \"etag\": \"W/\\\"636240332991515912\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"b2d6b6af-bf01-4dd0-ac4f-a08c1cbab55f\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"https://abhaymtest1703020634.eastus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://eastus.servicefabric.azure.com/runtime/clusters/b2d6b6af-bf01-4dd0-ac4f-a08c1cbab55f\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A13273F20693D4F64DF0A95F3AA2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"33j6ims7l56f22\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://33j6ims7l56f22.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://33j6ims7l56f22.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://33j6ims7l56f22.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703030726/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703030726\",\r\n \"name\": \"abhaymtest1703030726\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703030726\"\r\n },\r\n \"etag\": \"W/\\\"636241228239120742\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"64f138aa-2977-4be4-8d3f-1b96e38c06cb\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"https://abhaymtest1703030726.eastus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://eastus.servicefabric.azure.com/runtime/clusters/64f138aa-2977-4be4-8d3f-1b96e38c06cb\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A13273F20693D4F64DF0A95F3AA2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"kurweiopfpqkc2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://kurweiopfpqkc2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://kurweiopfpqkc2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://kurweiopfpqkc2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaytest04/providers/Microsoft.ServiceFabric/clusters/abhaytest04\",\r\n \"name\": \"abhaytest04\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaytest04\"\r\n },\r\n \"etag\": \"W/\\\"636240026373863680\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"82973fcb-619e-4ccb-b8bb-587b18ff9b1a\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"https://abhaytest04.eastus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://eastus.servicefabric.azure.com/runtime/clusters/82973fcb-619e-4ccb-b8bb-587b18ff9b1a\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A13273F20693AAF64DF0A95F3CC2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsabhaytest049097\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsabhaytest049097.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsabhaytest049097.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsabhaytest049097.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"eastus2\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/zikaiwtest10122016bnrg/providers/Microsoft.ServiceFabric/clusters/zikaiwtest10122016bn\",\r\n \"name\": \"zikaiwtest10122016bn\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"zikaiwtest10122016bn\"\r\n },\r\n \"etag\": \"W/\\\"636118908725516786\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"af8fac49-af05-4337-9857-51e956ced173\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://zikaiwtest10122016bn.eastus2.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://eastus2.servicefabric.azure.com/runtime/clusters/af8fac49-af05-4337-9857-51e956ced173\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogszikaiwtest10124216\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogszikaiwtest10124216.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogszikaiwtest10124216.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogszikaiwtest10124216.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"WF\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"centralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/zikaiwtest10122016dmrg/providers/Microsoft.ServiceFabric/clusters/zikaiwtest10122016dm\",\r\n \"name\": \"zikaiwtest10122016dm\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"zikaiwtest10122016dm\"\r\n },\r\n \"etag\": \"W/\\\"636118907464750682\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9c6943c7-ba3d-4fb1-ba68-20cff4513cdc\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://zikaiwtest10122016dm.centralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://centralus.servicefabric.azure.com/runtime/clusters/9c6943c7-ba3d-4fb1-ba68-20cff4513cdc\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogszikaiwtest10129205\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogszikaiwtest10129205.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogszikaiwtest10129205.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogszikaiwtest10129205.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"WF\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaytest01/providers/Microsoft.ServiceFabric/clusters/abhaytest01\",\r\n \"name\": \"abhaytest01\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaytest01\"\r\n },\r\n \"etag\": \"W/\\\"636239898702041573\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"5cb962f2-dc5b-48ce-b06a-7757b7c534db\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaytest01.westeurope.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westeurope.servicefabric.azure.com/runtime/clusters/5cb962f2-dc5b-48ce-b06a-7757b7c534db\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsabhaytest019318\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsabhaytest019318.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsabhaytest019318.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsabhaytest019318.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"northcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/zikaiwtest10122016chrg/providers/Microsoft.ServiceFabric/clusters/zikaiwtest10122016ch\",\r\n \"name\": \"zikaiwtest10122016ch\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"zikaiwtest10122016ch\"\r\n },\r\n \"etag\": \"W/\\\"636118910065246806\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"051b82cf-2bc6-4221-a727-17e0de1e4e51\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://zikaiwtest10122016ch.northcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://northcentralus.servicefabric.azure.com/runtime/clusters/051b82cf-2bc6-4221-a727-17e0de1e4e51\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogszikaiwtest10122415\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogszikaiwtest10122415.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogszikaiwtest10122415.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogszikaiwtest10122415.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"WF\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"eastasia\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/nsgtest03/providers/Microsoft.ServiceFabric/clusters/nsgtest03\",\r\n \"name\": \"nsgtest03\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"nsgtest03\"\r\n },\r\n \"etag\": \"W/\\\"636143605818331675\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"ac15585b-5d7b-4e82-8d1d-2d2ceab638a2\",\r\n \"clusterCodeVersion\": \"5.3.301.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://nsgtest03.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://eastasia.servicefabric.azure.com/runtime/clusters/ac15585b-5d7b-4e82-8d1d-2d2ceab638a2\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogs2idnfejoizlt22\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2idnfejoizlt22.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogs2idnfejoizlt22.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogs2idnfejoizlt22.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"GTVM\",\r\n \"placementProperties\": {\r\n \"gatewayAllowed\": \"true\",\r\n \"systemServicesAllowed\": \"false\",\r\n \"streamProcessorAllowed\": \"false\",\r\n \"requestManagerAllowed\": \"false\",\r\n \"provisioningAllowed\": \"true\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"eastasia\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/nsgtest05/providers/Microsoft.ServiceFabric/clusters/nsgtest05\",\r\n \"name\": \"nsgtest05\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"nsgtest05\"\r\n },\r\n \"etag\": \"W/\\\"636144047518201703\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"c09d10e6-8cc9-40bf-88dd-246acdde5ea7\",\r\n \"clusterCodeVersion\": \"5.3.301.9590\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://nsgtest05.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://eastasia.servicefabric.azure.com/runtime/clusters/c09d10e6-8cc9-40bf-88dd-246acdde5ea7\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsz4fwhlzushoes2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsz4fwhlzushoes2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsz4fwhlzushoes2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsz4fwhlzushoes2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"GTVM\",\r\n \"placementProperties\": {\r\n \"gatewayAllowed\": \"true\",\r\n \"systemServicesAllowed\": \"false\",\r\n \"streamProcessorAllowed\": \"false\",\r\n \"requestManagerAllowed\": \"false\",\r\n \"provisioningAllowed\": \"true\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"japanwest\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/zikaiwtest10122016osrg/providers/Microsoft.ServiceFabric/clusters/zikaiwtest10122016os\",\r\n \"name\": \"zikaiwtest10122016os\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"zikaiwtest10122016os\"\r\n },\r\n \"etag\": \"W/\\\"636118914810023720\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"480f787d-ebfe-45b1-b9f0-917f21682d14\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://zikaiwtest10122016os.japanwest.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westjapan.servicefabric.azure.com/runtime/clusters/480f787d-ebfe-45b1-b9f0-917f21682d14\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogszikaiwtest10127306\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogszikaiwtest10127306.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogszikaiwtest10127306.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogszikaiwtest10127306.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"WF\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/zikaiwtest10122016tyrg/providers/Microsoft.ServiceFabric/clusters/zikaiwtest10122016ty\",\r\n \"name\": \"zikaiwtest10122016ty\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"zikaiwtest10122016ty\"\r\n },\r\n \"etag\": \"W/\\\"636118913413046187\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"a356a1d5-ed4f-4cdd-9b28-ee40b79ea34a\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://zikaiwtest10122016ty.japaneast.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://eastjapan.servicefabric.azure.com/runtime/clusters/a356a1d5-ed4f-4cdd-9b28-ee40b79ea34a\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogszikaiwtest10126623\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogszikaiwtest10126623.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogszikaiwtest10126623.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogszikaiwtest10126623.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"WF\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southindia\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/wftsvc-ma-20161202-222619667-v2/providers/Microsoft.ServiceFabric/clusters/wftsvc-ma-20161202-2\",\r\n \"name\": \"wftsvc-ma-20161202-2\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"wftsvc-ma-20161202-2\"\r\n },\r\n \"etag\": \"W/\\\"636163144488368065\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"a15ba6be-2e5e-49e7-8457-f6aeb88247ed\",\r\n \"clusterCodeVersion\": \"5.3.311.9590\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://wftsvc-ma-20161202-222619667-v2.southindia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://southindia.servicefabric.azure.com/runtime/clusters/a15ba6be-2e5e-49e7-8457-f6aeb88247ed\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagma20161202222619\",\r\n \"primaryAccessKey\": \"PEAjtqu51MYL4t9NIWC8f3MTfbyq8WCbFv0cyCNlFVMbfoAfwji5hLDiHxsSWmuBm4tSGIqMfjh2IiaecPWWsA==\",\r\n \"secondaryAccessKey\": \"W83Lr6FzTGZRjXyf3ETJayV17jJE5rfBJ3z+rDh9fdNkKUywV2+8/UF356HQZ2VuD9EXfyNAJ+6AAKRDUtibGw==\",\r\n \"blobEndpoint\": \"https://diagma20161202222619.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagma20161202222619.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagma20161202222619.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southindia\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/wftsvc-ma-20161216-222607320-v2/providers/Microsoft.ServiceFabric/clusters/wftsvc-ma-20161216-2\",\r\n \"name\": \"wftsvc-ma-20161216-2\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"wftsvc-ma-20161216-2\"\r\n },\r\n \"etag\": \"W/\\\"636175240100424900\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"d36dc919-f90b-488a-a637-692c60c313e2\",\r\n \"clusterCodeVersion\": \"5.4.145.9494\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://wftsvc-ma-20161216-222607320-v2.southindia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://southindia.servicefabric.azure.com/runtime/clusters/d36dc919-f90b-488a-a637-692c60c313e2\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagma20161216222607\",\r\n \"primaryAccessKey\": \"Q52vgLTLo8AOja6ZcB96IcREKV5xpkLtH8kRktYvVcBCkzczgBedbbhWswiNuL7lTtrAm/5UuRdxMb5a8muEEw==\",\r\n \"secondaryAccessKey\": \"pyFssc4UxbdxTfWkawgcROdk61Bs+JT3WL0bOw7+DGzK8oztR3nR9djzq0zS9klq4DTukat9LADN5jMU/bYK1w==\",\r\n \"blobEndpoint\": \"https://diagma20161216222607.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagma20161216222607.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagma20161216222607.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"brazilsouth\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/bztest-rg/providers/Microsoft.ServiceFabric/clusters/bztest\",\r\n \"name\": \"bztest\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"bztest\"\r\n },\r\n \"etag\": \"W/\\\"636058476587798244\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"cece147a-0b32-4390-beb6-e497934165d5\",\r\n \"clusterCodeVersion\": \"5.1.163.9590\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://bztest.brazilsouth.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://southbrazil.servicefabric.azure.com/runtime/clusters/cece147a-0b32-4390-beb6-e497934165d5\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsbztest2340\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsbztest2340.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsbztest2340.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsbztest2340.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"FE\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.1.163.9590\",\r\n \"supportExpiryUtc\": \"2017-01-20T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.121.9494\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"canadacentral\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/wftsvc-yt-20161026-012057297-v2/providers/Microsoft.ServiceFabric/clusters/wftsvc-yt-20161026-0\",\r\n \"name\": \"wftsvc-yt-20161026-0\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"wftsvc-yt-20161026-0\"\r\n },\r\n \"etag\": \"W/\\\"636130416957754817\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"254ef458-b578-4f77-b03c-71ef13d0c1bf\",\r\n \"clusterCodeVersion\": \"5.3.301.9590\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://wftsvc-yt-20161026-012057297-v2.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://centralcanada.servicefabric.azure.com/runtime/clusters/254ef458-b578-4f77-b03c-71ef13d0c1bf\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagyt20161026012057\",\r\n \"primaryAccessKey\": \"F9RVqgSqMSvC4/YB9OlHQh7dlUCit4LqE+8loPVfMDcE0aT5h+LP+Iwjq5N/KIVrr9Rz+xcBvIRnqj7o6eBXdg==\",\r\n \"secondaryAccessKey\": \"3prsh7JbxEjsKeuerXA67KI3d69x3l9xxZWTOCgTRkYKVVkZhzGsp3ctolBW4hW93tbz0JFOmYP9qWcv+syvGg==\",\r\n \"blobEndpoint\": \"https://diagyt20161026012057.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagyt20161026012057.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagyt20161026012057.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"canadacentral\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/wftsvc-yt-20161210-012552629-v2/providers/Microsoft.ServiceFabric/clusters/wftsvc-yt-20161210-0\",\r\n \"name\": \"wftsvc-yt-20161210-0\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"wftsvc-yt-20161210-0\"\r\n },\r\n \"etag\": \"W/\\\"636169300125211270\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"323f6f5a-e494-42de-af90-8c3fcaa041aa\",\r\n \"clusterCodeVersion\": \"5.4.145.9494\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://wftsvc-yt-20161210-012552629-v2.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://centralcanada.servicefabric.azure.com/runtime/clusters/323f6f5a-e494-42de-af90-8c3fcaa041aa\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagyt20161210012552\",\r\n \"primaryAccessKey\": \"HAp7JviOdhbBA4Hp4jpBUVQJ/6VVv2TTnAB7PnG+cVQbuV7K/8CvlMblKSzOnK6hiEI3ufsuoGVxXYEUxWhhAQ==\",\r\n \"secondaryAccessKey\": \"Kr5RgIxa2isAX/+Z5k+F0O7UhH3ORIBXARXroXVzPj6ByGBnXfZLhU6dmguokb4WGbXDoCIOm+EHprEZsrUhEw==\",\r\n \"blobEndpoint\": \"https://diagyt20161210012552.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagyt20161210012552.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagyt20161210012552.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"canadacentral\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/wftsvc-yt-20161221-012942018-v2/providers/Microsoft.ServiceFabric/clusters/wftsvc-yt-20161221-0\",\r\n \"name\": \"wftsvc-yt-20161221-0\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"wftsvc-yt-20161221-0\"\r\n },\r\n \"etag\": \"W/\\\"636178806211614120\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9286266b-50b7-46d3-8dcb-86b0189a1851\",\r\n \"clusterCodeVersion\": \"5.4.145.9494\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://wftsvc-yt-20161221-012942018-v2.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://centralcanada.servicefabric.azure.com/runtime/clusters/9286266b-50b7-46d3-8dcb-86b0189a1851\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagyt20161221012942\",\r\n \"primaryAccessKey\": \"AZWNWBkgJl+GBrTxH8TvJLd5lfbhIjZWslBaCgS2iH7n7tR4N7Xy1y/9RNr3mQ1+hFV86sxn9+XSGiruGejTpQ==\",\r\n \"secondaryAccessKey\": \"vPlVaIqF5u660R4dHBSuM+EdLJ6ADeQVxv2wEbAHBAuhKTQC9F9RhH0nuTVCN1oPH8avk3mZkGRKTNwl7Z7DGQ==\",\r\n \"blobEndpoint\": \"https://diagyt20161221012942.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagyt20161221012942.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagyt20161221012942.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"canadaeast\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/wftsvc-yq-20161201-012845413-v2/providers/Microsoft.ServiceFabric/clusters/wftsvc-yq-20161201-0\",\r\n \"name\": \"wftsvc-yq-20161201-0\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"wftsvc-yq-20161201-0\"\r\n },\r\n \"etag\": \"W/\\\"636161525689267021\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"99714df5-ce9b-4959-a4ee-f6c22f2713bd\",\r\n \"clusterCodeVersion\": \"5.3.301.9590\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://wftsvc-yq-20161201-012845413-v2.canadaeast.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://eastcanada.servicefabric.azure.com/runtime/clusters/99714df5-ce9b-4959-a4ee-f6c22f2713bd\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagyq20161201012845\",\r\n \"primaryAccessKey\": \"QPnyOiZwptIClQQjVU0MwL/kzunj6LGuW6u3D5c4aTbyYIyfkvw2M/RsNZAmVMgDOUb9/ppmlGYXe4hBzMG6oQ==\",\r\n \"secondaryAccessKey\": \"YB2q32M0lHy5mMUASGTr/PaM4FkpH8iKeqBGUiz1lw8wsR7T8NUdPNkKQi+LnbMFwkS2NNI8v5/zvXiXKoW1yw==\",\r\n \"blobEndpoint\": \"https://diagyq20161201012845.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagyq20161201012845.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagyq20161201012845.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa\",\r\n \"name\": \"aaaaaaaaaaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaaaaaaaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636244362547166622\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaaaaaaaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"8888\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaaaaaaaaaa6877\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1702250539/providers/Microsoft.ServiceFabric/clusters/abhaymtest1702250539\",\r\n \"name\": \"abhaymtest1702250539\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1702250539\"\r\n },\r\n \"etag\": \"W/\\\"636235980414159804\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"6cd0affa-4be5-4bce-84fe-2301b19bd9f9\",\r\n \"clusterCodeVersion\": \"5.5.201.0\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"http://abhaymtest1702250539.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/6cd0affa-4be5-4bce-84fe-2301b19bd9f9\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"nwfsb4vkiahws2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://nwfsb4vkiahws2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://nwfsb4vkiahws2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://nwfsb4vkiahws2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1702251613/providers/Microsoft.ServiceFabric/clusters/abhaymtest1702251613\",\r\n \"name\": \"abhaymtest1702251613\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1702251613\"\r\n },\r\n \"etag\": \"W/\\\"636236360610819115\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"60b8eaa4-751f-4945-ba89-aff2d85be72a\",\r\n \"clusterCodeVersion\": \"5.5.201.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1702251613.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/60b8eaa4-751f-4945-ba89-aff2d85be72a\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"6sd5awwmol7yy2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://6sd5awwmol7yy2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://6sd5awwmol7yy2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://6sd5awwmol7yy2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sdktestrg2/providers/Microsoft.ServiceFabric/clusters/sdktest\",\r\n \"name\": \"sdktest\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sdktest\"\r\n },\r\n \"etag\": \"W/\\\"636244182147134128\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8d566293-3508-4d62-ba7b-056fa710c3c9\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8d566293-3508-4d62-ba7b-056fa710c3c9\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000000\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogssdktest5486\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogssdktest5486.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogssdktest5486.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogssdktest5486.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testCreaterg/providers/Microsoft.ServiceFabric/clusters/testCreateCluster\",\r\n \"name\": \"testCreateCluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636244261869715147\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"7ad66ff6-062b-41a1-8f96-c32b222e3e5e\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/7ad66ff6-062b-41a1-8f96-c32b222e3e5e\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testCreaterg1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636244595927345289\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"ed4fa900-6c59-430b-b807-2e440ac20456\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/ed4fa900-6c59-430b-b807-2e440ac20456\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/deployertest/providers/Microsoft.ServiceFabric/clusters/deployertest\",\r\n \"name\": \"deployertest\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"deployertest\"\r\n },\r\n \"etag\": \"W/\\\"636197629293638021\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"59e810a3-1644-47e2-86b5-a66e916c0bb8\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://deployertest.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/59e810a3-1644-47e2-86b5-a66e916c0bb8\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": true,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsdeployertest6267\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsdeployertest6267.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsdeployertest6267.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsdeployertest6267.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"deployer\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703061931/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703061931\",\r\n \"name\": \"abhaymtest1703061931\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703061931\"\r\n },\r\n \"etag\": \"W/\\\"636244255602049660\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8bf3f6ed-a780-49dc-927b-c5511fe21076\",\r\n \"clusterCodeVersion\": \"5.3.301.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703061931.westus2.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus2.servicefabric.azure.com/runtime/clusters/8bf3f6ed-a780-49dc-927b-c5511fe21076\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"amloc5ev2zcsa2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://amloc5ev2zcsa2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://amloc5ev2zcsa2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://amloc5ev2zcsa2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/wftsvc-mwh-20161203-012707281-v2/providers/Microsoft.ServiceFabric/clusters/wftsvc-mwh-20161203-\",\r\n \"name\": \"wftsvc-mwh-20161203-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"wftsvc-mwh-20161203-\"\r\n },\r\n \"etag\": \"W/\\\"636163252596227409\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"f7c0ff3b-0ff5-41df-8f0c-4e51f46bee79\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://wftsvc-mwh-20161203-012707281-v2.westus2.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus2.servicefabric.azure.com/runtime/clusters/f7c0ff3b-0ff5-41df-8f0c-4e51f46bee79\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagmwh20161203012707\",\r\n \"primaryAccessKey\": \"2+20fZYSmdfT8KUPCUu5UKXvHeLKTuFwqm3UBJCkmX42iKPqq9qLxc09cVx0Uolaw6s6HRUtIOm83uHMPSKEdg==\",\r\n \"secondaryAccessKey\": \"Mn8li9IXuNnQgfdTlFKR8eGW+HHKopQa7tSgKF4WlYemA2xWxbZCSV/toP4142FzQEg72HEH7q0AhTXDzDXHKg==\",\r\n \"blobEndpoint\": \"https://diagmwh20161203012707.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagmwh20161203012707.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagmwh20161203012707.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703062131/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703062131\",\r\n \"name\": \"abhaymtest1703062131\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703062131\"\r\n },\r\n \"etag\": \"W/\\\"636244327150066216\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"bc2e164d-009a-4b30-b302-ca9d72a4f92b\",\r\n \"clusterCodeVersion\": \"5.3.301.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703062131.westus2.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus2.servicefabric.azure.com/runtime/clusters/bc2e164d-009a-4b30-b302-ca9d72a4f92b\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"ghxpn355atby42\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://ghxpn355atby42.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://ghxpn355atby42.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://ghxpn355atby42.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703062345/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703062345\",\r\n \"name\": \"abhaymtest1703062345\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703062345\"\r\n },\r\n \"etag\": \"W/\\\"636244408062668480\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"aadc8f9d-4227-4b49-bc11-40cdaea69be0\",\r\n \"clusterCodeVersion\": \"5.3.301.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703062345.westus2.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus2.servicefabric.azure.com/runtime/clusters/aadc8f9d-4227-4b49-bc11-40cdaea69be0\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"vu4zfs2wvfiii2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://vu4zfs2wvfiii2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://vu4zfs2wvfiii2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://vu4zfs2wvfiii2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703072343/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703072343\",\r\n \"name\": \"abhaymtest1703072343\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703072343\"\r\n },\r\n \"etag\": \"W/\\\"636245270549922862\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"631525e0-49f8-49db-923d-5bbd5c174c6e\",\r\n \"clusterCodeVersion\": \"5.3.301.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703072343.westus2.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus2.servicefabric.azure.com/runtime/clusters/631525e0-49f8-49db-923d-5bbd5c174c6e\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"3stvlgh5qzm2m2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://3stvlgh5qzm2m2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://3stvlgh5qzm2m2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://3stvlgh5qzm2m2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703030726/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703030726\",\r\n \"name\": \"abhaymtest1703030726\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703030726\"\r\n },\r\n \"etag\": \"W/\\\"636241228239120742\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"64f138aa-2977-4be4-8d3f-1b96e38c06cb\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"https://abhaymtest1703030726.eastus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://eastus.servicefabric.azure.com/runtime/clusters/64f138aa-2977-4be4-8d3f-1b96e38c06cb\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A13273F20693D4F64DF0A95F3AA2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": true,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"kurweiopfpqkc2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://kurweiopfpqkc2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://kurweiopfpqkc2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://kurweiopfpqkc2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaytest04/providers/Microsoft.ServiceFabric/clusters/abhaytest04\",\r\n \"name\": \"abhaytest04\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaytest04\"\r\n },\r\n \"etag\": \"W/\\\"636240026373863680\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"82973fcb-619e-4ccb-b8bb-587b18ff9b1a\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"https://abhaytest04.eastus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://eastus.servicefabric.azure.com/runtime/clusters/82973fcb-619e-4ccb-b8bb-587b18ff9b1a\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A13273F20693AAF64DF0A95F3CC2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": true,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsabhaytest049097\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsabhaytest049097.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsabhaytest049097.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsabhaytest049097.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703072008/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703072008\",\r\n \"name\": \"abhaymtest1703072008\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703072008\"\r\n },\r\n \"etag\": \"W/\\\"636245141650364780\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"3ae5069d-190c-4485-bb1b-1572bbb9efd4\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"https://abhaymtest1703072008.eastus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://eastus.servicefabric.azure.com/runtime/clusters/3ae5069d-190c-4485-bb1b-1572bbb9efd4\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A13273F20693D4F64DF0A95F3AA2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": true,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"j6nqgwato3bbg2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://j6nqgwato3bbg2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://j6nqgwato3bbg2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://j6nqgwato3bbg2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"eastus2\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/zikaiwtest10122016bnrg/providers/Microsoft.ServiceFabric/clusters/zikaiwtest10122016bn\",\r\n \"name\": \"zikaiwtest10122016bn\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"zikaiwtest10122016bn\"\r\n },\r\n \"etag\": \"W/\\\"636118908725516786\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"af8fac49-af05-4337-9857-51e956ced173\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://zikaiwtest10122016bn.eastus2.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://eastus2.servicefabric.azure.com/runtime/clusters/af8fac49-af05-4337-9857-51e956ced173\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogszikaiwtest10124216\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogszikaiwtest10124216.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogszikaiwtest10124216.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogszikaiwtest10124216.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"WF\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"centralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/zikaiwtest10122016dmrg/providers/Microsoft.ServiceFabric/clusters/zikaiwtest10122016dm\",\r\n \"name\": \"zikaiwtest10122016dm\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"zikaiwtest10122016dm\"\r\n },\r\n \"etag\": \"W/\\\"636118907464750682\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9c6943c7-ba3d-4fb1-ba68-20cff4513cdc\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://zikaiwtest10122016dm.centralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://centralus.servicefabric.azure.com/runtime/clusters/9c6943c7-ba3d-4fb1-ba68-20cff4513cdc\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogszikaiwtest10129205\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogszikaiwtest10129205.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogszikaiwtest10129205.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogszikaiwtest10129205.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"WF\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaytest01/providers/Microsoft.ServiceFabric/clusters/abhaytest01\",\r\n \"name\": \"abhaytest01\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaytest01\"\r\n },\r\n \"etag\": \"W/\\\"636239898702041573\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"5cb962f2-dc5b-48ce-b06a-7757b7c534db\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaytest01.westeurope.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westeurope.servicefabric.azure.com/runtime/clusters/5cb962f2-dc5b-48ce-b06a-7757b7c534db\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsabhaytest019318\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsabhaytest019318.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsabhaytest019318.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsabhaytest019318.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaytest02/providers/Microsoft.ServiceFabric/clusters/abhaytest02\",\r\n \"name\": \"abhaytest02\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaytest02\"\r\n },\r\n \"etag\": \"W/\\\"636245336382807943\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"d68ceded-9206-412d-8464-58dbdba5b1e9\",\r\n \"clusterCodeVersion\": \"5.4.145.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaytest02.westeurope.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westeurope.servicefabric.azure.com/runtime/clusters/d68ceded-9206-412d-8464-58dbdba5b1e9\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsabhaytest029387\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsabhaytest029387.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsabhaytest029387.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsabhaytest029387.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"northcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/zikaiwtest10122016chrg/providers/Microsoft.ServiceFabric/clusters/zikaiwtest10122016ch\",\r\n \"name\": \"zikaiwtest10122016ch\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"zikaiwtest10122016ch\"\r\n },\r\n \"etag\": \"W/\\\"636118910065246806\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"051b82cf-2bc6-4221-a727-17e0de1e4e51\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://zikaiwtest10122016ch.northcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://northcentralus.servicefabric.azure.com/runtime/clusters/051b82cf-2bc6-4221-a727-17e0de1e4e51\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogszikaiwtest10122415\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogszikaiwtest10122415.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogszikaiwtest10122415.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogszikaiwtest10122415.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"WF\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"eastasia\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/nsgtest03/providers/Microsoft.ServiceFabric/clusters/nsgtest03\",\r\n \"name\": \"nsgtest03\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"nsgtest03\"\r\n },\r\n \"etag\": \"W/\\\"636143605818331675\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"ac15585b-5d7b-4e82-8d1d-2d2ceab638a2\",\r\n \"clusterCodeVersion\": \"5.3.301.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://nsgtest03.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://eastasia.servicefabric.azure.com/runtime/clusters/ac15585b-5d7b-4e82-8d1d-2d2ceab638a2\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogs2idnfejoizlt22\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2idnfejoizlt22.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogs2idnfejoizlt22.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogs2idnfejoizlt22.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"GTVM\",\r\n \"placementProperties\": {\r\n \"gatewayAllowed\": \"true\",\r\n \"systemServicesAllowed\": \"false\",\r\n \"streamProcessorAllowed\": \"false\",\r\n \"requestManagerAllowed\": \"false\",\r\n \"provisioningAllowed\": \"true\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"eastasia\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/nsgtest05/providers/Microsoft.ServiceFabric/clusters/nsgtest05\",\r\n \"name\": \"nsgtest05\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"nsgtest05\"\r\n },\r\n \"etag\": \"W/\\\"636144047518201703\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"c09d10e6-8cc9-40bf-88dd-246acdde5ea7\",\r\n \"clusterCodeVersion\": \"5.3.301.9590\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://nsgtest05.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://eastasia.servicefabric.azure.com/runtime/clusters/c09d10e6-8cc9-40bf-88dd-246acdde5ea7\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsz4fwhlzushoes2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsz4fwhlzushoes2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsz4fwhlzushoes2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsz4fwhlzushoes2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"GTVM\",\r\n \"placementProperties\": {\r\n \"gatewayAllowed\": \"true\",\r\n \"systemServicesAllowed\": \"false\",\r\n \"streamProcessorAllowed\": \"false\",\r\n \"requestManagerAllowed\": \"false\",\r\n \"provisioningAllowed\": \"true\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"japanwest\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/zikaiwtest10122016osrg/providers/Microsoft.ServiceFabric/clusters/zikaiwtest10122016os\",\r\n \"name\": \"zikaiwtest10122016os\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"zikaiwtest10122016os\"\r\n },\r\n \"etag\": \"W/\\\"636118914810023720\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"480f787d-ebfe-45b1-b9f0-917f21682d14\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://zikaiwtest10122016os.japanwest.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westjapan.servicefabric.azure.com/runtime/clusters/480f787d-ebfe-45b1-b9f0-917f21682d14\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogszikaiwtest10127306\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogszikaiwtest10127306.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogszikaiwtest10127306.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogszikaiwtest10127306.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"WF\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/zikaiwtest10122016tyrg/providers/Microsoft.ServiceFabric/clusters/zikaiwtest10122016ty\",\r\n \"name\": \"zikaiwtest10122016ty\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"zikaiwtest10122016ty\"\r\n },\r\n \"etag\": \"W/\\\"636118913413046187\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"a356a1d5-ed4f-4cdd-9b28-ee40b79ea34a\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://zikaiwtest10122016ty.japaneast.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://eastjapan.servicefabric.azure.com/runtime/clusters/a356a1d5-ed4f-4cdd-9b28-ee40b79ea34a\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogszikaiwtest10126623\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogszikaiwtest10126623.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogszikaiwtest10126623.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogszikaiwtest10126623.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"WF\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southindia\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/wftsvc-ma-20161202-222619667-v2/providers/Microsoft.ServiceFabric/clusters/wftsvc-ma-20161202-2\",\r\n \"name\": \"wftsvc-ma-20161202-2\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"wftsvc-ma-20161202-2\"\r\n },\r\n \"etag\": \"W/\\\"636163144488368065\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"a15ba6be-2e5e-49e7-8457-f6aeb88247ed\",\r\n \"clusterCodeVersion\": \"5.3.311.9590\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://wftsvc-ma-20161202-222619667-v2.southindia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://southindia.servicefabric.azure.com/runtime/clusters/a15ba6be-2e5e-49e7-8457-f6aeb88247ed\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagma20161202222619\",\r\n \"primaryAccessKey\": \"PEAjtqu51MYL4t9NIWC8f3MTfbyq8WCbFv0cyCNlFVMbfoAfwji5hLDiHxsSWmuBm4tSGIqMfjh2IiaecPWWsA==\",\r\n \"secondaryAccessKey\": \"W83Lr6FzTGZRjXyf3ETJayV17jJE5rfBJ3z+rDh9fdNkKUywV2+8/UF356HQZ2VuD9EXfyNAJ+6AAKRDUtibGw==\",\r\n \"blobEndpoint\": \"https://diagma20161202222619.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagma20161202222619.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagma20161202222619.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southindia\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/wftsvc-ma-20161216-222607320-v2/providers/Microsoft.ServiceFabric/clusters/wftsvc-ma-20161216-2\",\r\n \"name\": \"wftsvc-ma-20161216-2\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"wftsvc-ma-20161216-2\"\r\n },\r\n \"etag\": \"W/\\\"636175240100424900\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"d36dc919-f90b-488a-a637-692c60c313e2\",\r\n \"clusterCodeVersion\": \"5.4.145.9494\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://wftsvc-ma-20161216-222607320-v2.southindia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://southindia.servicefabric.azure.com/runtime/clusters/d36dc919-f90b-488a-a637-692c60c313e2\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagma20161216222607\",\r\n \"primaryAccessKey\": \"Q52vgLTLo8AOja6ZcB96IcREKV5xpkLtH8kRktYvVcBCkzczgBedbbhWswiNuL7lTtrAm/5UuRdxMb5a8muEEw==\",\r\n \"secondaryAccessKey\": \"pyFssc4UxbdxTfWkawgcROdk61Bs+JT3WL0bOw7+DGzK8oztR3nR9djzq0zS9klq4DTukat9LADN5jMU/bYK1w==\",\r\n \"blobEndpoint\": \"https://diagma20161216222607.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagma20161216222607.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagma20161216222607.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"brazilsouth\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/bztest-rg/providers/Microsoft.ServiceFabric/clusters/bztest\",\r\n \"name\": \"bztest\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"bztest\"\r\n },\r\n \"etag\": \"W/\\\"636058476587798244\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"cece147a-0b32-4390-beb6-e497934165d5\",\r\n \"clusterCodeVersion\": \"5.1.163.9590\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://bztest.brazilsouth.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://southbrazil.servicefabric.azure.com/runtime/clusters/cece147a-0b32-4390-beb6-e497934165d5\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsbztest2340\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsbztest2340.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsbztest2340.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsbztest2340.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"FE\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.1.163.9590\",\r\n \"supportExpiryUtc\": \"2017-01-20T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.121.9494\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"canadacentral\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/wftsvc-yt-20161026-012057297-v2/providers/Microsoft.ServiceFabric/clusters/wftsvc-yt-20161026-0\",\r\n \"name\": \"wftsvc-yt-20161026-0\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"wftsvc-yt-20161026-0\"\r\n },\r\n \"etag\": \"W/\\\"636130416957754817\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"254ef458-b578-4f77-b03c-71ef13d0c1bf\",\r\n \"clusterCodeVersion\": \"5.3.301.9590\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://wftsvc-yt-20161026-012057297-v2.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://centralcanada.servicefabric.azure.com/runtime/clusters/254ef458-b578-4f77-b03c-71ef13d0c1bf\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagyt20161026012057\",\r\n \"primaryAccessKey\": \"F9RVqgSqMSvC4/YB9OlHQh7dlUCit4LqE+8loPVfMDcE0aT5h+LP+Iwjq5N/KIVrr9Rz+xcBvIRnqj7o6eBXdg==\",\r\n \"secondaryAccessKey\": \"3prsh7JbxEjsKeuerXA67KI3d69x3l9xxZWTOCgTRkYKVVkZhzGsp3ctolBW4hW93tbz0JFOmYP9qWcv+syvGg==\",\r\n \"blobEndpoint\": \"https://diagyt20161026012057.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagyt20161026012057.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagyt20161026012057.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"canadacentral\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/wftsvc-yt-20161210-012552629-v2/providers/Microsoft.ServiceFabric/clusters/wftsvc-yt-20161210-0\",\r\n \"name\": \"wftsvc-yt-20161210-0\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"wftsvc-yt-20161210-0\"\r\n },\r\n \"etag\": \"W/\\\"636169300125211270\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"323f6f5a-e494-42de-af90-8c3fcaa041aa\",\r\n \"clusterCodeVersion\": \"5.4.145.9494\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://wftsvc-yt-20161210-012552629-v2.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://centralcanada.servicefabric.azure.com/runtime/clusters/323f6f5a-e494-42de-af90-8c3fcaa041aa\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagyt20161210012552\",\r\n \"primaryAccessKey\": \"HAp7JviOdhbBA4Hp4jpBUVQJ/6VVv2TTnAB7PnG+cVQbuV7K/8CvlMblKSzOnK6hiEI3ufsuoGVxXYEUxWhhAQ==\",\r\n \"secondaryAccessKey\": \"Kr5RgIxa2isAX/+Z5k+F0O7UhH3ORIBXARXroXVzPj6ByGBnXfZLhU6dmguokb4WGbXDoCIOm+EHprEZsrUhEw==\",\r\n \"blobEndpoint\": \"https://diagyt20161210012552.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagyt20161210012552.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagyt20161210012552.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"canadacentral\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/wftsvc-yt-20161221-012942018-v2/providers/Microsoft.ServiceFabric/clusters/wftsvc-yt-20161221-0\",\r\n \"name\": \"wftsvc-yt-20161221-0\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"wftsvc-yt-20161221-0\"\r\n },\r\n \"etag\": \"W/\\\"636178806211614120\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9286266b-50b7-46d3-8dcb-86b0189a1851\",\r\n \"clusterCodeVersion\": \"5.4.145.9494\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://wftsvc-yt-20161221-012942018-v2.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://centralcanada.servicefabric.azure.com/runtime/clusters/9286266b-50b7-46d3-8dcb-86b0189a1851\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagyt20161221012942\",\r\n \"primaryAccessKey\": \"AZWNWBkgJl+GBrTxH8TvJLd5lfbhIjZWslBaCgS2iH7n7tR4N7Xy1y/9RNr3mQ1+hFV86sxn9+XSGiruGejTpQ==\",\r\n \"secondaryAccessKey\": \"vPlVaIqF5u660R4dHBSuM+EdLJ6ADeQVxv2wEbAHBAuhKTQC9F9RhH0nuTVCN1oPH8avk3mZkGRKTNwl7Z7DGQ==\",\r\n \"blobEndpoint\": \"https://diagyt20161221012942.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagyt20161221012942.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagyt20161221012942.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"canadaeast\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/wftsvc-yq-20161201-012845413-v2/providers/Microsoft.ServiceFabric/clusters/wftsvc-yq-20161201-0\",\r\n \"name\": \"wftsvc-yq-20161201-0\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"wftsvc-yq-20161201-0\"\r\n },\r\n \"etag\": \"W/\\\"636161525689267021\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"99714df5-ce9b-4959-a4ee-f6c22f2713bd\",\r\n \"clusterCodeVersion\": \"5.3.301.9590\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://wftsvc-yq-20161201-012845413-v2.canadaeast.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://eastcanada.servicefabric.azure.com/runtime/clusters/99714df5-ce9b-4959-a4ee-f6c22f2713bd\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagyq20161201012845\",\r\n \"primaryAccessKey\": \"QPnyOiZwptIClQQjVU0MwL/kzunj6LGuW6u3D5c4aTbyYIyfkvw2M/RsNZAmVMgDOUb9/ppmlGYXe4hBzMG6oQ==\",\r\n \"secondaryAccessKey\": \"YB2q32M0lHy5mMUASGTr/PaM4FkpH8iKeqBGUiz1lw8wsR7T8NUdPNkKQi+LnbMFwkS2NNI8v5/zvXiXKoW1yw==\",\r\n \"blobEndpoint\": \"https://diagyq20161201012845.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagyq20161201012845.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagyq20161201012845.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa\",\r\n \"name\": \"aaaaaaaaaaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaaaaaaaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636244362547166623\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaaaaaaaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"8888\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaaaaaaaaaa6877\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1702251613/providers/Microsoft.ServiceFabric/clusters/abhaymtest1702251613\",\r\n \"name\": \"abhaymtest1702251613\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1702251613\"\r\n },\r\n \"etag\": \"W/\\\"636236360610819115\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"60b8eaa4-751f-4945-ba89-aff2d85be72a\",\r\n \"clusterCodeVersion\": \"5.5.201.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1702251613.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/60b8eaa4-751f-4945-ba89-aff2d85be72a\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"6sd5awwmol7yy2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://6sd5awwmol7yy2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://6sd5awwmol7yy2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://6sd5awwmol7yy2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sdktestrg2/providers/Microsoft.ServiceFabric/clusters/sdktest\",\r\n \"name\": \"sdktest\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636244182147134140\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8d566293-3508-4d62-ba7b-056fa710c3c9\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8d566293-3508-4d62-ba7b-056fa710c3c9\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": true,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogssdktest5486\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogssdktest5486.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogssdktest5486.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogssdktest5486.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Silver\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testCreaterg/providers/Microsoft.ServiceFabric/clusters/testCreateCluster\",\r\n \"name\": \"testCreateCluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636244261869715147\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"7ad66ff6-062b-41a1-8f96-c32b222e3e5e\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/7ad66ff6-062b-41a1-8f96-c32b222e3e5e\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testCreaterg1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636244595927345289\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"ed4fa900-6c59-430b-b807-2e440ac20456\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/ed4fa900-6c59-430b-b807-2e440ac20456\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -23,7 +23,7 @@ "no-cache" ], "Date": [ - "Tue, 07 Mar 2017 05:04:16 GMT" + "Wed, 08 Mar 2017 14:51:31 GMT" ], "Pragma": [ "no-cache" @@ -49,16 +49,16 @@ "" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14973" ], "x-ms-request-id": [ - "d0169cdf-c074-4e9e-a066-c844b8da6cc1" + "020b6d4f-bfe5-4d2a-b0e5-d9285bc2df5c" ], "x-ms-correlation-request-id": [ - "d0169cdf-c074-4e9e-a066-c844b8da6cc1" + "020b6d4f-bfe5-4d2a-b0e5-d9285bc2df5c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170307T050416Z:d0169cdf-c074-4e9e-a066-c844b8da6cc1" + "WESTUS2:20170308T145131Z:020b6d4f-bfe5-4d2a-b0e5-d9285bc2df5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestListByResourceGroup.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestListByResourceGroup.json index 9db62f8c05dd..b379929ac79b 100644 --- a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestListByResourceGroup.json +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestListByResourceGroup.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc4885f2-b566-4fb9-b867-f5564ffd0a0a" + "daff7b7a-8064-41cb-8a49-9746f7cad42d" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg\",\r\n \"name\": \"aaaaaaaaaaaaarg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1702250539\",\r\n \"name\": \"abhaymtest1702250539\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1702251613\",\r\n \"name\": \"abhaymtest1702251613\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703010700\",\r\n \"name\": \"abhaymtest1703010700\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703012245\",\r\n \"name\": \"abhaymtest1703012245\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703012344\",\r\n \"name\": \"abhaymtest1703012344\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703020617\",\r\n \"name\": \"abhaymtest1703020617\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703020618\",\r\n \"name\": \"abhaymtest1703020618\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703020634\",\r\n \"name\": \"abhaymtest1703020634\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703030726\",\r\n \"name\": \"abhaymtest1703030726\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703061931\",\r\n \"name\": \"abhaymtest1703061931\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703062131\",\r\n \"name\": \"abhaymtest1703062131\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703062345\",\r\n \"name\": \"abhaymtest1703062345\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayreverseproxy02\",\r\n \"name\": \"abhayreverseproxy02\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest01\",\r\n \"name\": \"abhaytest01\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest04\",\r\n \"name\": \"abhaytest04\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayvm02\",\r\n \"name\": \"abhayvm02\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayvm03\",\r\n \"name\": \"abhayvm03\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/anmolprvbuild03\",\r\n \"name\": \"anmolprvbuild03\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/bztest-rg\",\r\n \"name\": \"bztest-rg\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/Default-ServiceBus-9653\",\r\n \"name\": \"Default-ServiceBus-9653\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/deployertest\",\r\n \"name\": \"deployertest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/dotnetsdkrg\",\r\n \"name\": \"dotnetsdkrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/nsgtest03\",\r\n \"name\": \"nsgtest03\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/nsgtest05\",\r\n \"name\": \"nsgtest05\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklinuxtest01\",\r\n \"name\": \"sdklinuxtest01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestrg2\",\r\n \"name\": \"sdktestrg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/SecureBaseImage\",\r\n \"name\": \"SecureBaseImage\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg\",\r\n \"name\": \"testCreaterg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1\",\r\n \"name\": \"testCreaterg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testsdkdnetrestrg\",\r\n \"name\": \"testsdkdnetrestrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-202955140-v2\",\r\n \"name\": \"wftsvc-bm-20161024-202955140-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-210350686-v2\",\r\n \"name\": \"wftsvc-bm-20161024-210350686-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-210948818-v2\",\r\n \"name\": \"wftsvc-bm-20161024-210948818-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161025-012157409-v2\",\r\n \"name\": \"wftsvc-bm-20161025-012157409-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161026-012217543-v2\",\r\n \"name\": \"wftsvc-bm-20161026-012217543-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161028-014354355-v2\",\r\n \"name\": \"wftsvc-bm-20161028-014354355-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161029-012553441-v2\",\r\n \"name\": \"wftsvc-bm-20161029-012553441-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161030-012137041-v2\",\r\n \"name\": \"wftsvc-bm-20161030-012137041-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161031-012217322-v2\",\r\n \"name\": \"wftsvc-bm-20161031-012217322-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161101-012812361-v2\",\r\n \"name\": \"wftsvc-bm-20161101-012812361-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161102-044018564-v2\",\r\n \"name\": \"wftsvc-bm-20161102-044018564-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161115-012828172-v2\",\r\n \"name\": \"wftsvc-bm-20161115-012828172-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161116-012248545-v2\",\r\n \"name\": \"wftsvc-bm-20161116-012248545-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161117-013025621-v2\",\r\n \"name\": \"wftsvc-bm-20161117-013025621-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161118-162552118-v2\",\r\n \"name\": \"wftsvc-bm-20161118-162552118-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161119-020853683-v2\",\r\n \"name\": \"wftsvc-bm-20161119-020853683-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161120-015112327-v2\",\r\n \"name\": \"wftsvc-bm-20161120-015112327-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161121-013411054-v2\",\r\n \"name\": \"wftsvc-bm-20161121-013411054-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161122-014033729-v2\",\r\n \"name\": \"wftsvc-bm-20161122-014033729-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161123-020328423-v2\",\r\n \"name\": \"wftsvc-bm-20161123-020328423-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161124-013118943-v2\",\r\n \"name\": \"wftsvc-bm-20161124-013118943-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161125-012512715-v2\",\r\n \"name\": \"wftsvc-bm-20161125-012512715-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161126-012537693-v2\",\r\n \"name\": \"wftsvc-bm-20161126-012537693-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161127-012554430-v2\",\r\n \"name\": \"wftsvc-bm-20161127-012554430-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161128-012517911-v2\",\r\n \"name\": \"wftsvc-bm-20161128-012517911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161129-012602111-v2\",\r\n \"name\": \"wftsvc-bm-20161129-012602111-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161130-022145798-v2\",\r\n \"name\": \"wftsvc-bm-20161130-022145798-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161201-014317317-v2\",\r\n \"name\": \"wftsvc-bm-20161201-014317317-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161202-012812276-v2\",\r\n \"name\": \"wftsvc-bm-20161202-012812276-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161203-012713277-v2\",\r\n \"name\": \"wftsvc-bm-20161203-012713277-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161206-025602238-v2\",\r\n \"name\": \"wftsvc-bm-20161206-025602238-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161207-012657615-v2\",\r\n \"name\": \"wftsvc-bm-20161207-012657615-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161208-024401245-v2\",\r\n \"name\": \"wftsvc-bm-20161208-024401245-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161209-012721060-v2\",\r\n \"name\": \"wftsvc-bm-20161209-012721060-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161210-012529259-v2\",\r\n \"name\": \"wftsvc-bm-20161210-012529259-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161211-012543460-v2\",\r\n \"name\": \"wftsvc-bm-20161211-012543460-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161212-012643580-v2\",\r\n \"name\": \"wftsvc-bm-20161212-012643580-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161213-135747390-v2\",\r\n \"name\": \"wftsvc-bm-20161213-135747390-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161214-020204911-v2\",\r\n \"name\": \"wftsvc-bm-20161214-020204911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161215-012912635-v2\",\r\n \"name\": \"wftsvc-bm-20161215-012912635-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161216-014118622-v2\",\r\n \"name\": \"wftsvc-bm-20161216-014118622-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161217-013027250-v2\",\r\n \"name\": \"wftsvc-bm-20161217-013027250-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161218-042923602-v2\",\r\n \"name\": \"wftsvc-bm-20161218-042923602-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161219-024910832-v2\",\r\n \"name\": \"wftsvc-bm-20161219-024910832-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161220-021526028-v2\",\r\n \"name\": \"wftsvc-bm-20161220-021526028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161221-014332493-v2\",\r\n \"name\": \"wftsvc-bm-20161221-014332493-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161222-190424958-v2\",\r\n \"name\": \"wftsvc-bm-20161222-190424958-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161223-020219887-v2\",\r\n \"name\": \"wftsvc-bm-20161223-020219887-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161224-012754028-v2\",\r\n \"name\": \"wftsvc-bm-20161224-012754028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161225-012413900-v2\",\r\n \"name\": \"wftsvc-bm-20161225-012413900-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161226-012537497-v2\",\r\n \"name\": \"wftsvc-bm-20161226-012537497-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161227-012619489-v2\",\r\n \"name\": \"wftsvc-bm-20161227-012619489-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161228-012627978-v2\",\r\n \"name\": \"wftsvc-bm-20161228-012627978-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161229-013147614-v2\",\r\n \"name\": \"wftsvc-bm-20161229-013147614-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161230-012714627-v2\",\r\n \"name\": \"wftsvc-bm-20161230-012714627-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-ma-20161202-222619667-v2\",\r\n \"name\": \"wftsvc-ma-20161202-222619667-v2\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-ma-20161216-222607320-v2\",\r\n \"name\": \"wftsvc-ma-20161216-222607320-v2\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-mwh-20161203-012707281-v2\",\r\n \"name\": \"wftsvc-mwh-20161203-012707281-v2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-sn-20161129-211521656-v2\",\r\n \"name\": \"wftsvc-sn-20161129-211521656-v2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-sn-20161129-211525592-v2\",\r\n \"name\": \"wftsvc-sn-20161129-211525592-v2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yq-20161201-012845413-v2\",\r\n \"name\": \"wftsvc-yq-20161201-012845413-v2\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161026-012057297-v2\",\r\n \"name\": \"wftsvc-yt-20161026-012057297-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161210-012552629-v2\",\r\n \"name\": \"wftsvc-yt-20161210-012552629-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161221-012942018-v2\",\r\n \"name\": \"wftsvc-yt-20161221-012942018-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault1\",\r\n \"name\": \"wftsvcKeyVault1\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault2\",\r\n \"name\": \"wftsvcKeyVault2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault3\",\r\n \"name\": \"wftsvcKeyVault3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault4\",\r\n \"name\": \"wftsvcKeyVault4\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault5\",\r\n \"name\": \"wftsvcKeyVault5\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault6\",\r\n \"name\": \"wftsvcKeyVault6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVaultAM\",\r\n \"name\": \"wftsvcKeyVaultAM\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016bnrg\",\r\n \"name\": \"zikaiwtest10122016bnrg\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016chrg\",\r\n \"name\": \"zikaiwtest10122016chrg\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016dmrg\",\r\n \"name\": \"zikaiwtest10122016dmrg\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016osrg\",\r\n \"name\": \"zikaiwtest10122016osrg\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016snrg\",\r\n \"name\": \"zikaiwtest10122016snrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016tyrg\",\r\n \"name\": \"zikaiwtest10122016tyrg\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg\",\r\n \"name\": \"aaaaaaaaaaaaarg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1702250539\",\r\n \"name\": \"abhaymtest1702250539\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1702251613\",\r\n \"name\": \"abhaymtest1702251613\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703030726\",\r\n \"name\": \"abhaymtest1703030726\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703061931\",\r\n \"name\": \"abhaymtest1703061931\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703062131\",\r\n \"name\": \"abhaymtest1703062131\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703062345\",\r\n \"name\": \"abhaymtest1703062345\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703072008\",\r\n \"name\": \"abhaymtest1703072008\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703072343\",\r\n \"name\": \"abhaymtest1703072343\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayreverseproxy02\",\r\n \"name\": \"abhayreverseproxy02\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest01\",\r\n \"name\": \"abhaytest01\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest02\",\r\n \"name\": \"abhaytest02\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest04\",\r\n \"name\": \"abhaytest04\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayvm02\",\r\n \"name\": \"abhayvm02\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayvm03\",\r\n \"name\": \"abhayvm03\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/anmolprvbuild03\",\r\n \"name\": \"anmolprvbuild03\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/bztest-rg\",\r\n \"name\": \"bztest-rg\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/Default-ServiceBus-9653\",\r\n \"name\": \"Default-ServiceBus-9653\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/deployertest\",\r\n \"name\": \"deployertest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/dotnetsdkrg\",\r\n \"name\": \"dotnetsdkrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/nsgtest03\",\r\n \"name\": \"nsgtest03\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/nsgtest05\",\r\n \"name\": \"nsgtest05\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklinuxtest01\",\r\n \"name\": \"sdklinuxtest01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestrg2\",\r\n \"name\": \"sdktestrg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/SecureBaseImage\",\r\n \"name\": \"SecureBaseImage\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg\",\r\n \"name\": \"testCreaterg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1\",\r\n \"name\": \"testCreaterg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testsdkdnetrestrg\",\r\n \"name\": \"testsdkdnetrestrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-202955140-v2\",\r\n \"name\": \"wftsvc-bm-20161024-202955140-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-210350686-v2\",\r\n \"name\": \"wftsvc-bm-20161024-210350686-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-210948818-v2\",\r\n \"name\": \"wftsvc-bm-20161024-210948818-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161025-012157409-v2\",\r\n \"name\": \"wftsvc-bm-20161025-012157409-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161026-012217543-v2\",\r\n \"name\": \"wftsvc-bm-20161026-012217543-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161028-014354355-v2\",\r\n \"name\": \"wftsvc-bm-20161028-014354355-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161029-012553441-v2\",\r\n \"name\": \"wftsvc-bm-20161029-012553441-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161030-012137041-v2\",\r\n \"name\": \"wftsvc-bm-20161030-012137041-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161031-012217322-v2\",\r\n \"name\": \"wftsvc-bm-20161031-012217322-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161101-012812361-v2\",\r\n \"name\": \"wftsvc-bm-20161101-012812361-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161102-044018564-v2\",\r\n \"name\": \"wftsvc-bm-20161102-044018564-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161115-012828172-v2\",\r\n \"name\": \"wftsvc-bm-20161115-012828172-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161116-012248545-v2\",\r\n \"name\": \"wftsvc-bm-20161116-012248545-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161117-013025621-v2\",\r\n \"name\": \"wftsvc-bm-20161117-013025621-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161118-162552118-v2\",\r\n \"name\": \"wftsvc-bm-20161118-162552118-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161119-020853683-v2\",\r\n \"name\": \"wftsvc-bm-20161119-020853683-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161120-015112327-v2\",\r\n \"name\": \"wftsvc-bm-20161120-015112327-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161121-013411054-v2\",\r\n \"name\": \"wftsvc-bm-20161121-013411054-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161122-014033729-v2\",\r\n \"name\": \"wftsvc-bm-20161122-014033729-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161123-020328423-v2\",\r\n \"name\": \"wftsvc-bm-20161123-020328423-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161124-013118943-v2\",\r\n \"name\": \"wftsvc-bm-20161124-013118943-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161125-012512715-v2\",\r\n \"name\": \"wftsvc-bm-20161125-012512715-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161126-012537693-v2\",\r\n \"name\": \"wftsvc-bm-20161126-012537693-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161127-012554430-v2\",\r\n \"name\": \"wftsvc-bm-20161127-012554430-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161128-012517911-v2\",\r\n \"name\": \"wftsvc-bm-20161128-012517911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161129-012602111-v2\",\r\n \"name\": \"wftsvc-bm-20161129-012602111-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161130-022145798-v2\",\r\n \"name\": \"wftsvc-bm-20161130-022145798-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161201-014317317-v2\",\r\n \"name\": \"wftsvc-bm-20161201-014317317-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161202-012812276-v2\",\r\n \"name\": \"wftsvc-bm-20161202-012812276-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161203-012713277-v2\",\r\n \"name\": \"wftsvc-bm-20161203-012713277-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161206-025602238-v2\",\r\n \"name\": \"wftsvc-bm-20161206-025602238-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161207-012657615-v2\",\r\n \"name\": \"wftsvc-bm-20161207-012657615-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161208-024401245-v2\",\r\n \"name\": \"wftsvc-bm-20161208-024401245-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161209-012721060-v2\",\r\n \"name\": \"wftsvc-bm-20161209-012721060-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161210-012529259-v2\",\r\n \"name\": \"wftsvc-bm-20161210-012529259-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161211-012543460-v2\",\r\n \"name\": \"wftsvc-bm-20161211-012543460-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161212-012643580-v2\",\r\n \"name\": \"wftsvc-bm-20161212-012643580-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161213-135747390-v2\",\r\n \"name\": \"wftsvc-bm-20161213-135747390-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161214-020204911-v2\",\r\n \"name\": \"wftsvc-bm-20161214-020204911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161215-012912635-v2\",\r\n \"name\": \"wftsvc-bm-20161215-012912635-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161216-014118622-v2\",\r\n \"name\": \"wftsvc-bm-20161216-014118622-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161217-013027250-v2\",\r\n \"name\": \"wftsvc-bm-20161217-013027250-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161218-042923602-v2\",\r\n \"name\": \"wftsvc-bm-20161218-042923602-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161219-024910832-v2\",\r\n \"name\": \"wftsvc-bm-20161219-024910832-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161220-021526028-v2\",\r\n \"name\": \"wftsvc-bm-20161220-021526028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161221-014332493-v2\",\r\n \"name\": \"wftsvc-bm-20161221-014332493-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161222-190424958-v2\",\r\n \"name\": \"wftsvc-bm-20161222-190424958-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161223-020219887-v2\",\r\n \"name\": \"wftsvc-bm-20161223-020219887-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161224-012754028-v2\",\r\n \"name\": \"wftsvc-bm-20161224-012754028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161225-012413900-v2\",\r\n \"name\": \"wftsvc-bm-20161225-012413900-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161226-012537497-v2\",\r\n \"name\": \"wftsvc-bm-20161226-012537497-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161227-012619489-v2\",\r\n \"name\": \"wftsvc-bm-20161227-012619489-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161228-012627978-v2\",\r\n \"name\": \"wftsvc-bm-20161228-012627978-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161229-013147614-v2\",\r\n \"name\": \"wftsvc-bm-20161229-013147614-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161230-012714627-v2\",\r\n \"name\": \"wftsvc-bm-20161230-012714627-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-ma-20161202-222619667-v2\",\r\n \"name\": \"wftsvc-ma-20161202-222619667-v2\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-ma-20161216-222607320-v2\",\r\n \"name\": \"wftsvc-ma-20161216-222607320-v2\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-mwh-20161203-012707281-v2\",\r\n \"name\": \"wftsvc-mwh-20161203-012707281-v2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-sn-20161129-211521656-v2\",\r\n \"name\": \"wftsvc-sn-20161129-211521656-v2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-sn-20161129-211525592-v2\",\r\n \"name\": \"wftsvc-sn-20161129-211525592-v2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yq-20161201-012845413-v2\",\r\n \"name\": \"wftsvc-yq-20161201-012845413-v2\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161026-012057297-v2\",\r\n \"name\": \"wftsvc-yt-20161026-012057297-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161210-012552629-v2\",\r\n \"name\": \"wftsvc-yt-20161210-012552629-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161221-012942018-v2\",\r\n \"name\": \"wftsvc-yt-20161221-012942018-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault1\",\r\n \"name\": \"wftsvcKeyVault1\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault2\",\r\n \"name\": \"wftsvcKeyVault2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault3\",\r\n \"name\": \"wftsvcKeyVault3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault4\",\r\n \"name\": \"wftsvcKeyVault4\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault5\",\r\n \"name\": \"wftsvcKeyVault5\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault6\",\r\n \"name\": \"wftsvcKeyVault6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVaultAM\",\r\n \"name\": \"wftsvcKeyVaultAM\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016bnrg\",\r\n \"name\": \"zikaiwtest10122016bnrg\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016chrg\",\r\n \"name\": \"zikaiwtest10122016chrg\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016dmrg\",\r\n \"name\": \"zikaiwtest10122016dmrg\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016osrg\",\r\n \"name\": \"zikaiwtest10122016osrg\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016snrg\",\r\n \"name\": \"zikaiwtest10122016snrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016tyrg\",\r\n \"name\": \"zikaiwtest10122016tyrg\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 07 Mar 2017 05:16:01 GMT" + "Wed, 08 Mar 2017 14:51:26 GMT" ], "Pragma": [ "no-cache" @@ -38,16 +38,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14980" ], "x-ms-request-id": [ - "d166a354-d528-4646-a773-955e21c7b70d" + "e46f0462-7cca-4517-b34d-73ceea4a440f" ], "x-ms-correlation-request-id": [ - "d166a354-d528-4646-a773-955e21c7b70d" + "e46f0462-7cca-4517-b34d-73ceea4a440f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170307T051601Z:d166a354-d528-4646-a773-955e21c7b70d" + "WESTUS2:20170308T145127Z:e46f0462-7cca-4517-b34d-73ceea4a440f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,7 +62,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7041ee8-d546-4298-851f-fd2dcb5ecef2" + "1c1f1a32-1319-4073-9a60-174c904fab7c" ], "accept-language": [ "en-US" @@ -84,7 +84,7 @@ "no-cache" ], "Date": [ - "Tue, 07 Mar 2017 05:16:02 GMT" + "Wed, 08 Mar 2017 14:51:27 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +93,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14961" ], "x-ms-request-id": [ - "c881b029-9fbe-4895-bb18-7470da775615" + "c0dcdfe0-950d-4801-b9ec-ef0994a2e126" ], "x-ms-correlation-request-id": [ - "c881b029-9fbe-4895-bb18-7470da775615" + "c0dcdfe0-950d-4801-b9ec-ef0994a2e126" ], "x-ms-routing-request-id": [ - "WESTUS2:20170307T051602Z:c881b029-9fbe-4895-bb18-7470da775615" + "WESTUS2:20170308T145128Z:c0dcdfe0-950d-4801-b9ec-ef0994a2e126" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -121,7 +121,7 @@ "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa\",\r\n \"name\": \"aaaaaaaaaaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaaaaaaaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636244362547166622\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaaaaaaaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"8888\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaaaaaaaaaa6877\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa\",\r\n \"name\": \"aaaaaaaaaaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaaaaaaaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636244362547166623\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaaaaaaaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"8888\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaaaaaaaaaa6877\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -133,7 +133,7 @@ "no-cache" ], "Date": [ - "Tue, 07 Mar 2017 05:16:02 GMT" + "Wed, 08 Mar 2017 14:51:28 GMT" ], "Pragma": [ "no-cache" @@ -155,16 +155,16 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14919" ], "x-ms-request-id": [ - "ffb6e8b2-89eb-4a8a-99ab-78ff5aa83b95" + "7f454f2a-9d18-4a2f-a259-2cd787590302" ], "x-ms-correlation-request-id": [ - "ffb6e8b2-89eb-4a8a-99ab-78ff5aa83b95" + "7f454f2a-9d18-4a2f-a259-2cd787590302" ], "x-ms-routing-request-id": [ - "WESTUS2:20170307T051603Z:ffb6e8b2-89eb-4a8a-99ab-78ff5aa83b95" + "WESTUS2:20170308T145129Z:7f454f2a-9d18-4a2f-a259-2cd787590302" ] }, "StatusCode": 200 diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestUpdateClusterResource/TestUpdate.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestUpdateClusterResource/TestUpdate.json index e3c7df769d5f..1c93d055b225 100644 --- a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestUpdateClusterResource/TestUpdate.json +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestUpdateClusterResource/TestUpdate.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81d742f4-560b-401b-907c-0750f69c65ba" + "5852e6e9-d6c1-4d82-97d1-ebb3f671d403" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg\",\r\n \"name\": \"aaaaaaaaaaaaarg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1702250539\",\r\n \"name\": \"abhaymtest1702250539\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1702251613\",\r\n \"name\": \"abhaymtest1702251613\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703010700\",\r\n \"name\": \"abhaymtest1703010700\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703012245\",\r\n \"name\": \"abhaymtest1703012245\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703012344\",\r\n \"name\": \"abhaymtest1703012344\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703020617\",\r\n \"name\": \"abhaymtest1703020617\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703020618\",\r\n \"name\": \"abhaymtest1703020618\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703020634\",\r\n \"name\": \"abhaymtest1703020634\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703030726\",\r\n \"name\": \"abhaymtest1703030726\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703061931\",\r\n \"name\": \"abhaymtest1703061931\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703062131\",\r\n \"name\": \"abhaymtest1703062131\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703062345\",\r\n \"name\": \"abhaymtest1703062345\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayreverseproxy02\",\r\n \"name\": \"abhayreverseproxy02\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest01\",\r\n \"name\": \"abhaytest01\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest04\",\r\n \"name\": \"abhaytest04\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayvm02\",\r\n \"name\": \"abhayvm02\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayvm03\",\r\n \"name\": \"abhayvm03\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/anmolprvbuild03\",\r\n \"name\": \"anmolprvbuild03\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/bztest-rg\",\r\n \"name\": \"bztest-rg\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/Default-ServiceBus-9653\",\r\n \"name\": \"Default-ServiceBus-9653\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/deployertest\",\r\n \"name\": \"deployertest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/dotnetsdkrg\",\r\n \"name\": \"dotnetsdkrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/nsgtest03\",\r\n \"name\": \"nsgtest03\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/nsgtest05\",\r\n \"name\": \"nsgtest05\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklinuxtest01\",\r\n \"name\": \"sdklinuxtest01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestrg2\",\r\n \"name\": \"sdktestrg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/SecureBaseImage\",\r\n \"name\": \"SecureBaseImage\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg\",\r\n \"name\": \"testCreaterg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1\",\r\n \"name\": \"testCreaterg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testsdkdnetrestrg\",\r\n \"name\": \"testsdkdnetrestrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-202955140-v2\",\r\n \"name\": \"wftsvc-bm-20161024-202955140-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-210350686-v2\",\r\n \"name\": \"wftsvc-bm-20161024-210350686-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-210948818-v2\",\r\n \"name\": \"wftsvc-bm-20161024-210948818-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161025-012157409-v2\",\r\n \"name\": \"wftsvc-bm-20161025-012157409-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161026-012217543-v2\",\r\n \"name\": \"wftsvc-bm-20161026-012217543-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161028-014354355-v2\",\r\n \"name\": \"wftsvc-bm-20161028-014354355-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161029-012553441-v2\",\r\n \"name\": \"wftsvc-bm-20161029-012553441-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161030-012137041-v2\",\r\n \"name\": \"wftsvc-bm-20161030-012137041-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161031-012217322-v2\",\r\n \"name\": \"wftsvc-bm-20161031-012217322-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161101-012812361-v2\",\r\n \"name\": \"wftsvc-bm-20161101-012812361-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161102-044018564-v2\",\r\n \"name\": \"wftsvc-bm-20161102-044018564-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161115-012828172-v2\",\r\n \"name\": \"wftsvc-bm-20161115-012828172-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161116-012248545-v2\",\r\n \"name\": \"wftsvc-bm-20161116-012248545-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161117-013025621-v2\",\r\n \"name\": \"wftsvc-bm-20161117-013025621-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161118-162552118-v2\",\r\n \"name\": \"wftsvc-bm-20161118-162552118-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161119-020853683-v2\",\r\n \"name\": \"wftsvc-bm-20161119-020853683-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161120-015112327-v2\",\r\n \"name\": \"wftsvc-bm-20161120-015112327-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161121-013411054-v2\",\r\n \"name\": \"wftsvc-bm-20161121-013411054-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161122-014033729-v2\",\r\n \"name\": \"wftsvc-bm-20161122-014033729-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161123-020328423-v2\",\r\n \"name\": \"wftsvc-bm-20161123-020328423-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161124-013118943-v2\",\r\n \"name\": \"wftsvc-bm-20161124-013118943-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161125-012512715-v2\",\r\n \"name\": \"wftsvc-bm-20161125-012512715-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161126-012537693-v2\",\r\n \"name\": \"wftsvc-bm-20161126-012537693-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161127-012554430-v2\",\r\n \"name\": \"wftsvc-bm-20161127-012554430-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161128-012517911-v2\",\r\n \"name\": \"wftsvc-bm-20161128-012517911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161129-012602111-v2\",\r\n \"name\": \"wftsvc-bm-20161129-012602111-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161130-022145798-v2\",\r\n \"name\": \"wftsvc-bm-20161130-022145798-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161201-014317317-v2\",\r\n \"name\": \"wftsvc-bm-20161201-014317317-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161202-012812276-v2\",\r\n \"name\": \"wftsvc-bm-20161202-012812276-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161203-012713277-v2\",\r\n \"name\": \"wftsvc-bm-20161203-012713277-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161206-025602238-v2\",\r\n \"name\": \"wftsvc-bm-20161206-025602238-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161207-012657615-v2\",\r\n \"name\": \"wftsvc-bm-20161207-012657615-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161208-024401245-v2\",\r\n \"name\": \"wftsvc-bm-20161208-024401245-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161209-012721060-v2\",\r\n \"name\": \"wftsvc-bm-20161209-012721060-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161210-012529259-v2\",\r\n \"name\": \"wftsvc-bm-20161210-012529259-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161211-012543460-v2\",\r\n \"name\": \"wftsvc-bm-20161211-012543460-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161212-012643580-v2\",\r\n \"name\": \"wftsvc-bm-20161212-012643580-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161213-135747390-v2\",\r\n \"name\": \"wftsvc-bm-20161213-135747390-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161214-020204911-v2\",\r\n \"name\": \"wftsvc-bm-20161214-020204911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161215-012912635-v2\",\r\n \"name\": \"wftsvc-bm-20161215-012912635-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161216-014118622-v2\",\r\n \"name\": \"wftsvc-bm-20161216-014118622-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161217-013027250-v2\",\r\n \"name\": \"wftsvc-bm-20161217-013027250-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161218-042923602-v2\",\r\n \"name\": \"wftsvc-bm-20161218-042923602-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161219-024910832-v2\",\r\n \"name\": \"wftsvc-bm-20161219-024910832-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161220-021526028-v2\",\r\n \"name\": \"wftsvc-bm-20161220-021526028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161221-014332493-v2\",\r\n \"name\": \"wftsvc-bm-20161221-014332493-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161222-190424958-v2\",\r\n \"name\": \"wftsvc-bm-20161222-190424958-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161223-020219887-v2\",\r\n \"name\": \"wftsvc-bm-20161223-020219887-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161224-012754028-v2\",\r\n \"name\": \"wftsvc-bm-20161224-012754028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161225-012413900-v2\",\r\n \"name\": \"wftsvc-bm-20161225-012413900-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161226-012537497-v2\",\r\n \"name\": \"wftsvc-bm-20161226-012537497-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161227-012619489-v2\",\r\n \"name\": \"wftsvc-bm-20161227-012619489-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161228-012627978-v2\",\r\n \"name\": \"wftsvc-bm-20161228-012627978-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161229-013147614-v2\",\r\n \"name\": \"wftsvc-bm-20161229-013147614-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161230-012714627-v2\",\r\n \"name\": \"wftsvc-bm-20161230-012714627-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-ma-20161202-222619667-v2\",\r\n \"name\": \"wftsvc-ma-20161202-222619667-v2\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-ma-20161216-222607320-v2\",\r\n \"name\": \"wftsvc-ma-20161216-222607320-v2\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-mwh-20161203-012707281-v2\",\r\n \"name\": \"wftsvc-mwh-20161203-012707281-v2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-sn-20161129-211521656-v2\",\r\n \"name\": \"wftsvc-sn-20161129-211521656-v2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-sn-20161129-211525592-v2\",\r\n \"name\": \"wftsvc-sn-20161129-211525592-v2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yq-20161201-012845413-v2\",\r\n \"name\": \"wftsvc-yq-20161201-012845413-v2\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161026-012057297-v2\",\r\n \"name\": \"wftsvc-yt-20161026-012057297-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161210-012552629-v2\",\r\n \"name\": \"wftsvc-yt-20161210-012552629-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161221-012942018-v2\",\r\n \"name\": \"wftsvc-yt-20161221-012942018-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault1\",\r\n \"name\": \"wftsvcKeyVault1\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault2\",\r\n \"name\": \"wftsvcKeyVault2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault3\",\r\n \"name\": \"wftsvcKeyVault3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault4\",\r\n \"name\": \"wftsvcKeyVault4\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault5\",\r\n \"name\": \"wftsvcKeyVault5\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault6\",\r\n \"name\": \"wftsvcKeyVault6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVaultAM\",\r\n \"name\": \"wftsvcKeyVaultAM\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016bnrg\",\r\n \"name\": \"zikaiwtest10122016bnrg\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016chrg\",\r\n \"name\": \"zikaiwtest10122016chrg\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016dmrg\",\r\n \"name\": \"zikaiwtest10122016dmrg\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016osrg\",\r\n \"name\": \"zikaiwtest10122016osrg\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016snrg\",\r\n \"name\": \"zikaiwtest10122016snrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016tyrg\",\r\n \"name\": \"zikaiwtest10122016tyrg\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg\",\r\n \"name\": \"aaaaaaaaaaaaarg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1702250539\",\r\n \"name\": \"abhaymtest1702250539\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1702251613\",\r\n \"name\": \"abhaymtest1702251613\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703030726\",\r\n \"name\": \"abhaymtest1703030726\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703061931\",\r\n \"name\": \"abhaymtest1703061931\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703062131\",\r\n \"name\": \"abhaymtest1703062131\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703062345\",\r\n \"name\": \"abhaymtest1703062345\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703072008\",\r\n \"name\": \"abhaymtest1703072008\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703072343\",\r\n \"name\": \"abhaymtest1703072343\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayreverseproxy02\",\r\n \"name\": \"abhayreverseproxy02\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest01\",\r\n \"name\": \"abhaytest01\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest02\",\r\n \"name\": \"abhaytest02\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest04\",\r\n \"name\": \"abhaytest04\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayvm02\",\r\n \"name\": \"abhayvm02\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayvm03\",\r\n \"name\": \"abhayvm03\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/anmolprvbuild03\",\r\n \"name\": \"anmolprvbuild03\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/bztest-rg\",\r\n \"name\": \"bztest-rg\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/Default-ServiceBus-9653\",\r\n \"name\": \"Default-ServiceBus-9653\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/deployertest\",\r\n \"name\": \"deployertest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/dotnetsdkrg\",\r\n \"name\": \"dotnetsdkrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/nsgtest03\",\r\n \"name\": \"nsgtest03\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/nsgtest05\",\r\n \"name\": \"nsgtest05\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklinuxtest01\",\r\n \"name\": \"sdklinuxtest01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestrg2\",\r\n \"name\": \"sdktestrg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/SecureBaseImage\",\r\n \"name\": \"SecureBaseImage\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg\",\r\n \"name\": \"testCreaterg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1\",\r\n \"name\": \"testCreaterg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg\",\r\n \"name\": \"testDeleterg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testsdkdnetrestrg\",\r\n \"name\": \"testsdkdnetrestrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-202955140-v2\",\r\n \"name\": \"wftsvc-bm-20161024-202955140-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-210350686-v2\",\r\n \"name\": \"wftsvc-bm-20161024-210350686-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-210948818-v2\",\r\n \"name\": \"wftsvc-bm-20161024-210948818-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161025-012157409-v2\",\r\n \"name\": \"wftsvc-bm-20161025-012157409-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161026-012217543-v2\",\r\n \"name\": \"wftsvc-bm-20161026-012217543-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161028-014354355-v2\",\r\n \"name\": \"wftsvc-bm-20161028-014354355-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161029-012553441-v2\",\r\n \"name\": \"wftsvc-bm-20161029-012553441-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161030-012137041-v2\",\r\n \"name\": \"wftsvc-bm-20161030-012137041-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161031-012217322-v2\",\r\n \"name\": \"wftsvc-bm-20161031-012217322-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161101-012812361-v2\",\r\n \"name\": \"wftsvc-bm-20161101-012812361-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161102-044018564-v2\",\r\n \"name\": \"wftsvc-bm-20161102-044018564-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161115-012828172-v2\",\r\n \"name\": \"wftsvc-bm-20161115-012828172-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161116-012248545-v2\",\r\n \"name\": \"wftsvc-bm-20161116-012248545-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161117-013025621-v2\",\r\n \"name\": \"wftsvc-bm-20161117-013025621-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161118-162552118-v2\",\r\n \"name\": \"wftsvc-bm-20161118-162552118-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161119-020853683-v2\",\r\n \"name\": \"wftsvc-bm-20161119-020853683-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161120-015112327-v2\",\r\n \"name\": \"wftsvc-bm-20161120-015112327-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161121-013411054-v2\",\r\n \"name\": \"wftsvc-bm-20161121-013411054-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161122-014033729-v2\",\r\n \"name\": \"wftsvc-bm-20161122-014033729-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161123-020328423-v2\",\r\n \"name\": \"wftsvc-bm-20161123-020328423-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161124-013118943-v2\",\r\n \"name\": \"wftsvc-bm-20161124-013118943-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161125-012512715-v2\",\r\n \"name\": \"wftsvc-bm-20161125-012512715-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161126-012537693-v2\",\r\n \"name\": \"wftsvc-bm-20161126-012537693-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161127-012554430-v2\",\r\n \"name\": \"wftsvc-bm-20161127-012554430-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161128-012517911-v2\",\r\n \"name\": \"wftsvc-bm-20161128-012517911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161129-012602111-v2\",\r\n \"name\": \"wftsvc-bm-20161129-012602111-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161130-022145798-v2\",\r\n \"name\": \"wftsvc-bm-20161130-022145798-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161201-014317317-v2\",\r\n \"name\": \"wftsvc-bm-20161201-014317317-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161202-012812276-v2\",\r\n \"name\": \"wftsvc-bm-20161202-012812276-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161203-012713277-v2\",\r\n \"name\": \"wftsvc-bm-20161203-012713277-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161206-025602238-v2\",\r\n \"name\": \"wftsvc-bm-20161206-025602238-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161207-012657615-v2\",\r\n \"name\": \"wftsvc-bm-20161207-012657615-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161208-024401245-v2\",\r\n \"name\": \"wftsvc-bm-20161208-024401245-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161209-012721060-v2\",\r\n \"name\": \"wftsvc-bm-20161209-012721060-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161210-012529259-v2\",\r\n \"name\": \"wftsvc-bm-20161210-012529259-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161211-012543460-v2\",\r\n \"name\": \"wftsvc-bm-20161211-012543460-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161212-012643580-v2\",\r\n \"name\": \"wftsvc-bm-20161212-012643580-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161213-135747390-v2\",\r\n \"name\": \"wftsvc-bm-20161213-135747390-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161214-020204911-v2\",\r\n \"name\": \"wftsvc-bm-20161214-020204911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161215-012912635-v2\",\r\n \"name\": \"wftsvc-bm-20161215-012912635-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161216-014118622-v2\",\r\n \"name\": \"wftsvc-bm-20161216-014118622-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161217-013027250-v2\",\r\n \"name\": \"wftsvc-bm-20161217-013027250-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161218-042923602-v2\",\r\n \"name\": \"wftsvc-bm-20161218-042923602-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161219-024910832-v2\",\r\n \"name\": \"wftsvc-bm-20161219-024910832-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161220-021526028-v2\",\r\n \"name\": \"wftsvc-bm-20161220-021526028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161221-014332493-v2\",\r\n \"name\": \"wftsvc-bm-20161221-014332493-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161222-190424958-v2\",\r\n \"name\": \"wftsvc-bm-20161222-190424958-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161223-020219887-v2\",\r\n \"name\": \"wftsvc-bm-20161223-020219887-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161224-012754028-v2\",\r\n \"name\": \"wftsvc-bm-20161224-012754028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161225-012413900-v2\",\r\n \"name\": \"wftsvc-bm-20161225-012413900-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161226-012537497-v2\",\r\n \"name\": \"wftsvc-bm-20161226-012537497-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161227-012619489-v2\",\r\n \"name\": \"wftsvc-bm-20161227-012619489-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161228-012627978-v2\",\r\n \"name\": \"wftsvc-bm-20161228-012627978-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161229-013147614-v2\",\r\n \"name\": \"wftsvc-bm-20161229-013147614-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161230-012714627-v2\",\r\n \"name\": \"wftsvc-bm-20161230-012714627-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-ma-20161202-222619667-v2\",\r\n \"name\": \"wftsvc-ma-20161202-222619667-v2\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-ma-20161216-222607320-v2\",\r\n \"name\": \"wftsvc-ma-20161216-222607320-v2\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-mwh-20161203-012707281-v2\",\r\n \"name\": \"wftsvc-mwh-20161203-012707281-v2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-sn-20161129-211521656-v2\",\r\n \"name\": \"wftsvc-sn-20161129-211521656-v2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-sn-20161129-211525592-v2\",\r\n \"name\": \"wftsvc-sn-20161129-211525592-v2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yq-20161201-012845413-v2\",\r\n \"name\": \"wftsvc-yq-20161201-012845413-v2\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161026-012057297-v2\",\r\n \"name\": \"wftsvc-yt-20161026-012057297-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161210-012552629-v2\",\r\n \"name\": \"wftsvc-yt-20161210-012552629-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161221-012942018-v2\",\r\n \"name\": \"wftsvc-yt-20161221-012942018-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault1\",\r\n \"name\": \"wftsvcKeyVault1\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault2\",\r\n \"name\": \"wftsvcKeyVault2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault3\",\r\n \"name\": \"wftsvcKeyVault3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault4\",\r\n \"name\": \"wftsvcKeyVault4\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault5\",\r\n \"name\": \"wftsvcKeyVault5\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault6\",\r\n \"name\": \"wftsvcKeyVault6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVaultAM\",\r\n \"name\": \"wftsvcKeyVaultAM\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016bnrg\",\r\n \"name\": \"zikaiwtest10122016bnrg\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016chrg\",\r\n \"name\": \"zikaiwtest10122016chrg\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016dmrg\",\r\n \"name\": \"zikaiwtest10122016dmrg\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016osrg\",\r\n \"name\": \"zikaiwtest10122016osrg\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016snrg\",\r\n \"name\": \"zikaiwtest10122016snrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016tyrg\",\r\n \"name\": \"zikaiwtest10122016tyrg\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Tue, 07 Mar 2017 05:17:22 GMT" + "Wed, 08 Mar 2017 14:51:42 GMT" ], "Pragma": [ "no-cache" @@ -38,16 +38,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" + "14948" ], "x-ms-request-id": [ - "469ccb68-8900-46b7-95de-e9af6ff90287" + "e76da4ad-49c2-4c64-8a19-92fcd08e1f6a" ], "x-ms-correlation-request-id": [ - "469ccb68-8900-46b7-95de-e9af6ff90287" + "e76da4ad-49c2-4c64-8a19-92fcd08e1f6a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170307T051722Z:469ccb68-8900-46b7-95de-e9af6ff90287" + "WESTUS2:20170308T145142Z:e76da4ad-49c2-4c64-8a19-92fcd08e1f6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,7 +62,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10285681-4aab-4dd2-a711-a71b6143c85c" + "9ab4ca4d-4759-40c7-9496-bd4921865161" ], "accept-language": [ "en-US" @@ -84,7 +84,7 @@ "no-cache" ], "Date": [ - "Tue, 07 Mar 2017 05:17:24 GMT" + "Wed, 08 Mar 2017 14:51:44 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +93,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14918" ], "x-ms-request-id": [ - "daa63793-1a6f-4c7c-83f9-57c4043c47c3" + "f3d6582c-be6c-4b11-973d-dcb8baefa0de" ], "x-ms-correlation-request-id": [ - "daa63793-1a6f-4c7c-83f9-57c4043c47c3" + "f3d6582c-be6c-4b11-973d-dcb8baefa0de" ], "x-ms-routing-request-id": [ - "WESTUS2:20170307T051724Z:daa63793-1a6f-4c7c-83f9-57c4043c47c3" + "WESTUS2:20170308T145144Z:f3d6582c-be6c-4b11-973d-dcb8baefa0de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -121,7 +121,7 @@ "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa\",\r\n \"name\": \"aaaaaaaaaaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaaaaaaaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636244362547166622\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaaaaaaaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"8888\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaaaaaaaaaa6877\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa\",\r\n \"name\": \"aaaaaaaaaaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaaaaaaaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636244362547166623\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaaaaaaaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"8888\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaaaaaaaaaa6877\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -133,7 +133,7 @@ "no-cache" ], "Date": [ - "Tue, 07 Mar 2017 05:17:24 GMT" + "Wed, 08 Mar 2017 14:51:45 GMT" ], "Pragma": [ "no-cache" @@ -155,16 +155,16 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14962" ], "x-ms-request-id": [ - "328deb42-db9d-4180-a28a-5a99e75d8bfc" + "5d5838b1-1003-4db7-be9c-d65fa1aa8806" ], "x-ms-correlation-request-id": [ - "328deb42-db9d-4180-a28a-5a99e75d8bfc" + "5d5838b1-1003-4db7-be9c-d65fa1aa8806" ], "x-ms-routing-request-id": [ - "WESTUS2:20170307T051725Z:328deb42-db9d-4180-a28a-5a99e75d8bfc" + "WESTUS2:20170308T145145Z:5d5838b1-1003-4db7-be9c-d65fa1aa8806" ] }, "StatusCode": 200 @@ -180,7 +180,7 @@ "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa\",\r\n \"name\": \"aaaaaaaaaaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaaaaaaaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636244362547166623\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaaaaaaaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"8888\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaaaaaaaaaa6877\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa\",\r\n \"name\": \"aaaaaaaaaaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaaaaaaaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636244362547166624\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaaaaaaaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"8888\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaaaaaaaaaa6877\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -192,7 +192,7 @@ "no-cache" ], "Date": [ - "Tue, 07 Mar 2017 05:17:25 GMT" + "Wed, 08 Mar 2017 14:51:45 GMT" ], "Pragma": [ "no-cache" @@ -214,16 +214,16 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14961" ], "x-ms-request-id": [ - "34945e91-0961-4305-9cd8-ad491f8ed12a" + "93bd1285-4f44-4466-b7d5-c64fd46458bb" ], "x-ms-correlation-request-id": [ - "34945e91-0961-4305-9cd8-ad491f8ed12a" + "93bd1285-4f44-4466-b7d5-c64fd46458bb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170307T051725Z:34945e91-0961-4305-9cd8-ad491f8ed12a" + "WESTUS2:20170308T145145Z:93bd1285-4f44-4466-b7d5-c64fd46458bb" ] }, "StatusCode": 200 @@ -232,20 +232,20 @@ "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa?api-version=2016-09-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FhYWFhYWFhYWFhYWFyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvYWFhYWFhYWFhYWFhYT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"8888\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"propertyNames\": [\r\n \"FabricSettings\"\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"8888\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "303" + "247" ], "User-Agent": [ "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa\",\r\n \"name\": \"aaaaaaaaaaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaaaaaaaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636244362547166623\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaaaaaaaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"8888\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaaaaaaaaaa6877\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa\",\r\n \"name\": \"aaaaaaaaaaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaaaaaaaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636244362547166624\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaaaaaaaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"8888\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaaaaaaaaaa6877\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -257,7 +257,7 @@ "no-cache" ], "Date": [ - "Tue, 07 Mar 2017 05:17:24 GMT" + "Wed, 08 Mar 2017 14:51:45 GMT" ], "Pragma": [ "no-cache" @@ -281,13 +281,13 @@ "1199" ], "x-ms-request-id": [ - "3a98c503-0f51-4475-b9ec-546151e6bd16" + "a6325cda-7f23-4c50-9936-12d9c18fe75c" ], "x-ms-correlation-request-id": [ - "3a98c503-0f51-4475-b9ec-546151e6bd16" + "a6325cda-7f23-4c50-9936-12d9c18fe75c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170307T051725Z:3a98c503-0f51-4475-b9ec-546151e6bd16" + "WESTUS2:20170308T145145Z:a6325cda-7f23-4c50-9936-12d9c18fe75c" ] }, "StatusCode": 200 diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestUpdateClusterResource.cs b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestUpdateClusterResource.cs index 3f8d05b4270b..2a2c97145159 100644 --- a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestUpdateClusterResource.cs +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestUpdateClusterResource.cs @@ -48,9 +48,7 @@ public void TestUpdate() } } } - }, - - PropertyNames = new[] { "FabricSettings" } + } }); cluster = serviceFabricClient.Clusters.Get(rg.Name, res.Name); From af359047a7858b916ec455ed89454012610bb438 Mon Sep 17 00:00:00 2001 From: Ching Chen Date: Mon, 20 Mar 2017 10:14:40 -0700 Subject: [PATCH 3/7] update sdk with latest Swagger --- .../Generated/Clusters.cs | 978 ---------- .../Generated/ClustersExtensions.cs | 254 --- .../Generated/ClustersOperations.cs | 1588 +++++++++++++++++ .../Generated/ClustersOperationsExtensions.cs | 416 +++++ .../Generated/IClusters.cs | 115 -- .../Generated/IClustersOperations.cs | 276 +++ .../Generated/IOperations.cs | 64 + .../Generated/IServiceFabricClient.cs | 53 +- .../Models/ApplicationDeltaHealthPolicy.cs | 53 + .../Models/ApplicationHealthPolicy.cs | 51 + .../Models/AvailableOperationDisplay.cs | 63 + .../Models/CertificateDescription.cs | 29 +- .../Models/ClientCertificateCommonName.cs | 33 +- .../Models/ClientCertificateThumbprint.cs | 20 +- .../Generated/Models/Cluster.cs | 143 +- .../Generated/Models/ClusterListResult.cs | 45 - .../Models/ClusterUpdateParameters.cs | 60 +- .../Models/ClusterUpgradeDeltaHealthPolicy.cs | 72 + .../Models/ClusterUpgradeHealthPolicy.cs | 60 + .../Generated/Models/ClusterUpgradePolicy.cs | 121 ++ .../Generated/Models/ClusterVersionDetails.cs | 23 +- .../Models/DiagnosticsStorageAccountConfig.cs | 32 +- .../Models/EndpointRangeDescription.cs | 17 +- .../Generated/Models/ErrorModel.cs | 16 +- .../Generated/Models/ErrorModelError.cs | 17 +- .../Generated/Models/ErrorModelException.cs | 30 +- .../Generated/Models/NodeTypeDescription.cs | 45 +- .../Generated/Models/OperationResult.cs | 62 + .../PaasApplicationDeltaHealthPolicy.cs | 46 - .../Models/PaasApplicationHealthPolicy.cs | 46 - .../PaasClusterUpgradeDeltaHealthPolicy.cs | 58 - .../Models/PaasClusterUpgradeHealthPolicy.cs | 52 - .../Models/PaasClusterUpgradePolicy.cs | 92 - .../PaasServiceTypeDeltaHealthPolicy.cs | 40 - .../Models/PaasServiceTypeHealthPolicy.cs | 40 - .../Generated/Models/Page.cs | 50 + .../Generated/Models/ProvisioningState.cs | 22 + .../Generated/Models/Resource.cs | 37 +- .../Models/ServiceTypeDeltaHealthPolicy.cs | 42 + .../Models/ServiceTypeHealthPolicy.cs | 40 + .../Models/SettingsParameterDescription.cs | 19 +- .../Models/SettingsSectionDescription.cs | 20 +- .../Generated/Operations.cs | 386 ++++ .../Generated/OperationsExtensions.cs | 83 + .../Generated/ServiceFabricClient.cs | 186 +- .../TestCreate.json | 169 +- .../TestDelete.json | 92 +- .../TestGet.json | 109 +- .../TestList.json | 30 +- .../TestListByResourceGroup.json | 109 +- .../TestUpdate.json | 98 +- .../Tests/ServiceFabricTestBase.cs | 82 +- .../Tests/TestCreateClusterResource.cs | 2 +- .../Tests/TestListClusterResource.cs | 6 +- .../Tests/TestUpdateClusterResource.cs | 4 +- 55 files changed, 4403 insertions(+), 2293 deletions(-) delete mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Clusters.cs delete mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClustersExtensions.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClustersOperations.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClustersOperationsExtensions.cs delete mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IClusters.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IClustersOperations.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IOperations.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ApplicationDeltaHealthPolicy.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ApplicationHealthPolicy.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/AvailableOperationDisplay.cs delete mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterListResult.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpgradeDeltaHealthPolicy.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpgradeHealthPolicy.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpgradePolicy.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/OperationResult.cs delete mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasApplicationDeltaHealthPolicy.cs delete mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasApplicationHealthPolicy.cs delete mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasClusterUpgradeDeltaHealthPolicy.cs delete mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasClusterUpgradeHealthPolicy.cs delete mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasClusterUpgradePolicy.cs delete mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasServiceTypeDeltaHealthPolicy.cs delete mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasServiceTypeHealthPolicy.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Page.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ProvisioningState.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ServiceTypeDeltaHealthPolicy.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ServiceTypeHealthPolicy.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Operations.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/OperationsExtensions.cs diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Clusters.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Clusters.cs deleted file mode 100644 index 6410758bfac7..000000000000 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Clusters.cs +++ /dev/null @@ -1,978 +0,0 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.ServiceFabric -{ - using System; - using System.Linq; - using System.Collections.Generic; - using System.Net; - using System.Net.Http; - using System.Net.Http.Headers; - using System.Text; - using System.Text.RegularExpressions; - using System.Threading; - using System.Threading.Tasks; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Newtonsoft.Json; - using Models; - - /// - /// Clusters operations. - /// - public partial class Clusters : IServiceOperations, IClusters - { - /// - /// Initializes a new instance of the Clusters class. - /// - /// - /// Reference to the service client. - /// - public Clusters(ServiceFabricClient client) - { - if (client == null) - { - throw new ArgumentNullException("client"); - } - this.Client = client; - } - - /// - /// Gets a reference to the ServiceFabricClient - /// - public ServiceFabricClient Client { get; private set; } - - /// - /// Update cluster configuration - /// - /// - /// The name of the Resource Group to which the server belongs. - /// - /// - /// The name of the cluster - /// - /// - /// The parameters which contains the property value and property name which - /// used to update the cluster configuration - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, ClusterUpdateParameters clusterUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (clusterName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); - } - if (this.Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (clusterUpdateParameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "clusterUpdateParameters"); - } - if (this.Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("clusterName", clusterName); - tracingParameters.Add("clusterUpdateParameters", clusterUpdateParameters); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); - } - // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabric/clusters/{clusterName}").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{clusterName}", Uri.EscapeDataString(clusterName)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); - if (this.Client.ApiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += "?" + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PATCH"); - _httpRequest.RequestUri = new Uri(_url); - // Set Headers - 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(clusterUpdateParameters != null) - { - _requestContent = SafeJsonConvert.SerializeObject(clusterUpdateParameters, this.Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); - _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } - // Set Credentials - if (this.Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.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 ErrorModelException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorModel _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.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 HttpOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.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 cluster resource - /// - /// - /// The name of the Resource Group to which the server belongs. - /// - /// - /// The name of the cluster - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (clusterName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); - } - if (this.Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (this.Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("clusterName", clusterName); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); - } - // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabric/clusters/{clusterName}").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{clusterName}", Uri.EscapeDataString(clusterName)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); - if (this.Client.ApiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += "?" + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); - // Set Headers - 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 (this.Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.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 ErrorModelException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorModel _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.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 HttpOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.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; - } - - /// - /// Create cluster resource - /// - /// - /// The name of the Resource Group to which the server belongs. - /// - /// - /// The name of the cluster - /// - /// - /// Put Request - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task> CreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, Cluster clusterresource, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (clusterName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); - } - if (this.Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (clusterresource == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "clusterresource"); - } - if (clusterresource != null) - { - clusterresource.Validate(); - } - if (this.Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("clusterName", clusterName); - tracingParameters.Add("clusterresource", clusterresource); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Create", tracingParameters); - } - // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabric/clusters/{clusterName}").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{clusterName}", Uri.EscapeDataString(clusterName)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); - if (this.Client.ApiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += "?" + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); - _httpRequest.RequestUri = new Uri(_url); - // Set Headers - 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(clusterresource != null) - { - _requestContent = SafeJsonConvert.SerializeObject(clusterresource, this.Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, Encoding.UTF8); - _httpRequest.Content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } - // Set Credentials - if (this.Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.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 ErrorModelException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorModel _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.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 HttpOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.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; - } - - /// - /// Delete cluster resource - /// - /// - /// The name of the Resource Group to which the server belongs. - /// - /// - /// The name of the cluster - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (clusterName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); - } - if (this.Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (this.Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("clusterName", clusterName); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); - } - // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabric/clusters/{clusterName}").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{clusterName}", Uri.EscapeDataString(clusterName)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); - if (this.Client.ApiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += "?" + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); - _httpRequest.RequestUri = new Uri(_url); - // Set Headers - 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 (this.Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.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 != 204) - { - var ex = new ErrorModelException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - try - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - ErrorModel _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.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 HttpOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - if (_shouldTrace) - { - ServiceClientTracing.Exit(_invocationId, _result); - } - return _result; - } - - /// - /// List cluster resource by resource group - /// - /// - /// The name of the Resource Group to which the server belongs. - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (this.Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (this.Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); - } - // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.ServiceFabric/clusters").ToString(); - _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); - if (this.Client.ApiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += "?" + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); - // Set Headers - 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 (this.Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.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 HttpOperationException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - 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 HttpOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.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; - } - - /// - /// List cluster resource - /// - /// - /// Headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// A response object containing the response body and response headers. - /// - public async Task> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - if (this.Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (this.Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - // Tracing - bool _shouldTrace = ServiceClientTracing.IsEnabled; - string _invocationId = null; - if (_shouldTrace) - { - _invocationId = ServiceClientTracing.NextInvocationId.ToString(); - Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); - } - // Construct URL - var _baseUrl = this.Client.BaseUri.AbsoluteUri; - var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.ServiceFabric/clusters").ToString(); - _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); - List _queryParameters = new List(); - if (this.Client.ApiVersion != null) - { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); - } - if (_queryParameters.Count > 0) - { - _url += "?" + string.Join("&", _queryParameters); - } - // Create HTTP transport objects - HttpRequestMessage _httpRequest = new HttpRequestMessage(); - HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); - _httpRequest.RequestUri = new Uri(_url); - // Set Headers - 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 (this.Client.Credentials != null) - { - cancellationToken.ThrowIfCancellationRequested(); - await this.Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); - } - // Send Request - if (_shouldTrace) - { - ServiceClientTracing.SendRequest(_invocationId, _httpRequest); - } - cancellationToken.ThrowIfCancellationRequested(); - _httpResponse = await this.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 HttpOperationException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - 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 HttpOperationResponse(); - _result.Request = _httpRequest; - _result.Response = _httpResponse; - // Deserialize Response - if ((int)_statusCode == 200) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = SafeJsonConvert.DeserializeObject(_responseContent, this.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/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClustersExtensions.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClustersExtensions.cs deleted file mode 100644 index 5279e0b77413..000000000000 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClustersExtensions.cs +++ /dev/null @@ -1,254 +0,0 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.ServiceFabric -{ - using System; - using System.Collections; - using System.Collections.Generic; - using System.Threading; - using System.Threading.Tasks; - using Microsoft.Rest; - using Models; - - /// - /// Extension methods for Clusters. - /// - public static partial class ClustersExtensions - { - /// - /// Update cluster configuration - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the Resource Group to which the server belongs. - /// - /// - /// The name of the cluster - /// - /// - /// The parameters which contains the property value and property name which - /// used to update the cluster configuration - /// - public static Cluster Update(this IClusters operations, string resourceGroupName, string clusterName, ClusterUpdateParameters clusterUpdateParameters) - { - return Task.Factory.StartNew(s => ((IClusters)s).UpdateAsync(resourceGroupName, clusterName, clusterUpdateParameters), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); - } - - /// - /// Update cluster configuration - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the Resource Group to which the server belongs. - /// - /// - /// The name of the cluster - /// - /// - /// The parameters which contains the property value and property name which - /// used to update the cluster configuration - /// - /// - /// The cancellation token. - /// - public static async Task UpdateAsync(this IClusters operations, string resourceGroupName, string clusterName, ClusterUpdateParameters clusterUpdateParameters, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, clusterName, clusterUpdateParameters, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Get cluster resource - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the Resource Group to which the server belongs. - /// - /// - /// The name of the cluster - /// - public static Cluster Get(this IClusters operations, string resourceGroupName, string clusterName) - { - return Task.Factory.StartNew(s => ((IClusters)s).GetAsync(resourceGroupName, clusterName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); - } - - /// - /// Get cluster resource - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the Resource Group to which the server belongs. - /// - /// - /// The name of the cluster - /// - /// - /// The cancellation token. - /// - public static async Task GetAsync(this IClusters operations, string resourceGroupName, string clusterName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Create cluster resource - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the Resource Group to which the server belongs. - /// - /// - /// The name of the cluster - /// - /// - /// Put Request - /// - public static Cluster Create(this IClusters operations, string resourceGroupName, string clusterName, Cluster clusterresource) - { - return Task.Factory.StartNew(s => ((IClusters)s).CreateAsync(resourceGroupName, clusterName, clusterresource), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); - } - - /// - /// Create cluster resource - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the Resource Group to which the server belongs. - /// - /// - /// The name of the cluster - /// - /// - /// Put Request - /// - /// - /// The cancellation token. - /// - public static async Task CreateAsync(this IClusters operations, string resourceGroupName, string clusterName, Cluster clusterresource, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.CreateWithHttpMessagesAsync(resourceGroupName, clusterName, clusterresource, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Delete cluster resource - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the Resource Group to which the server belongs. - /// - /// - /// The name of the cluster - /// - public static void Delete(this IClusters operations, string resourceGroupName, string clusterName) - { - Task.Factory.StartNew(s => ((IClusters)s).DeleteAsync(resourceGroupName, clusterName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); - } - - /// - /// Delete cluster resource - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the Resource Group to which the server belongs. - /// - /// - /// The name of the cluster - /// - /// - /// The cancellation token. - /// - public static async Task DeleteAsync(this IClusters operations, string resourceGroupName, string clusterName, CancellationToken cancellationToken = default(CancellationToken)) - { - await operations.DeleteWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false); - } - - /// - /// List cluster resource by resource group - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the Resource Group to which the server belongs. - /// - public static ClusterListResult ListByResourceGroup(this IClusters operations, string resourceGroupName) - { - return Task.Factory.StartNew(s => ((IClusters)s).ListByResourceGroupAsync(resourceGroupName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); - } - - /// - /// List cluster resource by resource group - /// - /// - /// The operations group for this extension method. - /// - /// - /// The name of the Resource Group to which the server belongs. - /// - /// - /// The cancellation token. - /// - public static async Task ListByResourceGroupAsync(this IClusters operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// List cluster resource - /// - /// - /// The operations group for this extension method. - /// - public static ClusterListResult List(this IClusters operations) - { - return Task.Factory.StartNew(s => ((IClusters)s).ListAsync(), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); - } - - /// - /// List cluster resource - /// - /// - /// The operations group for this extension method. - /// - /// - /// The cancellation token. - /// - public static async Task ListAsync(this IClusters operations, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - } -} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClustersOperations.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClustersOperations.cs new file mode 100644 index 000000000000..930917fb9155 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClustersOperations.cs @@ -0,0 +1,1588 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + 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; + + /// + /// ClustersOperations operations. + /// + internal partial class ClustersOperations : IServiceOperations, IClustersOperations + { + /// + /// Initializes a new instance of the ClustersOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal ClustersOperations(ServiceFabricClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the ServiceFabricClient + /// + public ServiceFabricClient Client { get; private set; } + + /// + /// Update cluster configuration + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + /// + /// The parameters which contains the property value and property name which + /// used to update the cluster configuration + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, ClusterUpdateParameters clusterUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, clusterName, clusterUpdateParameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Get cluster resource + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + /// + /// 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 clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + 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.ServiceFabric/clusters/{clusterName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorModelException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorModel _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; + } + + /// + /// Create cluster resource + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + /// + /// Put Request + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, Cluster clusterResource, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateWithHttpMessagesAsync(resourceGroupName, clusterName, clusterResource, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Delete cluster resource + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + /// + /// 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 DeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Delete", 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.ServiceFabric/clusters/{clusterName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 204) + { + var ex = new ErrorModelException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorModel _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(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// List cluster resource by resource group + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.ServiceFabric/clusters").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// List cluster resource + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("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}/providers/Microsoft.ServiceFabric/clusters").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Update cluster configuration + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + /// + /// The parameters which contains the property value and property name which + /// used to update the cluster configuration + /// + /// + /// 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> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, ClusterUpdateParameters clusterUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (clusterUpdateParameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterUpdateParameters"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("clusterUpdateParameters", clusterUpdateParameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", 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.ServiceFabric/clusters/{clusterName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("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(clusterUpdateParameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(clusterUpdateParameters, 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 ErrorModelException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorModel _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; + } + + /// + /// Create cluster resource + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + /// + /// Put Request + /// + /// + /// 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> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, Cluster clusterResource, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (clusterResource == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterResource"); + } + if (clusterResource != null) + { + clusterResource.Validate(); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("clusterResource", clusterResource); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreate", 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.ServiceFabric/clusters/{clusterName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("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(clusterResource != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(clusterResource, 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 ErrorModelException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorModel _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; + } + + /// + /// List cluster resource by resource group + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(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, "ListByResourceGroupNext", 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; + } + + /// + /// List cluster resource + /// + /// + /// 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/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClustersOperationsExtensions.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClustersOperationsExtensions.cs new file mode 100644 index 000000000000..d075249d8a45 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClustersOperationsExtensions.cs @@ -0,0 +1,416 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for ClustersOperations. + /// + public static partial class ClustersOperationsExtensions + { + /// + /// Update cluster configuration + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + /// + /// The parameters which contains the property value and property name which + /// used to update the cluster configuration + /// + public static Cluster Update(this IClustersOperations operations, string resourceGroupName, string clusterName, ClusterUpdateParameters clusterUpdateParameters) + { + return operations.UpdateAsync(resourceGroupName, clusterName, clusterUpdateParameters).GetAwaiter().GetResult(); + } + + /// + /// Update cluster configuration + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + /// + /// The parameters which contains the property value and property name which + /// used to update the cluster configuration + /// + /// + /// The cancellation token. + /// + public static async Task UpdateAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, ClusterUpdateParameters clusterUpdateParameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, clusterName, clusterUpdateParameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Get cluster resource + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + public static Cluster Get(this IClustersOperations operations, string resourceGroupName, string clusterName) + { + return operations.GetAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Get cluster resource + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Create cluster resource + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + /// + /// Put Request + /// + public static Cluster Create(this IClustersOperations operations, string resourceGroupName, string clusterName, Cluster clusterResource) + { + return operations.CreateAsync(resourceGroupName, clusterName, clusterResource).GetAwaiter().GetResult(); + } + + /// + /// Create cluster resource + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + /// + /// Put Request + /// + /// + /// The cancellation token. + /// + public static async Task CreateAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, Cluster clusterResource, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateWithHttpMessagesAsync(resourceGroupName, clusterName, clusterResource, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Delete cluster resource + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + public static void Delete(this IClustersOperations operations, string resourceGroupName, string clusterName) + { + operations.DeleteAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Delete cluster resource + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// List cluster resource by resource group + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + public static IPage ListByResourceGroup(this IClustersOperations operations, string resourceGroupName) + { + return operations.ListByResourceGroupAsync(resourceGroupName).GetAwaiter().GetResult(); + } + + /// + /// List cluster resource by resource group + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The cancellation token. + /// + public static async Task> ListByResourceGroupAsync(this IClustersOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List cluster resource + /// + /// + /// The operations group for this extension method. + /// + public static IPage List(this IClustersOperations operations) + { + return operations.ListAsync().GetAwaiter().GetResult(); + } + + /// + /// List cluster resource + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this IClustersOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Update cluster configuration + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + /// + /// The parameters which contains the property value and property name which + /// used to update the cluster configuration + /// + public static Cluster BeginUpdate(this IClustersOperations operations, string resourceGroupName, string clusterName, ClusterUpdateParameters clusterUpdateParameters) + { + return operations.BeginUpdateAsync(resourceGroupName, clusterName, clusterUpdateParameters).GetAwaiter().GetResult(); + } + + /// + /// Update cluster configuration + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + /// + /// The parameters which contains the property value and property name which + /// used to update the cluster configuration + /// + /// + /// The cancellation token. + /// + public static async Task BeginUpdateAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, ClusterUpdateParameters clusterUpdateParameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginUpdateWithHttpMessagesAsync(resourceGroupName, clusterName, clusterUpdateParameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Create cluster resource + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + /// + /// Put Request + /// + public static Cluster BeginCreate(this IClustersOperations operations, string resourceGroupName, string clusterName, Cluster clusterResource) + { + return operations.BeginCreateAsync(resourceGroupName, clusterName, clusterResource).GetAwaiter().GetResult(); + } + + /// + /// Create cluster resource + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group to which the resource belongs or get created + /// + /// + /// The name of the cluster resource + /// + /// + /// Put Request + /// + /// + /// The cancellation token. + /// + public static async Task BeginCreateAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, Cluster clusterResource, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginCreateWithHttpMessagesAsync(resourceGroupName, clusterName, clusterResource, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List cluster resource by resource group + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListByResourceGroupNext(this IClustersOperations operations, string nextPageLink) + { + return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// List cluster resource by resource group + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByResourceGroupNextAsync(this IClustersOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List cluster resource + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this IClustersOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// List cluster resource + /// + /// + /// 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 IClustersOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IClusters.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IClusters.cs deleted file mode 100644 index c651aab59dae..000000000000 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IClusters.cs +++ /dev/null @@ -1,115 +0,0 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.ServiceFabric -{ - using System; - using System.Collections.Generic; - using System.Net.Http; - using System.Threading; - using System.Threading.Tasks; - using Microsoft.Rest; - using Models; - - /// - /// Clusters operations. - /// - public partial interface IClusters - { - /// - /// Update cluster configuration - /// - /// - /// The name of the Resource Group to which the server belongs. - /// - /// - /// The name of the cluster - /// - /// - /// The parameters which contains the property value and property name - /// which used to update the cluster configuration - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, ClusterUpdateParameters clusterUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Get cluster resource - /// - /// - /// The name of the Resource Group to which the server belongs. - /// - /// - /// The name of the cluster - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Create cluster resource - /// - /// - /// The name of the Resource Group to which the server belongs. - /// - /// - /// The name of the cluster - /// - /// - /// Put Request - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> CreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, Cluster clusterresource, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Delete cluster resource - /// - /// - /// The name of the Resource Group to which the server belongs. - /// - /// - /// The name of the cluster - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// List cluster resource by resource group - /// - /// - /// The name of the Resource Group to which the server belongs. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// List cluster resource - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - Task> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - } -} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IClustersOperations.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IClustersOperations.cs new file mode 100644 index 000000000000..b5bad3a739ad --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IClustersOperations.cs @@ -0,0 +1,276 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// ClustersOperations operations. + /// + public partial interface IClustersOperations + { + /// + /// Update cluster configuration + /// + /// + /// The name of the resource group to which the resource belongs or get + /// created + /// + /// + /// The name of the cluster resource + /// + /// + /// The parameters which contains the property value and property name + /// which used to update the cluster configuration + /// + /// + /// 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 clusterName, ClusterUpdateParameters clusterUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Get cluster resource + /// + /// + /// The name of the resource group to which the resource belongs or get + /// created + /// + /// + /// The name of the cluster resource + /// + /// + /// 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 clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Create cluster resource + /// + /// + /// The name of the resource group to which the resource belongs or get + /// created + /// + /// + /// The name of the cluster resource + /// + /// + /// Put Request + /// + /// + /// 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 clusterName, Cluster clusterResource, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Delete cluster resource + /// + /// + /// The name of the resource group to which the resource belongs or get + /// created + /// + /// + /// The name of the cluster resource + /// + /// + /// 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 DeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List cluster resource by resource group + /// + /// + /// The name of the resource group to which the resource belongs or get + /// created + /// + /// + /// 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>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List cluster resource + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Update cluster configuration + /// + /// + /// The name of the resource group to which the resource belongs or get + /// created + /// + /// + /// The name of the cluster resource + /// + /// + /// The parameters which contains the property value and property name + /// which used to update the cluster configuration + /// + /// + /// 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> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string clusterName, ClusterUpdateParameters clusterUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Create cluster resource + /// + /// + /// The name of the resource group to which the resource belongs or get + /// created + /// + /// + /// The name of the cluster resource + /// + /// + /// Put Request + /// + /// + /// 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> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string clusterName, Cluster clusterResource, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List cluster resource by resource group + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List cluster resource + /// + /// + /// 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/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IOperations.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IOperations.cs new file mode 100644 index 000000000000..9160f6a4d255 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IOperations.cs @@ -0,0 +1,64 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Operations operations. + /// + public partial interface IOperations + { + /// + /// Lists all of the available ServiceFabric REST API operations. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists all of the available ServiceFabric REST API operations. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IServiceFabricClient.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IServiceFabricClient.cs index ececad7d3593..589bd23884ec 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IServiceFabricClient.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IServiceFabricClient.cs @@ -1,26 +1,24 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ServiceFabric { - using System; - using System.Collections.Generic; - using System.Net.Http; - using System.Threading; - using System.Threading.Tasks; - using Newtonsoft.Json; + using Microsoft.Azure; + using Microsoft.Azure.Management; using Microsoft.Rest; + using Microsoft.Rest.Azure; using Models; + using Newtonsoft.Json; /// /// - public partial interface IServiceFabricClient : IDisposable + public partial interface IServiceFabricClient : System.IDisposable { /// /// The base URI of the service. /// - Uri BaseUri { get; set; } + System.Uri BaseUri { get; set; } /// /// Gets or sets json serialization settings. @@ -33,26 +31,47 @@ public partial interface IServiceFabricClient : IDisposable JsonSerializerSettings DeserializationSettings { get; } /// - /// The subscription identifier + /// Credentials needed for the client to connect to Azure. + /// + ServiceClientCredentials Credentials { get; } + + /// + /// The customer subscription identifier /// string SubscriptionId { get; set; } /// - /// The version of the api + /// The version of the ServiceFabric resouce provider api /// - string ApiVersion { get; set; } + string ApiVersion { get; } /// - /// Subscription credentials which uniquely identify client - /// subscription. + /// Gets or sets the preferred language for the response. /// - ServiceClientCredentials Credentials { get; } + string AcceptLanguage { get; set; } + + /// + /// Gets or sets 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. + /// + bool? GenerateClientRequestId { get; set; } + + /// + /// Gets the IClustersOperations. + /// + IClustersOperations Clusters { get; } /// - /// Gets the IClusters. + /// Gets the IOperations. /// - IClusters Clusters { get; } + IOperations Operations { get; } } } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ApplicationDeltaHealthPolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ApplicationDeltaHealthPolicy.cs new file mode 100644 index 000000000000..29fd0a6e608e --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ApplicationDeltaHealthPolicy.cs @@ -0,0 +1,53 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Application health policy + /// + public partial class ApplicationDeltaHealthPolicy + { + /// + /// Initializes a new instance of the ApplicationDeltaHealthPolicy + /// class. + /// + public ApplicationDeltaHealthPolicy() { } + + /// + /// Initializes a new instance of the ApplicationDeltaHealthPolicy + /// class. + /// + /// Delta health + /// policy for default services + /// Health policy for + /// additional service + public ApplicationDeltaHealthPolicy(ServiceTypeDeltaHealthPolicy defaultServiceTypeDeltaHealthPolicy = default(ServiceTypeDeltaHealthPolicy), IDictionary serivceTypeDeltaHealthPolicies = default(IDictionary)) + { + DefaultServiceTypeDeltaHealthPolicy = defaultServiceTypeDeltaHealthPolicy; + SerivceTypeDeltaHealthPolicies = serivceTypeDeltaHealthPolicies; + } + + /// + /// Gets or sets delta health policy for default services + /// + [JsonProperty(PropertyName = "defaultServiceTypeDeltaHealthPolicy")] + public ServiceTypeDeltaHealthPolicy DefaultServiceTypeDeltaHealthPolicy { get; set; } + + /// + /// Gets or sets health policy for additional service + /// + [JsonProperty(PropertyName = "serivceTypeDeltaHealthPolicies")] + public IDictionary SerivceTypeDeltaHealthPolicies { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ApplicationHealthPolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ApplicationHealthPolicy.cs new file mode 100644 index 000000000000..f4d21690e3db --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ApplicationHealthPolicy.cs @@ -0,0 +1,51 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Application health policy + /// + public partial class ApplicationHealthPolicy + { + /// + /// Initializes a new instance of the ApplicationHealthPolicy class. + /// + public ApplicationHealthPolicy() { } + + /// + /// Initializes a new instance of the ApplicationHealthPolicy class. + /// + /// Health policy for the + /// default service + /// SerivceType health + /// policy + public ApplicationHealthPolicy(ServiceTypeHealthPolicy defaultServiceTypeHealthPolicy = default(ServiceTypeHealthPolicy), IDictionary serivceTypeHealthPolicies = default(IDictionary)) + { + DefaultServiceTypeHealthPolicy = defaultServiceTypeHealthPolicy; + SerivceTypeHealthPolicies = serivceTypeHealthPolicies; + } + + /// + /// Gets or sets health policy for the default service + /// + [JsonProperty(PropertyName = "defaultServiceTypeHealthPolicy")] + public ServiceTypeHealthPolicy DefaultServiceTypeHealthPolicy { get; set; } + + /// + /// Gets or sets serivceType health policy + /// + [JsonProperty(PropertyName = "serivceTypeHealthPolicies")] + public IDictionary SerivceTypeHealthPolicies { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/AvailableOperationDisplay.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/AvailableOperationDisplay.cs new file mode 100644 index 000000000000..08d4962d642f --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/AvailableOperationDisplay.cs @@ -0,0 +1,63 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Operation supported by ServiceFabric resource provider + /// + public partial class AvailableOperationDisplay + { + /// + /// Initializes a new instance of the AvailableOperationDisplay class. + /// + public AvailableOperationDisplay() { } + + /// + /// Initializes a new instance of the AvailableOperationDisplay class. + /// + /// Provider name + /// Resource name + /// Operation name + /// Operation description + public AvailableOperationDisplay(string provider = default(string), string resource = default(string), string operation = default(string), string description = default(string)) + { + Provider = provider; + Resource = resource; + Operation = operation; + Description = description; + } + + /// + /// Gets or sets provider name + /// + [JsonProperty(PropertyName = "provider")] + public string Provider { get; set; } + + /// + /// Gets or sets resource name + /// + [JsonProperty(PropertyName = "resource")] + public string Resource { get; set; } + + /// + /// Gets or sets operation name + /// + [JsonProperty(PropertyName = "operation")] + public string Operation { get; set; } + + /// + /// Gets or sets operation description + /// + [JsonProperty(PropertyName = "description")] + public string Description { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/CertificateDescription.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/CertificateDescription.cs index 9a0db4b69455..6a021ed92879 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/CertificateDescription.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/CertificateDescription.cs @@ -1,18 +1,17 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ServiceFabric.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; + using System.Linq; /// - /// Certificate description + /// Certificate details /// public partial class CertificateDescription { @@ -24,6 +23,14 @@ public CertificateDescription() { } /// /// Initializes a new instance of the CertificateDescription class. /// + /// Thumbprint of the primary + /// certificate + /// Thumbprint of the secondary + /// certificate + /// The local certificate store location. + /// Possible values include: 'AddressBook', 'AuthRoot', + /// 'CertificateAuthority', 'Disallowed', 'My', 'Root', + /// 'TrustedPeople', 'TrustedPublisher' public CertificateDescription(string thumbprint = default(string), string thumbprintSecondary = default(string), string x509StoreName = default(string)) { Thumbprint = thumbprint; @@ -32,19 +39,21 @@ public CertificateDescription() { } } /// + /// Gets or sets thumbprint of the primary certificate /// [JsonProperty(PropertyName = "thumbprint")] public string Thumbprint { get; set; } /// + /// Gets or sets thumbprint of the secondary certificate /// [JsonProperty(PropertyName = "thumbprintSecondary")] public string ThumbprintSecondary { get; set; } /// - /// Possible values include: 'AddressBook', 'AuthRoot', - /// 'CertificateAuthority', 'Disallowed', 'My', 'Root', - /// 'TrustedPeople', 'TrustedPublisher' + /// Gets or sets the local certificate store location. Possible values + /// include: 'AddressBook', 'AuthRoot', 'CertificateAuthority', + /// 'Disallowed', 'My', 'Root', 'TrustedPeople', 'TrustedPublisher' /// [JsonProperty(PropertyName = "x509StoreName")] public string X509StoreName { get; set; } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClientCertificateCommonName.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClientCertificateCommonName.cs index 0513f10f633f..35cc9aa366ac 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClientCertificateCommonName.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClientCertificateCommonName.cs @@ -1,18 +1,17 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ServiceFabric.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; + using System.Linq; /// - /// NodeType description + /// Client certificate details using common name /// public partial class ClientCertificateCommonName { @@ -26,19 +25,35 @@ public ClientCertificateCommonName() { } /// Initializes a new instance of the ClientCertificateCommonName /// class. /// - public ClientCertificateCommonName(bool? isAdmin = default(bool?), string certificateIssuerThumbprint = default(string)) + /// Is this certificate used for admin access + /// from the client, if false , it is used or query only access + /// Certificate common name to be + /// granted access; be carefull using wild card common names + /// Certificate issuer + /// thumbprint + public ClientCertificateCommonName(bool? isAdmin = default(bool?), string certificateCommonName = default(string), string certificateIssuerThumbprint = default(string)) { IsAdmin = isAdmin; + CertificateCommonName = certificateCommonName; CertificateIssuerThumbprint = certificateIssuerThumbprint; } /// - /// Is admin or not + /// Gets or sets is this certificate used for admin access from the + /// client, if false , it is used or query only access /// [JsonProperty(PropertyName = "isAdmin")] public bool? IsAdmin { get; set; } /// + /// Gets or sets certificate common name to be granted access; be + /// carefull using wild card common names + /// + [JsonProperty(PropertyName = "certificateCommonName")] + public string CertificateCommonName { get; set; } + + /// + /// Gets or sets certificate issuer thumbprint /// [JsonProperty(PropertyName = "certificateIssuerThumbprint")] public string CertificateIssuerThumbprint { get; set; } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClientCertificateThumbprint.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClientCertificateThumbprint.cs index 138e352b0cc5..8d6a0b9a5348 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClientCertificateThumbprint.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClientCertificateThumbprint.cs @@ -1,18 +1,17 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ServiceFabric.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; + using System.Linq; /// - /// NodeType description + /// Client certificate details using thumbprint /// public partial class ClientCertificateThumbprint { @@ -26,6 +25,9 @@ public ClientCertificateThumbprint() { } /// Initializes a new instance of the ClientCertificateThumbprint /// class. /// + /// Is this certificate used for admin access + /// from the client, if false , it is used or query only access + /// Certificate thumbprint public ClientCertificateThumbprint(bool? isAdmin = default(bool?), string certificateThumbprint = default(string)) { IsAdmin = isAdmin; @@ -33,12 +35,14 @@ public ClientCertificateThumbprint() { } } /// - /// Is admin or not + /// Gets or sets is this certificate used for admin access from the + /// client, if false , it is used or query only access /// [JsonProperty(PropertyName = "isAdmin")] public bool? IsAdmin { get; set; } /// + /// Gets or sets certificate thumbprint /// [JsonProperty(PropertyName = "certificateThumbprint")] public string CertificateThumbprint { get; set; } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Cluster.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Cluster.cs index 7d8f4b266fc8..057262354650 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Cluster.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Cluster.cs @@ -1,20 +1,23 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ServiceFabric.Models { - using System; - using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; using Microsoft.Rest; using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; /// /// The cluster resource /// - [JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class Cluster : Resource { /// @@ -25,7 +28,53 @@ public Cluster() { } /// /// Initializes a new instance of the Cluster class. /// - public Cluster(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), IList availableClusterVersions = default(IList), string clusterId = default(string), string clusterState = default(string), string clusterEndpoint = default(string), string clusterCodeVersion = default(string), CertificateDescription certificate = default(CertificateDescription), string reliabilityLevel = default(string), string upgradeMode = default(string), IList clientCertificateThumbprints = default(IList), IList clientCertificateCommonNames = default(IList), IList fabricSettings = default(IList), CertificateDescription reverseProxyCertificate = default(CertificateDescription), string managementEndpoint = default(string), IList nodeTypes = default(IList), string provisioningState = default(string), string vmImage = default(string), DiagnosticsStorageAccountConfig diagnosticsStorageAccountConfig = default(DiagnosticsStorageAccountConfig), PaasClusterUpgradePolicy upgradeDescription = default(PaasClusterUpgradePolicy)) + /// Resource location. + /// Cluster reliability level indicates + /// replica set size of system service. Possible values include: + /// 'Bronze', 'Silver', 'Gold', 'Platinum' + /// Cluster upgrade mode indicates if fabric + /// upgrade is initiated automatically by the system or not. Possible + /// values include: 'Automatic', 'Manual' + /// Http endpoint for client + /// access + /// The list of nodetypes that make up the + /// cluster + /// The vm image name + /// Resource ID. + /// Resource name. + /// Resource type. + /// Resource tags. + /// The available cluster code + /// version which the cluster can upgrade to, note that you must choose + /// upgradeMode to manual to upgrade to + /// The cluster id the resource identifier for + /// the cluster resource + /// The state for the cluster. Possible + /// values include: 'Default', 'WaitingForNodes', 'Deploying', + /// 'BaselineUpgrade', 'UpdatingUserConfiguration', + /// 'UpdatingUserCertificate', 'UpdatingInfrastructure', + /// 'EnforcingClusterVersion', 'UpgradeServiceUnreachable', 'Deleting', + /// 'ScaleUp', 'ScaleDown', 'AutoScale', 'Ready', 'Failed' + /// The endpoint for the cluster + /// connecting to servicefabric resource provider + /// The ServiceFabric code version + /// running in your cluster + /// The certificates used for cluster + /// security + /// The client thumbprint + /// details ,it is used for client access for cluter operation + /// Client certificate + /// details using common name + /// ServiceFabric section settings + /// The certificate details for + /// the reverse proxy + /// The provisioning state of the + /// cluster resource. Possible values include: 'Default', 'Updating', + /// 'Succeeded', 'Failed', 'Canceled' + /// The storage + /// diagnostics account configuration details + /// Cluster upgrade policy + public Cluster(string location, string reliabilityLevel, string upgradeMode, string managementEndpoint, IList nodeTypes, string vmImage, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), IList availableClusterVersions = default(IList), string clusterId = default(string), string clusterState = default(string), string clusterEndpoint = default(string), string clusterCodeVersion = default(string), CertificateDescription certificate = default(CertificateDescription), IList clientCertificateThumbprints = default(IList), IList clientCertificateCommonNames = default(IList), IList fabricSettings = default(IList), CertificateDescription reverseProxyCertificate = default(CertificateDescription), string provisioningState = default(string), DiagnosticsStorageAccountConfig diagnosticsStorageAccountConfig = default(DiagnosticsStorageAccountConfig), ClusterUpgradePolicy upgradeDescription = default(ClusterUpgradePolicy)) : base(location, id, name, type, tags) { AvailableClusterVersions = availableClusterVersions; @@ -49,114 +98,158 @@ public Cluster() { } } /// + /// Gets the available cluster code version which the cluster can + /// upgrade to, note that you must choose upgradeMode to manual to + /// upgrade to /// [JsonProperty(PropertyName = "properties.availableClusterVersions")] public IList AvailableClusterVersions { get; private set; } /// + /// Gets the cluster id the resource identifier for the cluster + /// resource /// [JsonProperty(PropertyName = "properties.clusterId")] - public string ClusterId { get; set; } + public string ClusterId { get; private set; } /// - /// Possible values include: 'Default', 'WaitingForNodes', - /// 'Deploying', 'BaselineUpgrade', 'UpdatingUserConfiguration', - /// 'UpdatingUserCertificate', 'UpdatingInfrastructure', - /// 'EnforcingClusterVersion', 'UpgradeServiceUnreachable', - /// 'Deleting', 'ScaleUp', 'ScaleDown', 'AutoScale', 'Ready', 'Failed' + /// Gets the state for the cluster. Possible values include: 'Default', + /// 'WaitingForNodes', 'Deploying', 'BaselineUpgrade', + /// 'UpdatingUserConfiguration', 'UpdatingUserCertificate', + /// 'UpdatingInfrastructure', 'EnforcingClusterVersion', + /// 'UpgradeServiceUnreachable', 'Deleting', 'ScaleUp', 'ScaleDown', + /// 'AutoScale', 'Ready', 'Failed' /// [JsonProperty(PropertyName = "properties.clusterState")] public string ClusterState { get; private set; } /// + /// Gets the endpoint for the cluster connecting to servicefabric + /// resource provider /// [JsonProperty(PropertyName = "properties.clusterEndpoint")] - public string ClusterEndpoint { get; set; } + public string ClusterEndpoint { get; private set; } /// + /// Gets or sets the ServiceFabric code version running in your cluster /// [JsonProperty(PropertyName = "properties.clusterCodeVersion")] public string ClusterCodeVersion { get; set; } /// + /// Gets or sets the certificates used for cluster security /// [JsonProperty(PropertyName = "properties.certificate")] public CertificateDescription Certificate { get; set; } /// - /// Possible values include: 'Invalid', 'Bronze', 'Silver', 'Gold', - /// 'Platinum' + /// Gets or sets cluster reliability level indicates replica set size + /// of system service. Possible values include: 'Bronze', 'Silver', + /// 'Gold', 'Platinum' /// [JsonProperty(PropertyName = "properties.reliabilityLevel")] public string ReliabilityLevel { get; set; } /// - /// Possible values include: 'Default', 'Automatic', 'Manual' + /// Gets or sets cluster upgrade mode indicates if fabric upgrade is + /// initiated automatically by the system or not. Possible values + /// include: 'Automatic', 'Manual' /// [JsonProperty(PropertyName = "properties.upgradeMode")] public string UpgradeMode { get; set; } /// + /// Gets or sets the client thumbprint details ,it is used for client + /// access for cluter operation /// [JsonProperty(PropertyName = "properties.clientCertificateThumbprints")] public IList ClientCertificateThumbprints { get; set; } /// + /// Gets or sets client certificate details using common name /// [JsonProperty(PropertyName = "properties.clientCertificateCommonNames")] public IList ClientCertificateCommonNames { get; set; } /// + /// Gets or sets serviceFabric section settings /// [JsonProperty(PropertyName = "properties.fabricSettings")] public IList FabricSettings { get; set; } /// + /// Gets or sets the certificate details for the reverse proxy /// [JsonProperty(PropertyName = "properties.reverseProxyCertificate")] public CertificateDescription ReverseProxyCertificate { get; set; } /// + /// Gets or sets http endpoint for client access /// [JsonProperty(PropertyName = "properties.managementEndpoint")] public string ManagementEndpoint { get; set; } /// + /// Gets or sets the list of nodetypes that make up the cluster /// [JsonProperty(PropertyName = "properties.nodeTypes")] public IList NodeTypes { get; set; } /// - /// Possible values include: 'Default', 'WaitingForNodes', - /// 'Deploying', 'BaselineUpgrade', 'UpdatingUserConfiguration', - /// 'UpdatingUserCertificate', 'UpdatingInfrastructure', - /// 'EnforcingClusterVersion', 'UpgradeServiceUnreachable', - /// 'Deleting', 'ScaleUp', 'ScaleDown', 'AutoScale', 'Ready', 'Failed' + /// Gets the provisioning state of the cluster resource. Possible + /// values include: 'Default', 'Updating', 'Succeeded', 'Failed', + /// 'Canceled' /// [JsonProperty(PropertyName = "properties.provisioningState")] - public string ProvisioningState { get; set; } + public string ProvisioningState { get; private set; } /// + /// Gets or sets the vm image name /// [JsonProperty(PropertyName = "properties.vmImage")] public string VmImage { get; set; } /// + /// Gets or sets the storage diagnostics account configuration details /// [JsonProperty(PropertyName = "properties.diagnosticsStorageAccountConfig")] public DiagnosticsStorageAccountConfig DiagnosticsStorageAccountConfig { get; set; } /// + /// Gets or sets cluster upgrade policy /// [JsonProperty(PropertyName = "properties.upgradeDescription")] - public PaasClusterUpgradePolicy UpgradeDescription { get; set; } + public ClusterUpgradePolicy UpgradeDescription { get; set; } /// - /// Validate the object. Throws ValidationException if validation fails. + /// Validate the object. /// + /// + /// Thrown if validation fails + /// public override void Validate() { base.Validate(); + if (ReliabilityLevel == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ReliabilityLevel"); + } + if (UpgradeMode == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "UpgradeMode"); + } + if (ManagementEndpoint == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ManagementEndpoint"); + } + if (NodeTypes == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "NodeTypes"); + } + if (VmImage == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "VmImage"); + } } } } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterListResult.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterListResult.cs deleted file mode 100644 index 5e9c22b0ad18..000000000000 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterListResult.cs +++ /dev/null @@ -1,45 +0,0 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.ServiceFabric.Models -{ - using System; - using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - - /// - /// Cluster list results - /// - public partial class ClusterListResult - { - /// - /// Initializes a new instance of the ClusterListResult class. - /// - public ClusterListResult() { } - - /// - /// Initializes a new instance of the ClusterListResult class. - /// - public ClusterListResult(IList value = default(IList), string nextLink = default(string)) - { - Value = value; - NextLink = nextLink; - } - - /// - /// - [JsonProperty(PropertyName = "value")] - public IList Value { get; set; } - - /// - /// The URL to use for getting the next set of results. - /// - [JsonProperty(PropertyName = "nextLink")] - public string NextLink { get; set; } - - } -} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpdateParameters.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpdateParameters.cs index 9ff8f9456862..64e16f227cda 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpdateParameters.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpdateParameters.cs @@ -1,20 +1,23 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ServiceFabric.Models { - using System; - using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; using Microsoft.Rest; using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; /// /// Cluster update request /// - [JsonTransformation] + [Rest.Serialization.JsonTransformation] public partial class ClusterUpdateParameters { /// @@ -25,6 +28,28 @@ public ClusterUpdateParameters() { } /// /// Initializes a new instance of the ClusterUpdateParameters class. /// + /// Cluster reliability level indicates + /// replica set size of system service. Possible values include: + /// 'Invalid', 'Bronze', 'Silver', 'Gold', 'Platinum' + /// Cluster upgrade mode indicates if fabric + /// upgrade is initiated automatically by the system or not. Possible + /// values include: 'Default', 'Automatic', 'Manual' + /// The ServiceFabric code version, if + /// set it, please make sure you have set upgradeMode to Manual, + /// otherwise ,it will fail + /// The cluster certificate settings, the new + /// certificate should exist in VMSS or KeyVault,before you add it, it + /// will override original value + /// The client thumbprint + /// details ,it is used for client access for cluter operation, it will + /// override existing collection + /// ServiceFabric section settings, Note, + /// it will overwrite existing collection + /// Certificate for the reverse + /// proxy + /// The list of nodetypes that make up the + /// cluster, it will override + /// Cluster update parameters public ClusterUpdateParameters(string reliabilityLevel = default(string), string upgradeMode = default(string), string clusterCodeVersion = default(string), CertificateDescription certificate = default(CertificateDescription), IList clientCertificateThumbprints = default(IList), IList fabricSettings = default(IList), CertificateDescription reverseProxyCertificate = default(CertificateDescription), IList nodeTypes = default(IList), IDictionary tags = default(IDictionary)) { ReliabilityLevel = reliabilityLevel; @@ -39,50 +64,65 @@ public ClusterUpdateParameters() { } } /// - /// Possible values include: 'Invalid', 'Bronze', 'Silver', 'Gold', - /// 'Platinum' + /// Gets or sets cluster reliability level indicates replica set size + /// of system service. Possible values include: 'Invalid', 'Bronze', + /// 'Silver', 'Gold', 'Platinum' /// [JsonProperty(PropertyName = "properties.reliabilityLevel")] public string ReliabilityLevel { get; set; } /// - /// Possible values include: 'Default', 'Automatic', 'Manual' + /// Gets or sets cluster upgrade mode indicates if fabric upgrade is + /// initiated automatically by the system or not. Possible values + /// include: 'Default', 'Automatic', 'Manual' /// [JsonProperty(PropertyName = "properties.upgradeMode")] public string UpgradeMode { get; set; } /// + /// Gets or sets the ServiceFabric code version, if set it, please make + /// sure you have set upgradeMode to Manual, otherwise ,it will fail /// [JsonProperty(PropertyName = "properties.clusterCodeVersion")] public string ClusterCodeVersion { get; set; } /// + /// Gets or sets the cluster certificate settings, the new certificate + /// should exist in VMSS or KeyVault,before you add it, it will + /// override original value /// [JsonProperty(PropertyName = "properties.certificate")] public CertificateDescription Certificate { get; set; } /// + /// Gets or sets the client thumbprint details ,it is used for client + /// access for cluter operation, it will override existing collection /// [JsonProperty(PropertyName = "properties.clientCertificateThumbprints")] public IList ClientCertificateThumbprints { get; set; } /// + /// Gets or sets serviceFabric section settings, Note, it will + /// overwrite existing collection /// [JsonProperty(PropertyName = "properties.fabricSettings")] public IList FabricSettings { get; set; } /// + /// Gets or sets certificate for the reverse proxy /// [JsonProperty(PropertyName = "properties.reverseProxyCertificate")] public CertificateDescription ReverseProxyCertificate { get; set; } /// + /// Gets or sets the list of nodetypes that make up the cluster, it + /// will override /// [JsonProperty(PropertyName = "properties.nodeTypes")] public IList NodeTypes { get; set; } /// - /// Cluster tags. + /// Gets or sets cluster update parameters /// [JsonProperty(PropertyName = "tags")] public IDictionary Tags { get; set; } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpgradeDeltaHealthPolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpgradeDeltaHealthPolicy.cs new file mode 100644 index 000000000000..c24cf496825a --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpgradeDeltaHealthPolicy.cs @@ -0,0 +1,72 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Delta health policy for the cluster + /// + public partial class ClusterUpgradeDeltaHealthPolicy + { + /// + /// Initializes a new instance of the ClusterUpgradeDeltaHealthPolicy + /// class. + /// + public ClusterUpgradeDeltaHealthPolicy() { } + + /// + /// Initializes a new instance of the ClusterUpgradeDeltaHealthPolicy + /// class. + /// + /// Additional unhealthy + /// nodes percentage + /// Additional + /// unhealthy nodes percentage per upgrade domain + /// Additional + /// unhealthy applications percentage + /// Application health + /// policy + public ClusterUpgradeDeltaHealthPolicy(int? maxPercentDeltaUnhealthyNodes = default(int?), int? maxPercentUpgradeDomainDeltaUnhealthyNodes = default(int?), int? maxPercentDeltaUnhealthyApplications = default(int?), IDictionary applicationHealthPolicies = default(IDictionary)) + { + MaxPercentDeltaUnhealthyNodes = maxPercentDeltaUnhealthyNodes; + MaxPercentUpgradeDomainDeltaUnhealthyNodes = maxPercentUpgradeDomainDeltaUnhealthyNodes; + MaxPercentDeltaUnhealthyApplications = maxPercentDeltaUnhealthyApplications; + ApplicationHealthPolicies = applicationHealthPolicies; + } + + /// + /// Gets or sets additional unhealthy nodes percentage + /// + [JsonProperty(PropertyName = "maxPercentDeltaUnhealthyNodes")] + public int? MaxPercentDeltaUnhealthyNodes { get; set; } + + /// + /// Gets or sets additional unhealthy nodes percentage per upgrade + /// domain + /// + [JsonProperty(PropertyName = "maxPercentUpgradeDomainDeltaUnhealthyNodes")] + public int? MaxPercentUpgradeDomainDeltaUnhealthyNodes { get; set; } + + /// + /// Gets or sets additional unhealthy applications percentage + /// + [JsonProperty(PropertyName = "maxPercentDeltaUnhealthyApplications")] + public int? MaxPercentDeltaUnhealthyApplications { get; set; } + + /// + /// Gets or sets application health policy + /// + [JsonProperty(PropertyName = "applicationHealthPolicies")] + public IDictionary ApplicationHealthPolicies { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpgradeHealthPolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpgradeHealthPolicy.cs new file mode 100644 index 000000000000..76135548e14f --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpgradeHealthPolicy.cs @@ -0,0 +1,60 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Default cluster upgrade health policy + /// + public partial class ClusterUpgradeHealthPolicy + { + /// + /// Initializes a new instance of the ClusterUpgradeHealthPolicy class. + /// + public ClusterUpgradeHealthPolicy() { } + + /// + /// Initializes a new instance of the ClusterUpgradeHealthPolicy class. + /// + /// Max percent of unhealthy + /// nodes + /// Max percent of + /// unhealthy applications + /// Application health + /// policy + public ClusterUpgradeHealthPolicy(int? maxPercentUnhealthyNodes = default(int?), int? maxPercentUnhealthyApplications = default(int?), IDictionary applicationHealthPolicies = default(IDictionary)) + { + MaxPercentUnhealthyNodes = maxPercentUnhealthyNodes; + MaxPercentUnhealthyApplications = maxPercentUnhealthyApplications; + ApplicationHealthPolicies = applicationHealthPolicies; + } + + /// + /// Gets or sets max percent of unhealthy nodes + /// + [JsonProperty(PropertyName = "maxPercentUnhealthyNodes")] + public int? MaxPercentUnhealthyNodes { get; set; } + + /// + /// Gets or sets max percent of unhealthy applications + /// + [JsonProperty(PropertyName = "maxPercentUnhealthyApplications")] + public int? MaxPercentUnhealthyApplications { get; set; } + + /// + /// Gets or sets application health policy + /// + [JsonProperty(PropertyName = "applicationHealthPolicies")] + public IDictionary ApplicationHealthPolicies { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpgradePolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpgradePolicy.cs new file mode 100644 index 000000000000..f0fc0ace1db8 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpgradePolicy.cs @@ -0,0 +1,121 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Cluster upgrade policy + /// + public partial class ClusterUpgradePolicy + { + /// + /// Initializes a new instance of the ClusterUpgradePolicy class. + /// + public ClusterUpgradePolicy() { } + + /// + /// Initializes a new instance of the ClusterUpgradePolicy class. + /// + /// Use the user defined + /// upgrade policy or not + /// Force node to restart or not + /// Timeout for replica set + /// upgrade to complete + /// The length of time to wait + /// after completing an upgrade domain before performing health + /// checks. + /// The length of time that + /// health checks must pass continuously. + /// The length of time that + /// health checks can fail continuously + /// The upgrade timeout. + /// The timeout for any upgrade + /// domain. + /// Cluster health Policy + /// Delta health policy + public ClusterUpgradePolicy(bool? overrideUserUpgradePolicy = default(bool?), bool? forceRestart = default(bool?), string upgradeReplicaSetCheckTimeout = default(string), string healthCheckWaitDuration = default(string), string healthCheckStableDuration = default(string), string healthCheckRetryTimeout = default(string), string upgradeTimeout = default(string), string upgradeDomainTimeout = default(string), ClusterUpgradeHealthPolicy healthPolicy = default(ClusterUpgradeHealthPolicy), ClusterUpgradeDeltaHealthPolicy deltaHealthPolicy = default(ClusterUpgradeDeltaHealthPolicy)) + { + OverrideUserUpgradePolicy = overrideUserUpgradePolicy; + ForceRestart = forceRestart; + UpgradeReplicaSetCheckTimeout = upgradeReplicaSetCheckTimeout; + HealthCheckWaitDuration = healthCheckWaitDuration; + HealthCheckStableDuration = healthCheckStableDuration; + HealthCheckRetryTimeout = healthCheckRetryTimeout; + UpgradeTimeout = upgradeTimeout; + UpgradeDomainTimeout = upgradeDomainTimeout; + HealthPolicy = healthPolicy; + DeltaHealthPolicy = deltaHealthPolicy; + } + + /// + /// Gets or sets use the user defined upgrade policy or not + /// + [JsonProperty(PropertyName = "overrideUserUpgradePolicy")] + public bool? OverrideUserUpgradePolicy { get; set; } + + /// + /// Gets or sets force node to restart or not + /// + [JsonProperty(PropertyName = "forceRestart")] + public bool? ForceRestart { get; set; } + + /// + /// Gets or sets timeout for replica set upgrade to complete + /// + [JsonProperty(PropertyName = "upgradeReplicaSetCheckTimeout")] + public string UpgradeReplicaSetCheckTimeout { get; set; } + + /// + /// Gets or sets the length of time to wait after completing an upgrade + /// domain before performing health checks. + /// + [JsonProperty(PropertyName = "healthCheckWaitDuration")] + public string HealthCheckWaitDuration { get; set; } + + /// + /// Gets or sets the length of time that health checks must pass + /// continuously. + /// + [JsonProperty(PropertyName = "healthCheckStableDuration")] + public string HealthCheckStableDuration { get; set; } + + /// + /// Gets or sets the length of time that health checks can fail + /// continuously + /// + [JsonProperty(PropertyName = "healthCheckRetryTimeout")] + public string HealthCheckRetryTimeout { get; set; } + + /// + /// Gets or sets the upgrade timeout. + /// + [JsonProperty(PropertyName = "upgradeTimeout")] + public string UpgradeTimeout { get; set; } + + /// + /// Gets or sets the timeout for any upgrade domain. + /// + [JsonProperty(PropertyName = "upgradeDomainTimeout")] + public string UpgradeDomainTimeout { get; set; } + + /// + /// Gets or sets cluster health Policy + /// + [JsonProperty(PropertyName = "healthPolicy")] + public ClusterUpgradeHealthPolicy HealthPolicy { get; set; } + + /// + /// Gets or sets delta health policy + /// + [JsonProperty(PropertyName = "deltaHealthPolicy")] + public ClusterUpgradeDeltaHealthPolicy DeltaHealthPolicy { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterVersionDetails.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterVersionDetails.cs index 8bc8491c1abb..b301502c4dd7 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterVersionDetails.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterVersionDetails.cs @@ -1,18 +1,17 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ServiceFabric.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; + using System.Linq; /// - /// NodeType description + /// Fabric version details /// public partial class ClusterVersionDetails { @@ -24,6 +23,11 @@ public ClusterVersionDetails() { } /// /// Initializes a new instance of the ClusterVersionDetails class. /// + /// Fabric code version + /// The date of expiry of the above + /// version + /// Cluster operating system. Possible values + /// include: 'Default', 'Windows', 'Linux' public ClusterVersionDetails(string codeVersion = default(string), string supportExpiryUtc = default(string), string environment = default(string)) { CodeVersion = codeVersion; @@ -32,17 +36,20 @@ public ClusterVersionDetails() { } } /// + /// Gets or sets fabric code version /// [JsonProperty(PropertyName = "codeVersion")] public string CodeVersion { get; set; } /// + /// Gets or sets the date of expiry of the above version /// [JsonProperty(PropertyName = "supportExpiryUtc")] public string SupportExpiryUtc { get; set; } /// - /// Possible values include: 'Default', 'Windows', 'Linux' + /// Gets or sets cluster operating system. Possible values include: + /// 'Default', 'Windows', 'Linux' /// [JsonProperty(PropertyName = "environment")] public string Environment { get; set; } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/DiagnosticsStorageAccountConfig.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/DiagnosticsStorageAccountConfig.cs index 3480a3f286f6..473216aec402 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/DiagnosticsStorageAccountConfig.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/DiagnosticsStorageAccountConfig.cs @@ -1,15 +1,14 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ServiceFabric.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; + using System.Linq; /// /// Diagnostics storage account config @@ -26,6 +25,20 @@ public DiagnosticsStorageAccountConfig() { } /// Initializes a new instance of the DiagnosticsStorageAccountConfig /// class. /// + /// Diagnostics storage account + /// name + /// Primary key for the Azure + /// Storage + /// Secondary key for the Azure + /// Storage + /// Protected Diagnostics storage + /// key name + /// Diagnostics storage account blob + /// endpoint + /// Diagnostics storage account queue + /// endpoint + /// Diagnostics storage account table + /// endpoint public DiagnosticsStorageAccountConfig(string storageAccountName = default(string), string primaryAccessKey = default(string), string secondaryAccessKey = default(string), string protectedAccountKeyName = default(string), string blobEndpoint = default(string), string queueEndpoint = default(string), string tableEndpoint = default(string)) { StorageAccountName = storageAccountName; @@ -38,36 +51,43 @@ public DiagnosticsStorageAccountConfig() { } } /// + /// Gets or sets diagnostics storage account name /// [JsonProperty(PropertyName = "storageAccountName")] public string StorageAccountName { get; set; } /// + /// Gets or sets primary key for the Azure Storage /// [JsonProperty(PropertyName = "primaryAccessKey")] public string PrimaryAccessKey { get; set; } /// + /// Gets or sets secondary key for the Azure Storage /// [JsonProperty(PropertyName = "secondaryAccessKey")] public string SecondaryAccessKey { get; set; } /// + /// Gets or sets protected Diagnostics storage key name /// [JsonProperty(PropertyName = "protectedAccountKeyName")] public string ProtectedAccountKeyName { get; set; } /// + /// Gets or sets diagnostics storage account blob endpoint /// [JsonProperty(PropertyName = "blobEndpoint")] public string BlobEndpoint { get; set; } /// + /// Gets or sets diagnostics storage account queue endpoint /// [JsonProperty(PropertyName = "queueEndpoint")] public string QueueEndpoint { get; set; } /// + /// Gets or sets diagnostics storage account table endpoint /// [JsonProperty(PropertyName = "tableEndpoint")] public string TableEndpoint { get; set; } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/EndpointRangeDescription.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/EndpointRangeDescription.cs index 4ef72a2a4ca3..b4587a9a7f3d 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/EndpointRangeDescription.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/EndpointRangeDescription.cs @@ -1,18 +1,17 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ServiceFabric.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; + using System.Linq; /// - /// Endpoint range description + /// Port range details /// public partial class EndpointRangeDescription { @@ -24,6 +23,8 @@ public EndpointRangeDescription() { } /// /// Initializes a new instance of the EndpointRangeDescription class. /// + /// Starting port of a range of ports + /// End port of a range of ports public EndpointRangeDescription(int? startPort = default(int?), int? endPort = default(int?)) { StartPort = startPort; @@ -31,11 +32,13 @@ public EndpointRangeDescription() { } } /// + /// Gets or sets starting port of a range of ports /// [JsonProperty(PropertyName = "startPort")] public int? StartPort { get; set; } /// + /// Gets or sets end port of a range of ports /// [JsonProperty(PropertyName = "endPort")] public int? EndPort { get; set; } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModel.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModel.cs index 5a7ec839436a..087f6e71e2fe 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModel.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModel.cs @@ -1,18 +1,17 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ServiceFabric.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; + using System.Linq; /// - /// The model of the error + /// The structure of the error /// public partial class ErrorModel { @@ -24,13 +23,14 @@ public ErrorModel() { } /// /// Initializes a new instance of the ErrorModel class. /// + /// The error detail public ErrorModel(ErrorModelError error = default(ErrorModelError)) { Error = error; } /// - /// The error + /// Gets or sets the error detail /// [JsonProperty(PropertyName = "error")] public ErrorModelError Error { get; set; } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModelError.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModelError.cs index 215ffbee4ca1..1d7b6b9bf6ce 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModelError.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModelError.cs @@ -1,18 +1,17 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ServiceFabric.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; + using System.Linq; /// - /// The error + /// The error detail /// public partial class ErrorModelError { @@ -24,6 +23,8 @@ public ErrorModelError() { } /// /// Initializes a new instance of the ErrorModelError class. /// + /// The error code + /// The error message public ErrorModelError(string code = default(string), string message = default(string)) { Code = code; @@ -31,11 +32,13 @@ public ErrorModelError() { } } /// + /// Gets or sets the error code /// [JsonProperty(PropertyName = "code")] public string Code { get; set; } /// + /// Gets or sets the error message /// [JsonProperty(PropertyName = "message")] public string Message { get; set; } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModelException.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModelException.cs index 44b5faa8dca2..e9dec3d07a09 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModelException.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModelException.cs @@ -1,22 +1,19 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ServiceFabric.Models { + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; using Microsoft.Rest; - using System; - using System.Net.Http; - using System.Runtime.Serialization; -#if !PORTABLE && !DNXCORE50 - using System.Security.Permissions; -#endif /// /// Exception thrown for an invalid response with ErrorModel information. /// -#if !PORTABLE && !DNXCORE50 - [Serializable] +#if LEGACY + [System.Serializable] #endif public class ErrorModelException : RestException { @@ -56,18 +53,18 @@ public ErrorModelException(string message) /// /// The exception message. /// Inner exception. - public ErrorModelException(string message, Exception innerException) + public ErrorModelException(string message, System.Exception innerException) : base(message, innerException) { } -#if !PORTABLE && !DNXCORE50 +#if LEGACY /// /// Initializes a new instance of the ErrorModelException class. /// /// Serialization info. /// Streaming context. - protected ErrorModelException(SerializationInfo info, StreamingContext context) + protected ErrorModelException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { } @@ -77,13 +74,16 @@ protected ErrorModelException(SerializationInfo info, StreamingContext context) /// /// Serialization info. /// Streaming context. - [SecurityPermission(SecurityAction.Demand, SerializationFormatter = true)] - public override void GetObjectData(SerializationInfo info, StreamingContext context) + /// + /// Thrown when a required parameter is null + /// + [System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Demand, SerializationFormatter = true)] + public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { base.GetObjectData(info, context); if (info == null) { - throw new ArgumentNullException("info"); + throw new System.ArgumentNullException("info"); } info.AddValue("Request", Request); diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/NodeTypeDescription.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/NodeTypeDescription.cs index be418be5e2a3..37d31e59013a 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/NodeTypeDescription.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/NodeTypeDescription.cs @@ -1,18 +1,19 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ServiceFabric.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; + using System.Collections; + using System.Collections.Generic; + using System.Linq; /// - /// NodeType description + /// NodeType details /// public partial class NodeTypeDescription { @@ -24,6 +25,22 @@ public NodeTypeDescription() { } /// /// Initializes a new instance of the NodeTypeDescription class. /// + /// Name of NodeType + /// Placement property key + /// Capacity property key + /// TCP gateway endpoint + /// port + /// Http gateway endpoint + /// port + /// Nodetype durability Level. Possible + /// values include: 'Bronze', 'Silver', 'Gold', 'Platimun' + /// Ports used by applications + /// System assgined application + /// ports + /// Mark this node as primay + /// VMSS instance count + /// Endpoint used by reverse + /// proxy public NodeTypeDescription(string name = default(string), IDictionary placementProperties = default(IDictionary), IDictionary capacities = default(IDictionary), int? clientConnectionEndpointPort = default(int?), int? httpGatewayEndpointPort = default(int?), string durabilityLevel = default(string), EndpointRangeDescription applicationPorts = default(EndpointRangeDescription), EndpointRangeDescription ephemeralPorts = default(EndpointRangeDescription), bool? isPrimary = default(bool?), int? vmInstanceCount = default(int?), int? reverseProxyEndpointPort = default(int?)) { Name = name; @@ -40,58 +57,68 @@ public NodeTypeDescription() { } } /// + /// Gets or sets name of NodeType /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// + /// Gets or sets placement property key /// [JsonProperty(PropertyName = "placementProperties")] public IDictionary PlacementProperties { get; set; } /// + /// Gets or sets capacity property key /// [JsonProperty(PropertyName = "capacities")] public IDictionary Capacities { get; set; } /// + /// Gets or sets TCP gateway endpoint port /// [JsonProperty(PropertyName = "clientConnectionEndpointPort")] public int? ClientConnectionEndpointPort { get; set; } /// + /// Gets or sets http gateway endpoint port /// [JsonProperty(PropertyName = "httpGatewayEndpointPort")] public int? HttpGatewayEndpointPort { get; set; } /// - /// Possible values include: 'Bronze', 'Silver', 'Gold', 'Platimun' + /// Gets or sets nodetype durability Level. Possible values include: + /// 'Bronze', 'Silver', 'Gold', 'Platimun' /// [JsonProperty(PropertyName = "durabilityLevel")] public string DurabilityLevel { get; set; } /// + /// Gets or sets ports used by applications /// [JsonProperty(PropertyName = "applicationPorts")] public EndpointRangeDescription ApplicationPorts { get; set; } /// + /// Gets or sets system assgined application ports /// [JsonProperty(PropertyName = "ephemeralPorts")] public EndpointRangeDescription EphemeralPorts { get; set; } /// - /// Is primary or not + /// Gets or sets mark this node as primay /// [JsonProperty(PropertyName = "isPrimary")] public bool? IsPrimary { get; set; } /// + /// Gets or sets VMSS instance count /// [JsonProperty(PropertyName = "vmInstanceCount")] public int? VmInstanceCount { get; set; } /// + /// Gets or sets endpoint used by reverse proxy /// [JsonProperty(PropertyName = "reverseProxyEndpointPort")] public int? ReverseProxyEndpointPort { get; set; } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/OperationResult.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/OperationResult.cs new file mode 100644 index 000000000000..2efab41205ee --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/OperationResult.cs @@ -0,0 +1,62 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Available operation list result + /// + public partial class OperationResult + { + /// + /// Initializes a new instance of the OperationResult class. + /// + public OperationResult() { } + + /// + /// Initializes a new instance of the OperationResult class. + /// + /// Result name + /// Origin result + /// The URL to use for getting the next set of + /// results. + public OperationResult(string name = default(string), AvailableOperationDisplay display = default(AvailableOperationDisplay), string origin = default(string), string nextLink = default(string)) + { + Name = name; + Display = display; + Origin = origin; + NextLink = nextLink; + } + + /// + /// Gets or sets result name + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// + [JsonProperty(PropertyName = "display")] + public AvailableOperationDisplay Display { get; set; } + + /// + /// Gets or sets origin result + /// + [JsonProperty(PropertyName = "origin")] + public string Origin { get; set; } + + /// + /// Gets or sets the URL to use for getting the next set of results. + /// + [JsonProperty(PropertyName = "nextLink")] + public string NextLink { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasApplicationDeltaHealthPolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasApplicationDeltaHealthPolicy.cs deleted file mode 100644 index 7cd877222b35..000000000000 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasApplicationDeltaHealthPolicy.cs +++ /dev/null @@ -1,46 +0,0 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.ServiceFabric.Models -{ - using System; - using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - - /// - /// Paas application delta health policy - /// - public partial class PaasApplicationDeltaHealthPolicy - { - /// - /// Initializes a new instance of the PaasApplicationDeltaHealthPolicy - /// class. - /// - public PaasApplicationDeltaHealthPolicy() { } - - /// - /// Initializes a new instance of the PaasApplicationDeltaHealthPolicy - /// class. - /// - public PaasApplicationDeltaHealthPolicy(PaasServiceTypeDeltaHealthPolicy defaultServiceTypeDeltaHealthPolicy = default(PaasServiceTypeDeltaHealthPolicy), IDictionary serivceTypeDeltaHealthPolicies = default(IDictionary)) - { - DefaultServiceTypeDeltaHealthPolicy = defaultServiceTypeDeltaHealthPolicy; - SerivceTypeDeltaHealthPolicies = serivceTypeDeltaHealthPolicies; - } - - /// - /// - [JsonProperty(PropertyName = "defaultServiceTypeDeltaHealthPolicy")] - public PaasServiceTypeDeltaHealthPolicy DefaultServiceTypeDeltaHealthPolicy { get; set; } - - /// - /// - [JsonProperty(PropertyName = "serivceTypeDeltaHealthPolicies")] - public IDictionary SerivceTypeDeltaHealthPolicies { get; set; } - - } -} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasApplicationHealthPolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasApplicationHealthPolicy.cs deleted file mode 100644 index 677feecf47ce..000000000000 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasApplicationHealthPolicy.cs +++ /dev/null @@ -1,46 +0,0 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.ServiceFabric.Models -{ - using System; - using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - - /// - /// Paas application health policy - /// - public partial class PaasApplicationHealthPolicy - { - /// - /// Initializes a new instance of the PaasApplicationHealthPolicy - /// class. - /// - public PaasApplicationHealthPolicy() { } - - /// - /// Initializes a new instance of the PaasApplicationHealthPolicy - /// class. - /// - public PaasApplicationHealthPolicy(PaasServiceTypeHealthPolicy defaultServiceTypeHealthPolicy = default(PaasServiceTypeHealthPolicy), IDictionary serivceTypeHealthPolicies = default(IDictionary)) - { - DefaultServiceTypeHealthPolicy = defaultServiceTypeHealthPolicy; - SerivceTypeHealthPolicies = serivceTypeHealthPolicies; - } - - /// - /// - [JsonProperty(PropertyName = "defaultServiceTypeHealthPolicy")] - public PaasServiceTypeHealthPolicy DefaultServiceTypeHealthPolicy { get; set; } - - /// - /// - [JsonProperty(PropertyName = "serivceTypeHealthPolicies")] - public IDictionary SerivceTypeHealthPolicies { get; set; } - - } -} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasClusterUpgradeDeltaHealthPolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasClusterUpgradeDeltaHealthPolicy.cs deleted file mode 100644 index 43ac355e5471..000000000000 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasClusterUpgradeDeltaHealthPolicy.cs +++ /dev/null @@ -1,58 +0,0 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.ServiceFabric.Models -{ - using System; - using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - - /// - /// Paas cluster upgrade delta health policy - /// - public partial class PaasClusterUpgradeDeltaHealthPolicy - { - /// - /// Initializes a new instance of the - /// PaasClusterUpgradeDeltaHealthPolicy class. - /// - public PaasClusterUpgradeDeltaHealthPolicy() { } - - /// - /// Initializes a new instance of the - /// PaasClusterUpgradeDeltaHealthPolicy class. - /// - public PaasClusterUpgradeDeltaHealthPolicy(int? maxPercentDeltaUnhealthyNodes = default(int?), int? maxPercentUpgradeDomainDeltaUnhealthyNodes = default(int?), int? maxPercentDeltaUnhealthyApplications = default(int?), IDictionary applicationHealthPolicies = default(IDictionary)) - { - MaxPercentDeltaUnhealthyNodes = maxPercentDeltaUnhealthyNodes; - MaxPercentUpgradeDomainDeltaUnhealthyNodes = maxPercentUpgradeDomainDeltaUnhealthyNodes; - MaxPercentDeltaUnhealthyApplications = maxPercentDeltaUnhealthyApplications; - ApplicationHealthPolicies = applicationHealthPolicies; - } - - /// - /// - [JsonProperty(PropertyName = "maxPercentDeltaUnhealthyNodes")] - public int? MaxPercentDeltaUnhealthyNodes { get; set; } - - /// - /// - [JsonProperty(PropertyName = "maxPercentUpgradeDomainDeltaUnhealthyNodes")] - public int? MaxPercentUpgradeDomainDeltaUnhealthyNodes { get; set; } - - /// - /// - [JsonProperty(PropertyName = "maxPercentDeltaUnhealthyApplications")] - public int? MaxPercentDeltaUnhealthyApplications { get; set; } - - /// - /// - [JsonProperty(PropertyName = "applicationHealthPolicies")] - public IDictionary ApplicationHealthPolicies { get; set; } - - } -} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasClusterUpgradeHealthPolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasClusterUpgradeHealthPolicy.cs deleted file mode 100644 index ae9227a1038e..000000000000 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasClusterUpgradeHealthPolicy.cs +++ /dev/null @@ -1,52 +0,0 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.ServiceFabric.Models -{ - using System; - using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - - /// - /// Paas cluster upgrade health policy - /// - public partial class PaasClusterUpgradeHealthPolicy - { - /// - /// Initializes a new instance of the PaasClusterUpgradeHealthPolicy - /// class. - /// - public PaasClusterUpgradeHealthPolicy() { } - - /// - /// Initializes a new instance of the PaasClusterUpgradeHealthPolicy - /// class. - /// - public PaasClusterUpgradeHealthPolicy(int? maxPercentUnhealthyNodes = default(int?), int? maxPercentUnhealthyApplications = default(int?), IDictionary applicationHealthPolicies = default(IDictionary)) - { - MaxPercentUnhealthyNodes = maxPercentUnhealthyNodes; - MaxPercentUnhealthyApplications = maxPercentUnhealthyApplications; - ApplicationHealthPolicies = applicationHealthPolicies; - } - - /// - /// - [JsonProperty(PropertyName = "maxPercentUnhealthyNodes")] - public int? MaxPercentUnhealthyNodes { get; set; } - - /// - /// - [JsonProperty(PropertyName = "maxPercentUnhealthyApplications")] - public int? MaxPercentUnhealthyApplications { get; set; } - - /// - /// - [JsonProperty(PropertyName = "applicationHealthPolicies")] - public IDictionary ApplicationHealthPolicies { get; set; } - - } -} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasClusterUpgradePolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasClusterUpgradePolicy.cs deleted file mode 100644 index 2a97331760e5..000000000000 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasClusterUpgradePolicy.cs +++ /dev/null @@ -1,92 +0,0 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.ServiceFabric.Models -{ - using System; - using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - - /// - /// Paas cluster upgrade policy - /// - public partial class PaasClusterUpgradePolicy - { - /// - /// Initializes a new instance of the PaasClusterUpgradePolicy class. - /// - public PaasClusterUpgradePolicy() { } - - /// - /// Initializes a new instance of the PaasClusterUpgradePolicy class. - /// - public PaasClusterUpgradePolicy(bool? overrideUserUpgradePolicy = default(bool?), bool? forceRestart = default(bool?), string upgradeReplicaSetCheckTimeout = default(string), string healthCheckWaitDuration = default(string), string healthCheckStableDuration = default(string), string healthCheckRetryTimeout = default(string), string upgradeTimeout = default(string), string upgradeDomainTimeout = default(string), PaasClusterUpgradeHealthPolicy healthPolicy = default(PaasClusterUpgradeHealthPolicy), PaasClusterUpgradeDeltaHealthPolicy deltaHealthPolicy = default(PaasClusterUpgradeDeltaHealthPolicy)) - { - OverrideUserUpgradePolicy = overrideUserUpgradePolicy; - ForceRestart = forceRestart; - UpgradeReplicaSetCheckTimeout = upgradeReplicaSetCheckTimeout; - HealthCheckWaitDuration = healthCheckWaitDuration; - HealthCheckStableDuration = healthCheckStableDuration; - HealthCheckRetryTimeout = healthCheckRetryTimeout; - UpgradeTimeout = upgradeTimeout; - UpgradeDomainTimeout = upgradeDomainTimeout; - HealthPolicy = healthPolicy; - DeltaHealthPolicy = deltaHealthPolicy; - } - - /// - /// - [JsonProperty(PropertyName = "overrideUserUpgradePolicy")] - public bool? OverrideUserUpgradePolicy { get; set; } - - /// - /// - [JsonProperty(PropertyName = "forceRestart")] - public bool? ForceRestart { get; set; } - - /// - /// - [JsonProperty(PropertyName = "upgradeReplicaSetCheckTimeout")] - public string UpgradeReplicaSetCheckTimeout { get; set; } - - /// - /// - [JsonProperty(PropertyName = "healthCheckWaitDuration")] - public string HealthCheckWaitDuration { get; set; } - - /// - /// - [JsonProperty(PropertyName = "healthCheckStableDuration")] - public string HealthCheckStableDuration { get; set; } - - /// - /// - [JsonProperty(PropertyName = "healthCheckRetryTimeout")] - public string HealthCheckRetryTimeout { get; set; } - - /// - /// - [JsonProperty(PropertyName = "upgradeTimeout")] - public string UpgradeTimeout { get; set; } - - /// - /// - [JsonProperty(PropertyName = "upgradeDomainTimeout")] - public string UpgradeDomainTimeout { get; set; } - - /// - /// - [JsonProperty(PropertyName = "healthPolicy")] - public PaasClusterUpgradeHealthPolicy HealthPolicy { get; set; } - - /// - /// - [JsonProperty(PropertyName = "deltaHealthPolicy")] - public PaasClusterUpgradeDeltaHealthPolicy DeltaHealthPolicy { get; set; } - - } -} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasServiceTypeDeltaHealthPolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasServiceTypeDeltaHealthPolicy.cs deleted file mode 100644 index 4e7e08d13cd1..000000000000 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasServiceTypeDeltaHealthPolicy.cs +++ /dev/null @@ -1,40 +0,0 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.ServiceFabric.Models -{ - using System; - using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - - /// - /// Paas service type delta health policy - /// - public partial class PaasServiceTypeDeltaHealthPolicy - { - /// - /// Initializes a new instance of the PaasServiceTypeDeltaHealthPolicy - /// class. - /// - public PaasServiceTypeDeltaHealthPolicy() { } - - /// - /// Initializes a new instance of the PaasServiceTypeDeltaHealthPolicy - /// class. - /// - public PaasServiceTypeDeltaHealthPolicy(int? maxPercentDeltaUnhealthyServices = default(int?)) - { - MaxPercentDeltaUnhealthyServices = maxPercentDeltaUnhealthyServices; - } - - /// - /// - [JsonProperty(PropertyName = "maxPercentDeltaUnhealthyServices")] - public int? MaxPercentDeltaUnhealthyServices { get; set; } - - } -} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasServiceTypeHealthPolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasServiceTypeHealthPolicy.cs deleted file mode 100644 index 0537a986ec07..000000000000 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/PaasServiceTypeHealthPolicy.cs +++ /dev/null @@ -1,40 +0,0 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.ServiceFabric.Models -{ - using System; - using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - - /// - /// Paas service type health policy - /// - public partial class PaasServiceTypeHealthPolicy - { - /// - /// Initializes a new instance of the PaasServiceTypeHealthPolicy - /// class. - /// - public PaasServiceTypeHealthPolicy() { } - - /// - /// Initializes a new instance of the PaasServiceTypeHealthPolicy - /// class. - /// - public PaasServiceTypeHealthPolicy(int? maxPercentUnhealthyServices = default(int?)) - { - MaxPercentUnhealthyServices = maxPercentUnhealthyServices; - } - - /// - /// - [JsonProperty(PropertyName = "maxPercentUnhealthyServices")] - public int? MaxPercentUnhealthyServices { get; set; } - - } -} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Page.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Page.cs new file mode 100644 index 000000000000..d8210a5914c9 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Page.cs @@ -0,0 +1,50 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + 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 Page : IPage + { + /// + /// Gets the link to the next page. + /// + [JsonProperty("nextLink")] + 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/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ProvisioningState.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ProvisioningState.cs new file mode 100644 index 000000000000..5a132bc8ed3d --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ProvisioningState.cs @@ -0,0 +1,22 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + + /// + /// Defines values for ProvisioningState. + /// + public static class ProvisioningState + { + public const string Default = "Default"; + public const string Updating = "Updating"; + public const string Succeeded = "Succeeded"; + public const string Failed = "Failed"; + public const string Canceled = "Canceled"; + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Resource.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Resource.cs index fcfd867eda08..f26dca5fe074 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Resource.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Resource.cs @@ -1,20 +1,23 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ServiceFabric.Models { - using System; - using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; 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 resource model definition. /// - public partial class Resource + public partial class Resource : IResource { /// /// Initializes a new instance of the Resource class. @@ -24,6 +27,11 @@ public Resource() { } /// /// Initializes a new instance of the Resource class. /// + /// Resource location. + /// Resource ID. + /// Resource name. + /// Resource type. + /// Resource tags. public Resource(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary)) { Id = id; @@ -34,38 +42,41 @@ public Resource() { } } /// - /// Resource ID. + /// Gets resource ID. /// [JsonProperty(PropertyName = "id")] public string Id { get; private set; } /// - /// Resource name. + /// Gets resource name. /// [JsonProperty(PropertyName = "name")] public string Name { get; private set; } /// - /// Resource type. + /// Gets resource type. /// [JsonProperty(PropertyName = "type")] public string Type { get; private set; } /// - /// Resource location. + /// Gets or sets resource location. /// [JsonProperty(PropertyName = "location")] public string Location { get; set; } /// - /// Resource tags. + /// Gets or sets resource tags. /// [JsonProperty(PropertyName = "tags")] public IDictionary Tags { get; set; } /// - /// Validate the object. Throws ValidationException if validation fails. + /// Validate the object. /// + /// + /// Thrown if validation fails + /// public virtual void Validate() { if (Location == null) diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ServiceTypeDeltaHealthPolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ServiceTypeDeltaHealthPolicy.cs new file mode 100644 index 000000000000..7313bdf4bdd3 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ServiceTypeDeltaHealthPolicy.cs @@ -0,0 +1,42 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Service health policy + /// + public partial class ServiceTypeDeltaHealthPolicy + { + /// + /// Initializes a new instance of the ServiceTypeDeltaHealthPolicy + /// class. + /// + public ServiceTypeDeltaHealthPolicy() { } + + /// + /// Initializes a new instance of the ServiceTypeDeltaHealthPolicy + /// class. + /// + /// Max percent of + /// additional unhealthy services + public ServiceTypeDeltaHealthPolicy(int? maxPercentDeltaUnhealthyServices = default(int?)) + { + MaxPercentDeltaUnhealthyServices = maxPercentDeltaUnhealthyServices; + } + + /// + /// Gets or sets max percent of additional unhealthy services + /// + [JsonProperty(PropertyName = "maxPercentDeltaUnhealthyServices")] + public int? MaxPercentDeltaUnhealthyServices { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ServiceTypeHealthPolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ServiceTypeHealthPolicy.cs new file mode 100644 index 000000000000..410e2563f44d --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ServiceTypeHealthPolicy.cs @@ -0,0 +1,40 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Cluster health policy + /// + public partial class ServiceTypeHealthPolicy + { + /// + /// Initializes a new instance of the ServiceTypeHealthPolicy class. + /// + public ServiceTypeHealthPolicy() { } + + /// + /// Initializes a new instance of the ServiceTypeHealthPolicy class. + /// + /// Max percent of unhealthy + /// services + public ServiceTypeHealthPolicy(int? maxPercentUnhealthyServices = default(int?)) + { + MaxPercentUnhealthyServices = maxPercentUnhealthyServices; + } + + /// + /// Gets or sets max percent of unhealthy services + /// + [JsonProperty(PropertyName = "maxPercentUnhealthyServices")] + public int? MaxPercentUnhealthyServices { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsParameterDescription.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsParameterDescription.cs index d0884ce36a99..6d9a27e4a6c7 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsParameterDescription.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsParameterDescription.cs @@ -1,18 +1,17 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ServiceFabric.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; + using System.Linq; /// - /// Settings parameter description + /// ServiceFabric settings under sections /// public partial class SettingsParameterDescription { @@ -26,6 +25,8 @@ public SettingsParameterDescription() { } /// Initializes a new instance of the SettingsParameterDescription /// class. /// + /// The name of settings property + /// The value of the property public SettingsParameterDescription(string name = default(string), string value = default(string)) { Name = name; @@ -33,13 +34,13 @@ public SettingsParameterDescription() { } } /// - /// The name of settings parameter description + /// Gets or sets the name of settings property /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// - /// The value of the property + /// Gets or sets the value of the property /// [JsonProperty(PropertyName = "value")] public string Value { get; set; } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsSectionDescription.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsSectionDescription.cs index fcea8d49bdc2..8600c0f875bf 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsSectionDescription.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsSectionDescription.cs @@ -1,18 +1,19 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ServiceFabric.Models { - using System; - using System.Linq; - using System.Collections.Generic; + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; + using System.Collections; + using System.Collections.Generic; + using System.Linq; /// - /// Settings section description + /// ServiceFabric section settings /// public partial class SettingsSectionDescription { @@ -24,6 +25,8 @@ public SettingsSectionDescription() { } /// /// Initializes a new instance of the SettingsSectionDescription class. /// + /// The name of settings section + /// Settings parameter value public SettingsSectionDescription(string name = default(string), IList parameters = default(IList)) { Name = name; @@ -31,12 +34,13 @@ public SettingsSectionDescription() { } } /// - /// The name of settings section description + /// Gets or sets the name of settings section /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// + /// Gets or sets settings parameter value /// [JsonProperty(PropertyName = "parameters")] public IList Parameters { get; set; } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Operations.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Operations.cs new file mode 100644 index 000000000000..1fb59ec1d6c6 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Operations.cs @@ -0,0 +1,386 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Operations operations. + /// + internal partial class Operations : IServiceOperations, IOperations + { + /// + /// Initializes a new instance of the Operations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal Operations(ServiceFabricClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the ServiceFabricClient + /// + public ServiceFabricClient Client { get; private set; } + + /// + /// Lists all of the available ServiceFabric REST API operations. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.ServiceFabric/operations").ToString(); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorModelException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorModel _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; + } + + /// + /// Lists all of the available ServiceFabric REST API operations. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorModelException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorModel _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/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/OperationsExtensions.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/OperationsExtensions.cs new file mode 100644 index 000000000000..fba1e46edc03 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/OperationsExtensions.cs @@ -0,0 +1,83 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for Operations. + /// + public static partial class OperationsExtensions + { + /// + /// Lists all of the available ServiceFabric REST API operations. + /// + /// + /// The operations group for this extension method. + /// + public static IPage List(this IOperations operations) + { + return operations.ListAsync().GetAwaiter().GetResult(); + } + + /// + /// Lists all of the available ServiceFabric REST API operations. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this IOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Lists all of the available ServiceFabric REST API operations. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this IOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists all of the available ServiceFabric REST API operations. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListNextAsync(this IOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ServiceFabricClient.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ServiceFabricClient.cs index 632a17ef7fdc..1fedff44fcb1 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ServiceFabricClient.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ServiceFabricClient.cs @@ -1,31 +1,28 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 0.16.0.0 +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Changes may cause incorrect behavior and will be lost if the code is // regenerated. namespace Microsoft.Azure.Management.ServiceFabric { - using System; - using System.Linq; - using System.Collections.Generic; - using System.Diagnostics; - using System.Net; - using System.Net.Http; - using System.Net.Http.Headers; - using System.Text; - using System.Text.RegularExpressions; - using System.Threading; - using System.Threading.Tasks; + using Microsoft.Azure; + using Microsoft.Azure.Management; using Microsoft.Rest; + using Microsoft.Rest.Azure; using Microsoft.Rest.Serialization; - using Newtonsoft.Json; using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; - public partial class ServiceFabricClient : ServiceClient, IServiceFabricClient + public partial class ServiceFabricClient : ServiceClient, IServiceFabricClient, IAzureClient { /// /// The base URI of the service. /// - public Uri BaseUri { get; set; } + public System.Uri BaseUri { get; set; } /// /// Gets or sets json serialization settings. @@ -35,27 +32,49 @@ public partial class ServiceFabricClient : ServiceClient, I /// /// Gets or sets json deserialization settings. /// - public JsonSerializerSettings DeserializationSettings { get; private set; } + public JsonSerializerSettings DeserializationSettings { get; private set; } + + /// + /// Credentials needed for the client to connect to Azure. + /// + public ServiceClientCredentials Credentials { get; private set; } /// - /// The subscription identifier + /// The customer subscription identifier /// public string SubscriptionId { get; set; } /// - /// The version of the api + /// The version of the ServiceFabric resouce provider api /// - public string ApiVersion { get; set; } + public string ApiVersion { get; private set; } /// - /// Subscription credentials which uniquely identify client subscription. + /// Gets or sets the preferred language for the response. /// - public ServiceClientCredentials Credentials { get; private set; } + public string AcceptLanguage { get; set; } /// - /// Gets the IClusters. + /// Gets or sets the retry timeout in seconds for Long Running Operations. + /// Default value is 30. /// - public virtual IClusters Clusters { get; private set; } + 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. + /// + public bool? GenerateClientRequestId { get; set; } + + /// + /// Gets the IClustersOperations. + /// + public virtual IClustersOperations Clusters { get; private set; } + + /// + /// Gets the IOperations. + /// + public virtual IOperations Operations { get; private set; } /// /// Initializes a new instance of the ServiceFabricClient class. @@ -65,7 +84,7 @@ public partial class ServiceFabricClient : ServiceClient, I /// protected ServiceFabricClient(params DelegatingHandler[] handlers) : base(handlers) { - this.Initialize(); + Initialize(); } /// @@ -79,7 +98,7 @@ protected ServiceFabricClient(params DelegatingHandler[] handlers) : base(handle /// protected ServiceFabricClient(HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : base(rootHandler, handlers) { - this.Initialize(); + Initialize(); } /// @@ -91,13 +110,16 @@ protected ServiceFabricClient(HttpClientHandler rootHandler, params DelegatingHa /// /// Optional. The delegating handlers to add to the http client pipeline. /// - protected ServiceFabricClient(Uri baseUri, params DelegatingHandler[] handlers) : this(handlers) + /// + /// Thrown when a required parameter is null + /// + protected ServiceFabricClient(System.Uri baseUri, params DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { - throw new ArgumentNullException("baseUri"); + throw new System.ArgumentNullException("baseUri"); } - this.BaseUri = baseUri; + BaseUri = baseUri; } /// @@ -112,34 +134,40 @@ protected ServiceFabricClient(Uri baseUri, params DelegatingHandler[] handlers) /// /// Optional. The delegating handlers to add to the http client pipeline. /// - protected ServiceFabricClient(Uri baseUri, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) + /// + /// Thrown when a required parameter is null + /// + protected ServiceFabricClient(System.Uri baseUri, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { - throw new ArgumentNullException("baseUri"); + throw new System.ArgumentNullException("baseUri"); } - this.BaseUri = baseUri; + BaseUri = baseUri; } /// /// Initializes a new instance of the ServiceFabricClient class. /// /// - /// Required. Subscription credentials which uniquely identify client subscription. + /// Required. Credentials needed for the client to connect to Azure. /// /// /// Optional. The delegating handlers to add to the http client pipeline. /// + /// + /// Thrown when a required parameter is null + /// public ServiceFabricClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (credentials == null) { - throw new ArgumentNullException("credentials"); + throw new System.ArgumentNullException("credentials"); } - this.Credentials = credentials; - if (this.Credentials != null) + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -147,7 +175,7 @@ public ServiceFabricClient(ServiceClientCredentials credentials, params Delegati /// Initializes a new instance of the ServiceFabricClient class. /// /// - /// Required. Subscription credentials which uniquely identify client subscription. + /// Required. Credentials needed for the client to connect to Azure. /// /// /// Optional. The http client handler used to handle http transport. @@ -155,16 +183,19 @@ public ServiceFabricClient(ServiceClientCredentials credentials, params Delegati /// /// Optional. The delegating handlers to add to the http client pipeline. /// + /// + /// Thrown when a required parameter is null + /// public ServiceFabricClient(ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (credentials == null) { - throw new ArgumentNullException("credentials"); + throw new System.ArgumentNullException("credentials"); } - this.Credentials = credentials; - if (this.Credentials != null) + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -175,26 +206,29 @@ public ServiceFabricClient(ServiceClientCredentials credentials, HttpClientHandl /// Optional. The base URI of the service. /// /// - /// Required. Subscription credentials which uniquely identify client subscription. + /// Required. Credentials needed for the client to connect to Azure. /// /// /// Optional. The delegating handlers to add to the http client pipeline. /// - public ServiceFabricClient(Uri baseUri, ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + /// + /// Thrown when a required parameter is null + /// + public ServiceFabricClient(System.Uri baseUri, ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { - throw new ArgumentNullException("baseUri"); + throw new System.ArgumentNullException("baseUri"); } if (credentials == null) { - throw new ArgumentNullException("credentials"); + throw new System.ArgumentNullException("credentials"); } - this.BaseUri = baseUri; - this.Credentials = credentials; - if (this.Credentials != null) + BaseUri = baseUri; + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } @@ -205,7 +239,7 @@ public ServiceFabricClient(Uri baseUri, ServiceClientCredentials credentials, pa /// Optional. The base URI of the service. /// /// - /// Required. Subscription credentials which uniquely identify client subscription. + /// Required. Credentials needed for the client to connect to Azure. /// /// /// Optional. The http client handler used to handle http transport. @@ -213,43 +247,51 @@ public ServiceFabricClient(Uri baseUri, ServiceClientCredentials credentials, pa /// /// Optional. The delegating handlers to add to the http client pipeline. /// - public ServiceFabricClient(Uri baseUri, ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) + /// + /// Thrown when a required parameter is null + /// + public ServiceFabricClient(System.Uri baseUri, ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { - throw new ArgumentNullException("baseUri"); + throw new System.ArgumentNullException("baseUri"); } if (credentials == null) { - throw new ArgumentNullException("credentials"); + throw new System.ArgumentNullException("credentials"); } - this.BaseUri = baseUri; - this.Credentials = credentials; - if (this.Credentials != null) + BaseUri = baseUri; + Credentials = credentials; + if (Credentials != null) { - this.Credentials.InitializeServiceClient(this); + Credentials.InitializeServiceClient(this); } } /// /// An optional partial-method to perform custom initialization. - /// + /// partial void CustomInitialize(); /// /// Initializes client properties. /// private void Initialize() { - this.ApiVersion = "2016-09-01"; - this.Clusters = new Clusters(this); - this.BaseUri = new Uri("https://management.azure.com"); + Clusters = new ClustersOperations(this); + Operations = new Operations(this); + BaseUri = new System.Uri("https://management.azure.com"); + ApiVersion = "2016-09-01"; + AcceptLanguage = "en-US"; + LongRunningOperationRetryTimeout = 30; + GenerateClientRequestId = true; SerializationSettings = new JsonSerializerSettings { - Formatting = Formatting.Indented, - DateFormatHandling = DateFormatHandling.IsoDateFormat, - DateTimeZoneHandling = DateTimeZoneHandling.Utc, - NullValueHandling = NullValueHandling.Ignore, - ReferenceLoopHandling = ReferenceLoopHandling.Serialize, + Formatting = Newtonsoft.Json.Formatting.Indented, + DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, + NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, + ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, + ContractResolver = new ReadOnlyJsonContractResolver(), Converters = new List { new Iso8601TimeSpanConverter() @@ -258,10 +300,11 @@ private void Initialize() SerializationSettings.Converters.Add(new TransformationJsonConverter()); DeserializationSettings = new JsonSerializerSettings { - DateFormatHandling = DateFormatHandling.IsoDateFormat, - DateTimeZoneHandling = DateTimeZoneHandling.Utc, - NullValueHandling = NullValueHandling.Ignore, - ReferenceLoopHandling = ReferenceLoopHandling.Serialize, + DateFormatHandling = Newtonsoft.Json.DateFormatHandling.IsoDateFormat, + DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Utc, + NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore, + ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Serialize, + ContractResolver = new ReadOnlyJsonContractResolver(), Converters = new List { new Iso8601TimeSpanConverter() @@ -269,6 +312,7 @@ private void Initialize() }; CustomInitialize(); DeserializationSettings.Converters.Add(new TransformationJsonConverter()); - } + DeserializationSettings.Converters.Add(new CloudErrorJsonConverter()); + } } } diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestCreateClusterResource/TestCreate.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestCreateClusterResource/TestCreate.json index 506395209087..ddd597980bf5 100644 --- a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestCreateClusterResource/TestCreate.json +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestCreateClusterResource/TestCreate.json @@ -1,17 +1,88 @@ { "Entries": [ { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3RDcmVhdGVyZzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL3Rlc3RDcmVhdGVDbHVzdGVyMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL1Rlc3RSRzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL3Rlc3RDcmVhdGVDbHVzdGVyMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ec505baf-ec7d-41c0-9786-40af31fc2ada" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636256223355177783\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"a6b6316e-24c6-4a20-bffc-7cc5065e92bc\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/a6b6316e-24c6-4a20-bffc-7cc5065e92bc\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 20 Mar 2017 16:40:46 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14833" + ], + "x-ms-request-id": [ + "0cf22315-ee81-4b8a-81b8-f57c61ede51f" + ], + "x-ms-correlation-request-id": [ + "0cf22315-ee81-4b8a-81b8-f57c61ede51f" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170320T164047Z:0cf22315-ee81-4b8a-81b8-f57c61ede51f" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL1Rlc3RSRzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL3Rlc3RDcmVhdGVDbHVzdGVyMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "67ce34ad-651e-4631-9a31-51757e18f54a" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testCreaterg1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636244595927345289\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"ed4fa900-6c59-430b-b807-2e440ac20456\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/ed4fa900-6c59-430b-b807-2e440ac20456\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636256248609783505\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"78eb0991-7917-48ec-af39-50680e6aa3bb\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/78eb0991-7917-48ec-af39-50680e6aa3bb\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -23,7 +94,7 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 14:51:47 GMT" + "Mon, 20 Mar 2017 16:41:02 GMT" ], "Pragma": [ "no-cache" @@ -45,32 +116,38 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14998" ], "x-ms-request-id": [ - "9a29b8ac-50e3-490c-a972-2917bb8f2831" + "569f5255-8279-4420-980c-2af1e2609673" ], "x-ms-correlation-request-id": [ - "9a29b8ac-50e3-490c-a972-2917bb8f2831" + "569f5255-8279-4420-980c-2af1e2609673" ], "x-ms-routing-request-id": [ - "WESTUS2:20170308T145147Z:9a29b8ac-50e3-490c-a972-2917bb8f2831" + "WESTUS2:20170320T164102Z:569f5255-8279-4420-980c-2af1e2609673" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3RDcmVhdGVyZzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL3Rlc3RDcmVhdGVDbHVzdGVyMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL1Rlc3RSRzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL3Rlc3RDcmVhdGVDbHVzdGVyMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6d50ae33-7cd2-4827-929c-00a3bab28b38" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testCreaterg1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636245815210570948\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"58f8e36b-d85b-4d8e-8d52-34e27dd1d0e5\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/58f8e36b-d85b-4d8e-8d52-34e27dd1d0e5\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636256248609783505\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"78eb0991-7917-48ec-af39-50680e6aa3bb\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/78eb0991-7917-48ec-af39-50680e6aa3bb\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -82,7 +159,7 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 14:52:00 GMT" + "Mon, 20 Mar 2017 16:41:02 GMT" ], "Pragma": [ "no-cache" @@ -104,26 +181,32 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14997" ], "x-ms-request-id": [ - "31e72799-b9c3-40c7-b4e6-f2bd1683daed" + "33838c34-336b-4338-a1cc-afba6d73a3a3" ], "x-ms-correlation-request-id": [ - "31e72799-b9c3-40c7-b4e6-f2bd1683daed" + "33838c34-336b-4338-a1cc-afba6d73a3a3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170308T145200Z:31e72799-b9c3-40c7-b4e6-f2bd1683daed" + "WESTUS2:20170320T164102Z:33838c34-336b-4338-a1cc-afba6d73a3a3" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3RDcmVhdGVyZzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL3Rlc3RDcmVhdGVDbHVzdGVyMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL1Rlc3RSRzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL3Rlc3RDcmVhdGVDbHVzdGVyMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d9d6066b-92b1-4e0c-94d3-a6e108f5b6bd" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" @@ -141,7 +224,7 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 14:51:48 GMT" + "Mon, 20 Mar 2017 16:40:47 GMT" ], "Pragma": [ "no-cache" @@ -159,20 +242,20 @@ "1199" ], "x-ms-request-id": [ - "6fa67443-be66-4065-93b0-d06b586b1e8c" + "57a2bcc3-ac61-4f43-a450-523b33622d61" ], "x-ms-correlation-request-id": [ - "6fa67443-be66-4065-93b0-d06b586b1e8c" + "57a2bcc3-ac61-4f43-a450-523b33622d61" ], "x-ms-routing-request-id": [ - "WESTUS2:20170308T145148Z:6fa67443-be66-4065-93b0-d06b586b1e8c" + "WESTUS2:20170320T164048Z:57a2bcc3-ac61-4f43-a450-523b33622d61" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testCreaterg1?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzL3Rlc3RDcmVhdGVyZzE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/TestRG1?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzL1Rlc3RSRzE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { @@ -183,7 +266,7 @@ "38" ], "x-ms-client-request-id": [ - "c9321769-a8ef-47be-a966-7682c5f06a0c" + "e2632587-3a77-4c57-b483-9f4fa1d30bf5" ], "accept-language": [ "en-US" @@ -193,7 +276,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1\",\r\n \"name\": \"testCreaterg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1\",\r\n \"name\": \"TestRG1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -205,7 +288,7 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 14:51:59 GMT" + "Mon, 20 Mar 2017 16:41:00 GMT" ], "Pragma": [ "no-cache" @@ -217,16 +300,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "145ec377-4b75-4afb-9c2d-aa76d34a40e0" + "c662c921-097b-458e-8e8a-e9d0bb3f6940" ], "x-ms-correlation-request-id": [ - "145ec377-4b75-4afb-9c2d-aa76d34a40e0" + "c662c921-097b-458e-8e8a-e9d0bb3f6940" ], "x-ms-routing-request-id": [ - "WESTUS2:20170308T145159Z:145ec377-4b75-4afb-9c2d-aa76d34a40e0" + "WESTUS2:20170320T164100Z:c662c921-097b-458e-8e8a-e9d0bb3f6940" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -235,23 +318,29 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3RDcmVhdGVyZzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL3Rlc3RDcmVhdGVDbHVzdGVyMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL1Rlc3RSRzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL3Rlc3RDcmVhdGVDbHVzdGVyMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"clusterId\": \"ed8c1325-a839-4916-95dd-b05fd3bd5046\",\r\n \"clusterState\": \"Ready\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8d566293-3508-4d62-ba7b-056fa710c3c9\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"durabilityLevel\": \"Bronze\",\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"vmImage\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testCreaterg1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"durabilityLevel\": \"Bronze\",\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5\r\n }\r\n ],\r\n \"vmImage\": \"Windows\"\r\n },\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1200" + "700" + ], + "x-ms-client-request-id": [ + "c661b3a5-fc9c-4f29-aaaa-7697709f80af" + ], + "accept-language": [ + "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testCreaterg1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636245815210570948\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"58f8e36b-d85b-4d8e-8d52-34e27dd1d0e5\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/58f8e36b-d85b-4d8e-8d52-34e27dd1d0e5\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636256248609783505\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"78eb0991-7917-48ec-af39-50680e6aa3bb\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/78eb0991-7917-48ec-af39-50680e6aa3bb\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -263,7 +352,7 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 14:52:00 GMT" + "Mon, 20 Mar 2017 16:41:02 GMT" ], "Pragma": [ "no-cache" @@ -287,13 +376,13 @@ "1198" ], "x-ms-request-id": [ - "dd9833f4-0fa4-411e-bc00-20b88667ec07" + "4ca2cb85-2293-46a6-acdc-ff7a5db7c356" ], "x-ms-correlation-request-id": [ - "dd9833f4-0fa4-411e-bc00-20b88667ec07" + "4ca2cb85-2293-46a6-acdc-ff7a5db7c356" ], "x-ms-routing-request-id": [ - "WESTUS2:20170308T145200Z:dd9833f4-0fa4-411e-bc00-20b88667ec07" + "WESTUS2:20170320T164102Z:4ca2cb85-2293-46a6-acdc-ff7a5db7c356" ] }, "StatusCode": 200 diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestDeleteClusterResource/TestDelete.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestDeleteClusterResource/TestDelete.json index 81ffbae186ea..8f8d0d0c815b 100644 --- a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestDeleteClusterResource/TestDelete.json +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestDeleteClusterResource/TestDelete.json @@ -13,7 +13,7 @@ "38" ], "x-ms-client-request-id": [ - "1d82ac25-ccf4-421a-b3d4-f0ff1cbdb426" + "f6893687-d45a-45fd-8356-628cc4fad148" ], "accept-language": [ "en-US" @@ -38,22 +38,22 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 14:51:36 GMT" + "Mon, 20 Mar 2017 15:23:17 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "586446f3-40ea-4303-8bb4-f8bdaf61dcc7" + "e78c9f20-ba5a-48ac-9fa4-b3b30425008c" ], "x-ms-correlation-request-id": [ - "586446f3-40ea-4303-8bb4-f8bdaf61dcc7" + "e78c9f20-ba5a-48ac-9fa4-b3b30425008c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170308T145136Z:586446f3-40ea-4303-8bb4-f8bdaf61dcc7" + "CENTRALUS:20170320T152318Z:e78c9f20-ba5a-48ac-9fa4-b3b30425008c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -65,20 +65,26 @@ "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster?api-version=2016-09-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3REZWxldGVyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvdGVzdERlbGV0ZUNsdXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"clusterId\": \"29540499-b0b2-4c12-86ee-50d0d8795753\",\r\n \"clusterState\": \"Ready\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8d566293-3508-4d62-ba7b-056fa710c3c9\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"durabilityLevel\": \"Bronze\",\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"vmImage\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster\",\r\n \"name\": \"testDeleteCluster\",\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"durabilityLevel\": \"Bronze\",\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5\r\n }\r\n ],\r\n \"vmImage\": \"Windows\"\r\n },\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1197" + "700" + ], + "x-ms-client-request-id": [ + "55b6147d-d180-4894-95f8-9de2fc9f0ebf" + ], + "accept-language": [ + "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster\",\r\n \"name\": \"testDeleteCluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636245814982746669\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"906c266d-9ba3-4514-ad9c-d54cbaba73db\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/906c266d-9ba3-4514-ad9c-d54cbaba73db\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster\",\r\n \"name\": \"testDeleteCluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636256201975902695\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"d92e2257-fd8b-4258-81b3-1c809969ddc2\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/d92e2257-fd8b-4258-81b3-1c809969ddc2\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -90,7 +96,7 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 14:51:37 GMT" + "Mon, 20 Mar 2017 15:23:19 GMT" ], "Pragma": [ "no-cache" @@ -114,13 +120,13 @@ "1199" ], "x-ms-request-id": [ - "bb4651ab-6481-40bc-9bb5-94fdddca83e7" + "512feada-f92b-4754-91b5-94afb169e12e" ], "x-ms-correlation-request-id": [ - "bb4651ab-6481-40bc-9bb5-94fdddca83e7" + "512feada-f92b-4754-91b5-94afb169e12e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170308T145137Z:bb4651ab-6481-40bc-9bb5-94fdddca83e7" + "CENTRALUS:20170320T152320Z:512feada-f92b-4754-91b5-94afb169e12e" ] }, "StatusCode": 200 @@ -131,12 +137,18 @@ "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b26c9371-54a0-48a9-b05e-a9a1c9309e0c" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster\",\r\n \"name\": \"testDeleteCluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636245814982746669\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"906c266d-9ba3-4514-ad9c-d54cbaba73db\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/906c266d-9ba3-4514-ad9c-d54cbaba73db\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster\",\r\n \"name\": \"testDeleteCluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636256201975902695\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"d92e2257-fd8b-4258-81b3-1c809969ddc2\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/d92e2257-fd8b-4258-81b3-1c809969ddc2\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -148,7 +160,7 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 14:51:37 GMT" + "Mon, 20 Mar 2017 15:23:19 GMT" ], "Pragma": [ "no-cache" @@ -170,16 +182,16 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14996" ], "x-ms-request-id": [ - "906dd028-cac7-4770-9563-f69ac3ed0a1f" + "d4d84718-d708-42b7-b2d3-f6dd60b7839e" ], "x-ms-correlation-request-id": [ - "906dd028-cac7-4770-9563-f69ac3ed0a1f" + "d4d84718-d708-42b7-b2d3-f6dd60b7839e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170308T145137Z:906dd028-cac7-4770-9563-f69ac3ed0a1f" + "CENTRALUS:20170320T152320Z:d4d84718-d708-42b7-b2d3-f6dd60b7839e" ] }, "StatusCode": 200 @@ -190,6 +202,12 @@ "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "02c4b2a2-8ef7-4895-b206-453cf6e7ac58" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" @@ -210,7 +228,7 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 14:51:38 GMT" + "Mon, 20 Mar 2017 15:23:20 GMT" ], "Pragma": [ "no-cache" @@ -219,13 +237,13 @@ "gateway" ], "x-ms-request-id": [ - "7d1c3902-d589-49e1-beb1-982b4cb7a374" + "2cb7de02-8cd3-4eb0-8218-4712137aa527" ], "x-ms-correlation-request-id": [ - "7d1c3902-d589-49e1-beb1-982b4cb7a374" + "2cb7de02-8cd3-4eb0-8218-4712137aa527" ], "x-ms-routing-request-id": [ - "WESTUS2:20170308T145138Z:7d1c3902-d589-49e1-beb1-982b4cb7a374" + "CENTRALUS:20170320T152321Z:2cb7de02-8cd3-4eb0-8218-4712137aa527" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -239,6 +257,12 @@ "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "68fb087d-10f4-4097-8bf4-d539dd0a6a1f" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" @@ -256,7 +280,7 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 14:51:38 GMT" + "Mon, 20 Mar 2017 15:23:20 GMT" ], "Pragma": [ "no-cache" @@ -274,13 +298,13 @@ "1198" ], "x-ms-request-id": [ - "d1b2194c-8bf4-439c-99eb-998f0c199979" + "91e19071-c0fa-4716-a003-f402ae6ffcbf" ], "x-ms-correlation-request-id": [ - "d1b2194c-8bf4-439c-99eb-998f0c199979" + "91e19071-c0fa-4716-a003-f402ae6ffcbf" ], "x-ms-routing-request-id": [ - "WESTUS2:20170308T145138Z:d1b2194c-8bf4-439c-99eb-998f0c199979" + "CENTRALUS:20170320T152321Z:91e19071-c0fa-4716-a003-f402ae6ffcbf" ] }, "StatusCode": 200 @@ -291,6 +315,12 @@ "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "fab4cfa1-a8f3-4777-9951-c2e7cd4af88f" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" @@ -305,7 +335,7 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 14:51:39 GMT" + "Mon, 20 Mar 2017 15:23:21 GMT" ], "Pragma": [ "no-cache" @@ -314,13 +344,13 @@ "1197" ], "x-ms-request-id": [ - "44e2116a-0c56-4300-93f5-d17c2ff19c12" + "20a97498-22a5-41c3-83df-0557ec78ece7" ], "x-ms-correlation-request-id": [ - "44e2116a-0c56-4300-93f5-d17c2ff19c12" + "20a97498-22a5-41c3-83df-0557ec78ece7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170308T145139Z:44e2116a-0c56-4300-93f5-d17c2ff19c12" + "CENTRALUS:20170320T152321Z:20a97498-22a5-41c3-83df-0557ec78ece7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestGetClusterResource/TestGet.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestGetClusterResource/TestGet.json index a021294392fb..ac144b8bbc19 100644 --- a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestGetClusterResource/TestGet.json +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestGetClusterResource/TestGet.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b211003-1dbc-4c8a-a009-384d556366ad" + "374ac39b-8d8b-4f48-943b-6f7d3c895fb1" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg\",\r\n \"name\": \"aaaaaaaaaaaaarg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1702250539\",\r\n \"name\": \"abhaymtest1702250539\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1702251613\",\r\n \"name\": \"abhaymtest1702251613\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703030726\",\r\n \"name\": \"abhaymtest1703030726\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703061931\",\r\n \"name\": \"abhaymtest1703061931\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703062131\",\r\n \"name\": \"abhaymtest1703062131\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703062345\",\r\n \"name\": \"abhaymtest1703062345\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703072008\",\r\n \"name\": \"abhaymtest1703072008\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703072343\",\r\n \"name\": \"abhaymtest1703072343\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayreverseproxy02\",\r\n \"name\": \"abhayreverseproxy02\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest01\",\r\n \"name\": \"abhaytest01\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest02\",\r\n \"name\": \"abhaytest02\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest04\",\r\n \"name\": \"abhaytest04\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayvm02\",\r\n \"name\": \"abhayvm02\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayvm03\",\r\n \"name\": \"abhayvm03\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/anmolprvbuild03\",\r\n \"name\": \"anmolprvbuild03\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/bztest-rg\",\r\n \"name\": \"bztest-rg\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/Default-ServiceBus-9653\",\r\n \"name\": \"Default-ServiceBus-9653\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/deployertest\",\r\n \"name\": \"deployertest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/dotnetsdkrg\",\r\n \"name\": \"dotnetsdkrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/nsgtest03\",\r\n \"name\": \"nsgtest03\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/nsgtest05\",\r\n \"name\": \"nsgtest05\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklinuxtest01\",\r\n \"name\": \"sdklinuxtest01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestrg2\",\r\n \"name\": \"sdktestrg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/SecureBaseImage\",\r\n \"name\": \"SecureBaseImage\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg\",\r\n \"name\": \"testCreaterg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1\",\r\n \"name\": \"testCreaterg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testsdkdnetrestrg\",\r\n \"name\": \"testsdkdnetrestrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-202955140-v2\",\r\n \"name\": \"wftsvc-bm-20161024-202955140-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-210350686-v2\",\r\n \"name\": \"wftsvc-bm-20161024-210350686-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-210948818-v2\",\r\n \"name\": \"wftsvc-bm-20161024-210948818-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161025-012157409-v2\",\r\n \"name\": \"wftsvc-bm-20161025-012157409-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161026-012217543-v2\",\r\n \"name\": \"wftsvc-bm-20161026-012217543-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161028-014354355-v2\",\r\n \"name\": \"wftsvc-bm-20161028-014354355-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161029-012553441-v2\",\r\n \"name\": \"wftsvc-bm-20161029-012553441-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161030-012137041-v2\",\r\n \"name\": \"wftsvc-bm-20161030-012137041-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161031-012217322-v2\",\r\n \"name\": \"wftsvc-bm-20161031-012217322-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161101-012812361-v2\",\r\n \"name\": \"wftsvc-bm-20161101-012812361-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161102-044018564-v2\",\r\n \"name\": \"wftsvc-bm-20161102-044018564-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161115-012828172-v2\",\r\n \"name\": \"wftsvc-bm-20161115-012828172-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161116-012248545-v2\",\r\n \"name\": \"wftsvc-bm-20161116-012248545-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161117-013025621-v2\",\r\n \"name\": \"wftsvc-bm-20161117-013025621-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161118-162552118-v2\",\r\n \"name\": \"wftsvc-bm-20161118-162552118-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161119-020853683-v2\",\r\n \"name\": \"wftsvc-bm-20161119-020853683-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161120-015112327-v2\",\r\n \"name\": \"wftsvc-bm-20161120-015112327-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161121-013411054-v2\",\r\n \"name\": \"wftsvc-bm-20161121-013411054-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161122-014033729-v2\",\r\n \"name\": \"wftsvc-bm-20161122-014033729-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161123-020328423-v2\",\r\n \"name\": \"wftsvc-bm-20161123-020328423-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161124-013118943-v2\",\r\n \"name\": \"wftsvc-bm-20161124-013118943-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161125-012512715-v2\",\r\n \"name\": \"wftsvc-bm-20161125-012512715-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161126-012537693-v2\",\r\n \"name\": \"wftsvc-bm-20161126-012537693-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161127-012554430-v2\",\r\n \"name\": \"wftsvc-bm-20161127-012554430-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161128-012517911-v2\",\r\n \"name\": \"wftsvc-bm-20161128-012517911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161129-012602111-v2\",\r\n \"name\": \"wftsvc-bm-20161129-012602111-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161130-022145798-v2\",\r\n \"name\": \"wftsvc-bm-20161130-022145798-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161201-014317317-v2\",\r\n \"name\": \"wftsvc-bm-20161201-014317317-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161202-012812276-v2\",\r\n \"name\": \"wftsvc-bm-20161202-012812276-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161203-012713277-v2\",\r\n \"name\": \"wftsvc-bm-20161203-012713277-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161206-025602238-v2\",\r\n \"name\": \"wftsvc-bm-20161206-025602238-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161207-012657615-v2\",\r\n \"name\": \"wftsvc-bm-20161207-012657615-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161208-024401245-v2\",\r\n \"name\": \"wftsvc-bm-20161208-024401245-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161209-012721060-v2\",\r\n \"name\": \"wftsvc-bm-20161209-012721060-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161210-012529259-v2\",\r\n \"name\": \"wftsvc-bm-20161210-012529259-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161211-012543460-v2\",\r\n \"name\": \"wftsvc-bm-20161211-012543460-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161212-012643580-v2\",\r\n \"name\": \"wftsvc-bm-20161212-012643580-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161213-135747390-v2\",\r\n \"name\": \"wftsvc-bm-20161213-135747390-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161214-020204911-v2\",\r\n \"name\": \"wftsvc-bm-20161214-020204911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161215-012912635-v2\",\r\n \"name\": \"wftsvc-bm-20161215-012912635-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161216-014118622-v2\",\r\n \"name\": \"wftsvc-bm-20161216-014118622-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161217-013027250-v2\",\r\n \"name\": \"wftsvc-bm-20161217-013027250-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161218-042923602-v2\",\r\n \"name\": \"wftsvc-bm-20161218-042923602-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161219-024910832-v2\",\r\n \"name\": \"wftsvc-bm-20161219-024910832-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161220-021526028-v2\",\r\n \"name\": \"wftsvc-bm-20161220-021526028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161221-014332493-v2\",\r\n \"name\": \"wftsvc-bm-20161221-014332493-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161222-190424958-v2\",\r\n \"name\": \"wftsvc-bm-20161222-190424958-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161223-020219887-v2\",\r\n \"name\": \"wftsvc-bm-20161223-020219887-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161224-012754028-v2\",\r\n \"name\": \"wftsvc-bm-20161224-012754028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161225-012413900-v2\",\r\n \"name\": \"wftsvc-bm-20161225-012413900-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161226-012537497-v2\",\r\n \"name\": \"wftsvc-bm-20161226-012537497-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161227-012619489-v2\",\r\n \"name\": \"wftsvc-bm-20161227-012619489-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161228-012627978-v2\",\r\n \"name\": \"wftsvc-bm-20161228-012627978-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161229-013147614-v2\",\r\n \"name\": \"wftsvc-bm-20161229-013147614-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161230-012714627-v2\",\r\n \"name\": \"wftsvc-bm-20161230-012714627-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-ma-20161202-222619667-v2\",\r\n \"name\": \"wftsvc-ma-20161202-222619667-v2\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-ma-20161216-222607320-v2\",\r\n \"name\": \"wftsvc-ma-20161216-222607320-v2\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-mwh-20161203-012707281-v2\",\r\n \"name\": \"wftsvc-mwh-20161203-012707281-v2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-sn-20161129-211521656-v2\",\r\n \"name\": \"wftsvc-sn-20161129-211521656-v2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-sn-20161129-211525592-v2\",\r\n \"name\": \"wftsvc-sn-20161129-211525592-v2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yq-20161201-012845413-v2\",\r\n \"name\": \"wftsvc-yq-20161201-012845413-v2\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161026-012057297-v2\",\r\n \"name\": \"wftsvc-yt-20161026-012057297-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161210-012552629-v2\",\r\n \"name\": \"wftsvc-yt-20161210-012552629-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161221-012942018-v2\",\r\n \"name\": \"wftsvc-yt-20161221-012942018-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault1\",\r\n \"name\": \"wftsvcKeyVault1\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault2\",\r\n \"name\": \"wftsvcKeyVault2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault3\",\r\n \"name\": \"wftsvcKeyVault3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault4\",\r\n \"name\": \"wftsvcKeyVault4\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault5\",\r\n \"name\": \"wftsvcKeyVault5\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault6\",\r\n \"name\": \"wftsvcKeyVault6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVaultAM\",\r\n \"name\": \"wftsvcKeyVaultAM\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016bnrg\",\r\n \"name\": \"zikaiwtest10122016bnrg\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016chrg\",\r\n \"name\": \"zikaiwtest10122016chrg\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016dmrg\",\r\n \"name\": \"zikaiwtest10122016dmrg\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016osrg\",\r\n \"name\": \"zikaiwtest10122016osrg\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016snrg\",\r\n \"name\": \"zikaiwtest10122016snrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016tyrg\",\r\n \"name\": \"zikaiwtest10122016tyrg\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaym-test-20170318-194608\",\r\n \"name\": \"abhaym-test-20170318-194608\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703100151\",\r\n \"name\": \"abhaymtest1703100151\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703131739\",\r\n \"name\": \"abhaymtest1703131739\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703140846\",\r\n \"name\": \"abhaymtest1703140846\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703142040\",\r\n \"name\": \"abhaymtest1703142040\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703152214\",\r\n \"name\": \"abhaymtest1703152214\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703160653\",\r\n \"name\": \"abhaymtest1703160653\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703162329\",\r\n \"name\": \"abhaymtest1703162329\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703162340\",\r\n \"name\": \"abhaymtest1703162340\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703170025\",\r\n \"name\": \"abhaymtest1703170025\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703170037\",\r\n \"name\": \"abhaymtest1703170037\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182049\",\r\n \"name\": \"abhaymtest1703182049\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182157\",\r\n \"name\": \"abhaymtest1703182157\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182207\",\r\n \"name\": \"abhaymtest1703182207\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest06\",\r\n \"name\": \"abhaytest06\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/Default-ServiceBus-9653\",\r\n \"name\": \"Default-ServiceBus-9653\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/deployertest\",\r\n \"name\": \"deployertest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykeyvaultrg1\",\r\n \"name\": \"mykeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newkeyvaultrg1\",\r\n \"name\": \"newkeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newkeyvaultrg3\",\r\n \"name\": \"newkeyvaultrg3\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same1rg\",\r\n \"name\": \"same1rg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same2rg\",\r\n \"name\": \"same2rg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same2rgg\",\r\n \"name\": \"same2rgg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklinuxtest01\",\r\n \"name\": \"sdklinuxtest01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklusterrg\",\r\n \"name\": \"sdklusterrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestkeyvaultrg\",\r\n \"name\": \"sdktestkeyvaultrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestrg2\",\r\n \"name\": \"sdktestrg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/SecureBaseImage\",\r\n \"name\": \"SecureBaseImage\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfrpkeyvaultrg1\",\r\n \"name\": \"sfrpkeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sftestkeyvaultrg\",\r\n \"name\": \"sftestkeyvaultrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sftestkkrg1\",\r\n \"name\": \"sftestkkrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1\",\r\n \"name\": \"testCreaterg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg\",\r\n \"name\": \"testDeleterg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1\",\r\n \"name\": \"TestRG1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testrg111\",\r\n \"name\": \"testrg111\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testsdkdnetrestrg\",\r\n \"name\": \"testsdkdnetrestrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/VmExtnAppInsightTest\",\r\n \"name\": \"VmExtnAppInsightTest\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161115-012828172-v2\",\r\n \"name\": \"wftsvc-bm-20161115-012828172-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161116-012248545-v2\",\r\n \"name\": \"wftsvc-bm-20161116-012248545-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161117-013025621-v2\",\r\n \"name\": \"wftsvc-bm-20161117-013025621-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161118-162552118-v2\",\r\n \"name\": \"wftsvc-bm-20161118-162552118-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161119-020853683-v2\",\r\n \"name\": \"wftsvc-bm-20161119-020853683-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161120-015112327-v2\",\r\n \"name\": \"wftsvc-bm-20161120-015112327-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161121-013411054-v2\",\r\n \"name\": \"wftsvc-bm-20161121-013411054-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161122-014033729-v2\",\r\n \"name\": \"wftsvc-bm-20161122-014033729-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161123-020328423-v2\",\r\n \"name\": \"wftsvc-bm-20161123-020328423-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161124-013118943-v2\",\r\n \"name\": \"wftsvc-bm-20161124-013118943-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161125-012512715-v2\",\r\n \"name\": \"wftsvc-bm-20161125-012512715-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161126-012537693-v2\",\r\n \"name\": \"wftsvc-bm-20161126-012537693-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161127-012554430-v2\",\r\n \"name\": \"wftsvc-bm-20161127-012554430-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161128-012517911-v2\",\r\n \"name\": \"wftsvc-bm-20161128-012517911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161129-012602111-v2\",\r\n \"name\": \"wftsvc-bm-20161129-012602111-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161130-022145798-v2\",\r\n \"name\": \"wftsvc-bm-20161130-022145798-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161201-014317317-v2\",\r\n \"name\": \"wftsvc-bm-20161201-014317317-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161202-012812276-v2\",\r\n \"name\": \"wftsvc-bm-20161202-012812276-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161203-012713277-v2\",\r\n \"name\": \"wftsvc-bm-20161203-012713277-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161206-025602238-v2\",\r\n \"name\": \"wftsvc-bm-20161206-025602238-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161207-012657615-v2\",\r\n \"name\": \"wftsvc-bm-20161207-012657615-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161208-024401245-v2\",\r\n \"name\": \"wftsvc-bm-20161208-024401245-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161209-012721060-v2\",\r\n \"name\": \"wftsvc-bm-20161209-012721060-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161210-012529259-v2\",\r\n \"name\": \"wftsvc-bm-20161210-012529259-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161211-012543460-v2\",\r\n \"name\": \"wftsvc-bm-20161211-012543460-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161212-012643580-v2\",\r\n \"name\": \"wftsvc-bm-20161212-012643580-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161213-135747390-v2\",\r\n \"name\": \"wftsvc-bm-20161213-135747390-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161214-020204911-v2\",\r\n \"name\": \"wftsvc-bm-20161214-020204911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161215-012912635-v2\",\r\n \"name\": \"wftsvc-bm-20161215-012912635-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161216-014118622-v2\",\r\n \"name\": \"wftsvc-bm-20161216-014118622-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161217-013027250-v2\",\r\n \"name\": \"wftsvc-bm-20161217-013027250-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161218-042923602-v2\",\r\n \"name\": \"wftsvc-bm-20161218-042923602-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161219-024910832-v2\",\r\n \"name\": \"wftsvc-bm-20161219-024910832-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161220-021526028-v2\",\r\n \"name\": \"wftsvc-bm-20161220-021526028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161221-014332493-v2\",\r\n \"name\": \"wftsvc-bm-20161221-014332493-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161222-190424958-v2\",\r\n \"name\": \"wftsvc-bm-20161222-190424958-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161223-020219887-v2\",\r\n \"name\": \"wftsvc-bm-20161223-020219887-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161224-012754028-v2\",\r\n \"name\": \"wftsvc-bm-20161224-012754028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161225-012413900-v2\",\r\n \"name\": \"wftsvc-bm-20161225-012413900-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161226-012537497-v2\",\r\n \"name\": \"wftsvc-bm-20161226-012537497-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161227-012619489-v2\",\r\n \"name\": \"wftsvc-bm-20161227-012619489-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161228-012627978-v2\",\r\n \"name\": \"wftsvc-bm-20161228-012627978-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161229-013147614-v2\",\r\n \"name\": \"wftsvc-bm-20161229-013147614-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161230-012714627-v2\",\r\n \"name\": \"wftsvc-bm-20161230-012714627-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-mwh-20161203-012707281-v2\",\r\n \"name\": \"wftsvc-mwh-20161203-012707281-v2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault1\",\r\n \"name\": \"wftsvcKeyVault1\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault2\",\r\n \"name\": \"wftsvcKeyVault2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault3\",\r\n \"name\": \"wftsvcKeyVault3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault4\",\r\n \"name\": \"wftsvcKeyVault4\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault5\",\r\n \"name\": \"wftsvcKeyVault5\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault6\",\r\n \"name\": \"wftsvcKeyVault6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVaultAM\",\r\n \"name\": \"wftsvcKeyVaultAM\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/xunlu-test-20170318-205509\",\r\n \"name\": \"xunlu-test-20170318-205509\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/xunlustore\",\r\n \"name\": \"xunlustore\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/xunlutest1703182056\",\r\n \"name\": \"xunlutest1703182056\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016snrg\",\r\n \"name\": \"zikaiwtest10122016snrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 14:51:21 GMT" + "Mon, 20 Mar 2017 15:23:37 GMT" ], "Pragma": [ "no-cache" @@ -38,16 +38,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14939" ], "x-ms-request-id": [ - "6d622bd2-6cd1-48e1-a6df-f1b26774eceb" + "8a0d1dbd-ecf8-4e10-a382-f88a7c4c4ea0" ], "x-ms-correlation-request-id": [ - "6d622bd2-6cd1-48e1-a6df-f1b26774eceb" + "8a0d1dbd-ecf8-4e10-a382-f88a7c4c4ea0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170308T145121Z:6d622bd2-6cd1-48e1-a6df-f1b26774eceb" + "WESTUS2:20170320T152337Z:8a0d1dbd-ecf8-4e10-a382-f88a7c4c4ea0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -56,13 +56,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg/resources?$filter=resourceType%20eq%20'Microsoft.ServiceFabric%2Fclusters'&api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FhYWFhYWFhYWFhYWFyZy9yZXNvdXJjZXM/JGZpbHRlcj1yZXNvdXJjZVR5cGUlMjBlcSUyMCdNaWNyb3NvZnQuU2VydmljZUZhYnJpYyUyRmNsdXN0ZXJzJyZhcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaym-test-20170318-194608/resources?$filter=resourceType%20eq%20'Microsoft.ServiceFabric%2Fclusters'&api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FiaGF5bS10ZXN0LTIwMTcwMzE4LTE5NDYwOC9yZXNvdXJjZXM/JGZpbHRlcj1yZXNvdXJjZVR5cGUlMjBlcSUyMCdNaWNyb3NvZnQuU2VydmljZUZhYnJpYyUyRmNsdXN0ZXJzJyZhcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d4c4b0b-8bc9-48e5-be6d-7d146aba4c11" + "aa2bea48-a666-48b0-86e5-a5d3062f0445" ], "accept-language": [ "en-US" @@ -72,7 +72,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa\",\r\n \"name\": \"aaaaaaaaaaaaa\",\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaaaaaaaaaa\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +84,7 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 14:51:22 GMT" + "Mon, 20 Mar 2017 15:23:38 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +93,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" + "14903" ], "x-ms-request-id": [ - "3618d2b5-81f9-42d6-af71-69e2249182fa" + "377a5d58-aa0e-4122-9caf-da6bab36f8c1" ], "x-ms-correlation-request-id": [ - "3618d2b5-81f9-42d6-af71-69e2249182fa" + "377a5d58-aa0e-4122-9caf-da6bab36f8c1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170308T145123Z:3618d2b5-81f9-42d6-af71-69e2249182fa" + "WESTUS2:20170320T152339Z:377a5d58-aa0e-4122-9caf-da6bab36f8c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,79 +111,26 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FhYWFhYWFhYWFhYWFyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvYWFhYWFhYWFhYWFhYT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaym-test-20170318-194608/providers/Microsoft.ServiceFabric/clusters/donotexisting?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FiaGF5bS10ZXN0LTIwMTcwMzE4LTE5NDYwOC9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvZG9ub3RleGlzdGluZz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" - ] - }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa\",\r\n \"name\": \"aaaaaaaaaaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaaaaaaaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636244362547166623\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaaaaaaaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"8888\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaaaaaaaaaa6877\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 08 Mar 2017 14:51:22 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": [ - "Accept-Encoding" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" - ], - "x-ms-request-id": [ - "4cc9ea1c-cb23-4ca2-915f-b9e0da3d1de8" + "x-ms-client-request-id": [ + "bb976456-03a0-4252-b4cf-479b821b2c4d" ], - "x-ms-correlation-request-id": [ - "4cc9ea1c-cb23-4ca2-915f-b9e0da3d1de8" + "accept-language": [ + "en-US" ], - "x-ms-routing-request-id": [ - "WESTUS2:20170308T145123Z:4cc9ea1c-cb23-4ca2-915f-b9e0da3d1de8" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/donotexisting?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FhYWFhYWFhYWFhYWFyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvZG9ub3RleGlzdGluZz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.ServiceFabric/clusters/donotexisting' under resource group 'aaaaaaaaaaaaarg' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.ServiceFabric/clusters/donotexisting' under resource group 'abhaym-test-20170318-194608' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "165" + "177" ], "Content-Type": [ "application/json; charset=utf-8" @@ -195,7 +142,7 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 14:51:23 GMT" + "Mon, 20 Mar 2017 15:23:39 GMT" ], "Pragma": [ "no-cache" @@ -204,13 +151,13 @@ "gateway" ], "x-ms-request-id": [ - "b3cae4d2-4f68-49fe-89ba-7c3662903319" + "548769f9-fe8c-409b-8045-420d32ae0d4f" ], "x-ms-correlation-request-id": [ - "b3cae4d2-4f68-49fe-89ba-7c3662903319" + "548769f9-fe8c-409b-8045-420d32ae0d4f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170308T145124Z:b3cae4d2-4f68-49fe-89ba-7c3662903319" + "WESTUS2:20170320T152339Z:548769f9-fe8c-409b-8045-420d32ae0d4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestList.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestList.json index c54d89f1f39a..eeb933cadc0e 100644 --- a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestList.json +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestList.json @@ -6,12 +6,18 @@ "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "0211120b-911f-49e7-afb7-043142f8ba27" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/deployertest/providers/Microsoft.ServiceFabric/clusters/deployertest\",\r\n \"name\": \"deployertest\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"deployertest\"\r\n },\r\n \"etag\": \"W/\\\"636197629293638021\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"59e810a3-1644-47e2-86b5-a66e916c0bb8\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://deployertest.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/59e810a3-1644-47e2-86b5-a66e916c0bb8\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": true,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsdeployertest6267\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsdeployertest6267.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsdeployertest6267.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsdeployertest6267.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"deployer\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703061931/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703061931\",\r\n \"name\": \"abhaymtest1703061931\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703061931\"\r\n },\r\n \"etag\": \"W/\\\"636244255602049660\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8bf3f6ed-a780-49dc-927b-c5511fe21076\",\r\n \"clusterCodeVersion\": \"5.3.301.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703061931.westus2.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus2.servicefabric.azure.com/runtime/clusters/8bf3f6ed-a780-49dc-927b-c5511fe21076\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"amloc5ev2zcsa2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://amloc5ev2zcsa2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://amloc5ev2zcsa2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://amloc5ev2zcsa2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/wftsvc-mwh-20161203-012707281-v2/providers/Microsoft.ServiceFabric/clusters/wftsvc-mwh-20161203-\",\r\n \"name\": \"wftsvc-mwh-20161203-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"wftsvc-mwh-20161203-\"\r\n },\r\n \"etag\": \"W/\\\"636163252596227409\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"f7c0ff3b-0ff5-41df-8f0c-4e51f46bee79\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://wftsvc-mwh-20161203-012707281-v2.westus2.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus2.servicefabric.azure.com/runtime/clusters/f7c0ff3b-0ff5-41df-8f0c-4e51f46bee79\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagmwh20161203012707\",\r\n \"primaryAccessKey\": \"2+20fZYSmdfT8KUPCUu5UKXvHeLKTuFwqm3UBJCkmX42iKPqq9qLxc09cVx0Uolaw6s6HRUtIOm83uHMPSKEdg==\",\r\n \"secondaryAccessKey\": \"Mn8li9IXuNnQgfdTlFKR8eGW+HHKopQa7tSgKF4WlYemA2xWxbZCSV/toP4142FzQEg72HEH7q0AhTXDzDXHKg==\",\r\n \"blobEndpoint\": \"https://diagmwh20161203012707.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagmwh20161203012707.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagmwh20161203012707.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703062131/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703062131\",\r\n \"name\": \"abhaymtest1703062131\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703062131\"\r\n },\r\n \"etag\": \"W/\\\"636244327150066216\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"bc2e164d-009a-4b30-b302-ca9d72a4f92b\",\r\n \"clusterCodeVersion\": \"5.3.301.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703062131.westus2.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus2.servicefabric.azure.com/runtime/clusters/bc2e164d-009a-4b30-b302-ca9d72a4f92b\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"ghxpn355atby42\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://ghxpn355atby42.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://ghxpn355atby42.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://ghxpn355atby42.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703062345/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703062345\",\r\n \"name\": \"abhaymtest1703062345\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703062345\"\r\n },\r\n \"etag\": \"W/\\\"636244408062668480\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"aadc8f9d-4227-4b49-bc11-40cdaea69be0\",\r\n \"clusterCodeVersion\": \"5.3.301.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703062345.westus2.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus2.servicefabric.azure.com/runtime/clusters/aadc8f9d-4227-4b49-bc11-40cdaea69be0\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"vu4zfs2wvfiii2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://vu4zfs2wvfiii2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://vu4zfs2wvfiii2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://vu4zfs2wvfiii2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703072343/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703072343\",\r\n \"name\": \"abhaymtest1703072343\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703072343\"\r\n },\r\n \"etag\": \"W/\\\"636245270549922862\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"631525e0-49f8-49db-923d-5bbd5c174c6e\",\r\n \"clusterCodeVersion\": \"5.3.301.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703072343.westus2.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus2.servicefabric.azure.com/runtime/clusters/631525e0-49f8-49db-923d-5bbd5c174c6e\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"3stvlgh5qzm2m2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://3stvlgh5qzm2m2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://3stvlgh5qzm2m2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://3stvlgh5qzm2m2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703030726/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703030726\",\r\n \"name\": \"abhaymtest1703030726\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703030726\"\r\n },\r\n \"etag\": \"W/\\\"636241228239120742\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"64f138aa-2977-4be4-8d3f-1b96e38c06cb\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"https://abhaymtest1703030726.eastus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://eastus.servicefabric.azure.com/runtime/clusters/64f138aa-2977-4be4-8d3f-1b96e38c06cb\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A13273F20693D4F64DF0A95F3AA2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": true,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"kurweiopfpqkc2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://kurweiopfpqkc2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://kurweiopfpqkc2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://kurweiopfpqkc2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaytest04/providers/Microsoft.ServiceFabric/clusters/abhaytest04\",\r\n \"name\": \"abhaytest04\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaytest04\"\r\n },\r\n \"etag\": \"W/\\\"636240026373863680\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"82973fcb-619e-4ccb-b8bb-587b18ff9b1a\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"https://abhaytest04.eastus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://eastus.servicefabric.azure.com/runtime/clusters/82973fcb-619e-4ccb-b8bb-587b18ff9b1a\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A13273F20693AAF64DF0A95F3CC2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": true,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsabhaytest049097\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsabhaytest049097.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsabhaytest049097.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsabhaytest049097.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703072008/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703072008\",\r\n \"name\": \"abhaymtest1703072008\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703072008\"\r\n },\r\n \"etag\": \"W/\\\"636245141650364780\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"3ae5069d-190c-4485-bb1b-1572bbb9efd4\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"https://abhaymtest1703072008.eastus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://eastus.servicefabric.azure.com/runtime/clusters/3ae5069d-190c-4485-bb1b-1572bbb9efd4\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A13273F20693D4F64DF0A95F3AA2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": true,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"j6nqgwato3bbg2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://j6nqgwato3bbg2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://j6nqgwato3bbg2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://j6nqgwato3bbg2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"eastus2\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/zikaiwtest10122016bnrg/providers/Microsoft.ServiceFabric/clusters/zikaiwtest10122016bn\",\r\n \"name\": \"zikaiwtest10122016bn\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"zikaiwtest10122016bn\"\r\n },\r\n \"etag\": \"W/\\\"636118908725516786\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"af8fac49-af05-4337-9857-51e956ced173\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://zikaiwtest10122016bn.eastus2.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://eastus2.servicefabric.azure.com/runtime/clusters/af8fac49-af05-4337-9857-51e956ced173\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogszikaiwtest10124216\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogszikaiwtest10124216.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogszikaiwtest10124216.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogszikaiwtest10124216.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"WF\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"centralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/zikaiwtest10122016dmrg/providers/Microsoft.ServiceFabric/clusters/zikaiwtest10122016dm\",\r\n \"name\": \"zikaiwtest10122016dm\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"zikaiwtest10122016dm\"\r\n },\r\n \"etag\": \"W/\\\"636118907464750682\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9c6943c7-ba3d-4fb1-ba68-20cff4513cdc\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://zikaiwtest10122016dm.centralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://centralus.servicefabric.azure.com/runtime/clusters/9c6943c7-ba3d-4fb1-ba68-20cff4513cdc\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogszikaiwtest10129205\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogszikaiwtest10129205.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogszikaiwtest10129205.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogszikaiwtest10129205.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"WF\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaytest01/providers/Microsoft.ServiceFabric/clusters/abhaytest01\",\r\n \"name\": \"abhaytest01\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaytest01\"\r\n },\r\n \"etag\": \"W/\\\"636239898702041573\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"5cb962f2-dc5b-48ce-b06a-7757b7c534db\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaytest01.westeurope.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westeurope.servicefabric.azure.com/runtime/clusters/5cb962f2-dc5b-48ce-b06a-7757b7c534db\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsabhaytest019318\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsabhaytest019318.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsabhaytest019318.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsabhaytest019318.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaytest02/providers/Microsoft.ServiceFabric/clusters/abhaytest02\",\r\n \"name\": \"abhaytest02\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaytest02\"\r\n },\r\n \"etag\": \"W/\\\"636245336382807943\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"d68ceded-9206-412d-8464-58dbdba5b1e9\",\r\n \"clusterCodeVersion\": \"5.4.145.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaytest02.westeurope.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westeurope.servicefabric.azure.com/runtime/clusters/d68ceded-9206-412d-8464-58dbdba5b1e9\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsabhaytest029387\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsabhaytest029387.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsabhaytest029387.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsabhaytest029387.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"northcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/zikaiwtest10122016chrg/providers/Microsoft.ServiceFabric/clusters/zikaiwtest10122016ch\",\r\n \"name\": \"zikaiwtest10122016ch\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"zikaiwtest10122016ch\"\r\n },\r\n \"etag\": \"W/\\\"636118910065246806\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"051b82cf-2bc6-4221-a727-17e0de1e4e51\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://zikaiwtest10122016ch.northcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://northcentralus.servicefabric.azure.com/runtime/clusters/051b82cf-2bc6-4221-a727-17e0de1e4e51\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogszikaiwtest10122415\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogszikaiwtest10122415.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogszikaiwtest10122415.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogszikaiwtest10122415.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"WF\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"eastasia\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/nsgtest03/providers/Microsoft.ServiceFabric/clusters/nsgtest03\",\r\n \"name\": \"nsgtest03\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"nsgtest03\"\r\n },\r\n \"etag\": \"W/\\\"636143605818331675\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"ac15585b-5d7b-4e82-8d1d-2d2ceab638a2\",\r\n \"clusterCodeVersion\": \"5.3.301.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://nsgtest03.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://eastasia.servicefabric.azure.com/runtime/clusters/ac15585b-5d7b-4e82-8d1d-2d2ceab638a2\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogs2idnfejoizlt22\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs2idnfejoizlt22.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogs2idnfejoizlt22.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogs2idnfejoizlt22.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"GTVM\",\r\n \"placementProperties\": {\r\n \"gatewayAllowed\": \"true\",\r\n \"systemServicesAllowed\": \"false\",\r\n \"streamProcessorAllowed\": \"false\",\r\n \"requestManagerAllowed\": \"false\",\r\n \"provisioningAllowed\": \"true\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"eastasia\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/nsgtest05/providers/Microsoft.ServiceFabric/clusters/nsgtest05\",\r\n \"name\": \"nsgtest05\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"nsgtest05\"\r\n },\r\n \"etag\": \"W/\\\"636144047518201703\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"c09d10e6-8cc9-40bf-88dd-246acdde5ea7\",\r\n \"clusterCodeVersion\": \"5.3.301.9590\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://nsgtest05.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://eastasia.servicefabric.azure.com/runtime/clusters/c09d10e6-8cc9-40bf-88dd-246acdde5ea7\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsz4fwhlzushoes2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsz4fwhlzushoes2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsz4fwhlzushoes2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsz4fwhlzushoes2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"GTVM\",\r\n \"placementProperties\": {\r\n \"gatewayAllowed\": \"true\",\r\n \"systemServicesAllowed\": \"false\",\r\n \"streamProcessorAllowed\": \"false\",\r\n \"requestManagerAllowed\": \"false\",\r\n \"provisioningAllowed\": \"true\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"japanwest\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/zikaiwtest10122016osrg/providers/Microsoft.ServiceFabric/clusters/zikaiwtest10122016os\",\r\n \"name\": \"zikaiwtest10122016os\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"zikaiwtest10122016os\"\r\n },\r\n \"etag\": \"W/\\\"636118914810023720\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"480f787d-ebfe-45b1-b9f0-917f21682d14\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://zikaiwtest10122016os.japanwest.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westjapan.servicefabric.azure.com/runtime/clusters/480f787d-ebfe-45b1-b9f0-917f21682d14\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogszikaiwtest10127306\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogszikaiwtest10127306.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogszikaiwtest10127306.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogszikaiwtest10127306.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"WF\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"japaneast\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/zikaiwtest10122016tyrg/providers/Microsoft.ServiceFabric/clusters/zikaiwtest10122016ty\",\r\n \"name\": \"zikaiwtest10122016ty\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"zikaiwtest10122016ty\"\r\n },\r\n \"etag\": \"W/\\\"636118913413046187\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"a356a1d5-ed4f-4cdd-9b28-ee40b79ea34a\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://zikaiwtest10122016ty.japaneast.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://eastjapan.servicefabric.azure.com/runtime/clusters/a356a1d5-ed4f-4cdd-9b28-ee40b79ea34a\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogszikaiwtest10126623\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogszikaiwtest10126623.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogszikaiwtest10126623.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogszikaiwtest10126623.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"WF\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southindia\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/wftsvc-ma-20161202-222619667-v2/providers/Microsoft.ServiceFabric/clusters/wftsvc-ma-20161202-2\",\r\n \"name\": \"wftsvc-ma-20161202-2\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"wftsvc-ma-20161202-2\"\r\n },\r\n \"etag\": \"W/\\\"636163144488368065\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"a15ba6be-2e5e-49e7-8457-f6aeb88247ed\",\r\n \"clusterCodeVersion\": \"5.3.311.9590\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://wftsvc-ma-20161202-222619667-v2.southindia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://southindia.servicefabric.azure.com/runtime/clusters/a15ba6be-2e5e-49e7-8457-f6aeb88247ed\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagma20161202222619\",\r\n \"primaryAccessKey\": \"PEAjtqu51MYL4t9NIWC8f3MTfbyq8WCbFv0cyCNlFVMbfoAfwji5hLDiHxsSWmuBm4tSGIqMfjh2IiaecPWWsA==\",\r\n \"secondaryAccessKey\": \"W83Lr6FzTGZRjXyf3ETJayV17jJE5rfBJ3z+rDh9fdNkKUywV2+8/UF356HQZ2VuD9EXfyNAJ+6AAKRDUtibGw==\",\r\n \"blobEndpoint\": \"https://diagma20161202222619.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagma20161202222619.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagma20161202222619.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southindia\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/wftsvc-ma-20161216-222607320-v2/providers/Microsoft.ServiceFabric/clusters/wftsvc-ma-20161216-2\",\r\n \"name\": \"wftsvc-ma-20161216-2\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"wftsvc-ma-20161216-2\"\r\n },\r\n \"etag\": \"W/\\\"636175240100424900\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"d36dc919-f90b-488a-a637-692c60c313e2\",\r\n \"clusterCodeVersion\": \"5.4.145.9494\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://wftsvc-ma-20161216-222607320-v2.southindia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://southindia.servicefabric.azure.com/runtime/clusters/d36dc919-f90b-488a-a637-692c60c313e2\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagma20161216222607\",\r\n \"primaryAccessKey\": \"Q52vgLTLo8AOja6ZcB96IcREKV5xpkLtH8kRktYvVcBCkzczgBedbbhWswiNuL7lTtrAm/5UuRdxMb5a8muEEw==\",\r\n \"secondaryAccessKey\": \"pyFssc4UxbdxTfWkawgcROdk61Bs+JT3WL0bOw7+DGzK8oztR3nR9djzq0zS9klq4DTukat9LADN5jMU/bYK1w==\",\r\n \"blobEndpoint\": \"https://diagma20161216222607.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagma20161216222607.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagma20161216222607.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"brazilsouth\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/bztest-rg/providers/Microsoft.ServiceFabric/clusters/bztest\",\r\n \"name\": \"bztest\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"bztest\"\r\n },\r\n \"etag\": \"W/\\\"636058476587798244\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"cece147a-0b32-4390-beb6-e497934165d5\",\r\n \"clusterCodeVersion\": \"5.1.163.9590\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://bztest.brazilsouth.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://southbrazil.servicefabric.azure.com/runtime/clusters/cece147a-0b32-4390-beb6-e497934165d5\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsbztest2340\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsbztest2340.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsbztest2340.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsbztest2340.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"FE\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.1.163.9590\",\r\n \"supportExpiryUtc\": \"2017-01-20T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.121.9494\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"canadacentral\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/wftsvc-yt-20161026-012057297-v2/providers/Microsoft.ServiceFabric/clusters/wftsvc-yt-20161026-0\",\r\n \"name\": \"wftsvc-yt-20161026-0\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"wftsvc-yt-20161026-0\"\r\n },\r\n \"etag\": \"W/\\\"636130416957754817\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"254ef458-b578-4f77-b03c-71ef13d0c1bf\",\r\n \"clusterCodeVersion\": \"5.3.301.9590\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://wftsvc-yt-20161026-012057297-v2.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://centralcanada.servicefabric.azure.com/runtime/clusters/254ef458-b578-4f77-b03c-71ef13d0c1bf\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagyt20161026012057\",\r\n \"primaryAccessKey\": \"F9RVqgSqMSvC4/YB9OlHQh7dlUCit4LqE+8loPVfMDcE0aT5h+LP+Iwjq5N/KIVrr9Rz+xcBvIRnqj7o6eBXdg==\",\r\n \"secondaryAccessKey\": \"3prsh7JbxEjsKeuerXA67KI3d69x3l9xxZWTOCgTRkYKVVkZhzGsp3ctolBW4hW93tbz0JFOmYP9qWcv+syvGg==\",\r\n \"blobEndpoint\": \"https://diagyt20161026012057.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagyt20161026012057.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagyt20161026012057.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"canadacentral\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/wftsvc-yt-20161210-012552629-v2/providers/Microsoft.ServiceFabric/clusters/wftsvc-yt-20161210-0\",\r\n \"name\": \"wftsvc-yt-20161210-0\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"wftsvc-yt-20161210-0\"\r\n },\r\n \"etag\": \"W/\\\"636169300125211270\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"323f6f5a-e494-42de-af90-8c3fcaa041aa\",\r\n \"clusterCodeVersion\": \"5.4.145.9494\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://wftsvc-yt-20161210-012552629-v2.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://centralcanada.servicefabric.azure.com/runtime/clusters/323f6f5a-e494-42de-af90-8c3fcaa041aa\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagyt20161210012552\",\r\n \"primaryAccessKey\": \"HAp7JviOdhbBA4Hp4jpBUVQJ/6VVv2TTnAB7PnG+cVQbuV7K/8CvlMblKSzOnK6hiEI3ufsuoGVxXYEUxWhhAQ==\",\r\n \"secondaryAccessKey\": \"Kr5RgIxa2isAX/+Z5k+F0O7UhH3ORIBXARXroXVzPj6ByGBnXfZLhU6dmguokb4WGbXDoCIOm+EHprEZsrUhEw==\",\r\n \"blobEndpoint\": \"https://diagyt20161210012552.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagyt20161210012552.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagyt20161210012552.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"canadacentral\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/wftsvc-yt-20161221-012942018-v2/providers/Microsoft.ServiceFabric/clusters/wftsvc-yt-20161221-0\",\r\n \"name\": \"wftsvc-yt-20161221-0\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"wftsvc-yt-20161221-0\"\r\n },\r\n \"etag\": \"W/\\\"636178806211614120\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9286266b-50b7-46d3-8dcb-86b0189a1851\",\r\n \"clusterCodeVersion\": \"5.4.145.9494\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://wftsvc-yt-20161221-012942018-v2.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://centralcanada.servicefabric.azure.com/runtime/clusters/9286266b-50b7-46d3-8dcb-86b0189a1851\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagyt20161221012942\",\r\n \"primaryAccessKey\": \"AZWNWBkgJl+GBrTxH8TvJLd5lfbhIjZWslBaCgS2iH7n7tR4N7Xy1y/9RNr3mQ1+hFV86sxn9+XSGiruGejTpQ==\",\r\n \"secondaryAccessKey\": \"vPlVaIqF5u660R4dHBSuM+EdLJ6ADeQVxv2wEbAHBAuhKTQC9F9RhH0nuTVCN1oPH8avk3mZkGRKTNwl7Z7DGQ==\",\r\n \"blobEndpoint\": \"https://diagyt20161221012942.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagyt20161221012942.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagyt20161221012942.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"canadaeast\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/wftsvc-yq-20161201-012845413-v2/providers/Microsoft.ServiceFabric/clusters/wftsvc-yq-20161201-0\",\r\n \"name\": \"wftsvc-yq-20161201-0\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"wftsvc-yq-20161201-0\"\r\n },\r\n \"etag\": \"W/\\\"636161525689267021\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"99714df5-ce9b-4959-a4ee-f6c22f2713bd\",\r\n \"clusterCodeVersion\": \"5.3.301.9590\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://wftsvc-yq-20161201-012845413-v2.canadaeast.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://eastcanada.servicefabric.azure.com/runtime/clusters/99714df5-ce9b-4959-a4ee-f6c22f2713bd\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagyq20161201012845\",\r\n \"primaryAccessKey\": \"QPnyOiZwptIClQQjVU0MwL/kzunj6LGuW6u3D5c4aTbyYIyfkvw2M/RsNZAmVMgDOUb9/ppmlGYXe4hBzMG6oQ==\",\r\n \"secondaryAccessKey\": \"YB2q32M0lHy5mMUASGTr/PaM4FkpH8iKeqBGUiz1lw8wsR7T8NUdPNkKQi+LnbMFwkS2NNI8v5/zvXiXKoW1yw==\",\r\n \"blobEndpoint\": \"https://diagyq20161201012845.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagyq20161201012845.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagyq20161201012845.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.3.301.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.3.311.9590\",\r\n \"supportExpiryUtc\": \"2017-03-22T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa\",\r\n \"name\": \"aaaaaaaaaaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaaaaaaaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636244362547166623\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaaaaaaaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"8888\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaaaaaaaaaa6877\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1702251613/providers/Microsoft.ServiceFabric/clusters/abhaymtest1702251613\",\r\n \"name\": \"abhaymtest1702251613\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1702251613\"\r\n },\r\n \"etag\": \"W/\\\"636236360610819115\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"60b8eaa4-751f-4945-ba89-aff2d85be72a\",\r\n \"clusterCodeVersion\": \"5.5.201.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1702251613.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/60b8eaa4-751f-4945-ba89-aff2d85be72a\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"6sd5awwmol7yy2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://6sd5awwmol7yy2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://6sd5awwmol7yy2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://6sd5awwmol7yy2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sdktestrg2/providers/Microsoft.ServiceFabric/clusters/sdktest\",\r\n \"name\": \"sdktest\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636244182147134140\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8d566293-3508-4d62-ba7b-056fa710c3c9\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8d566293-3508-4d62-ba7b-056fa710c3c9\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": true,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogssdktest5486\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogssdktest5486.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogssdktest5486.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogssdktest5486.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Silver\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testCreaterg/providers/Microsoft.ServiceFabric/clusters/testCreateCluster\",\r\n \"name\": \"testCreateCluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636244261869715147\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"7ad66ff6-062b-41a1-8f96-c32b222e3e5e\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/7ad66ff6-062b-41a1-8f96-c32b222e3e5e\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testCreaterg1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636244595927345289\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"ed4fa900-6c59-430b-b807-2e440ac20456\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/ed4fa900-6c59-430b-b807-2e440ac20456\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/deployertest/providers/Microsoft.ServiceFabric/clusters/deployertest\",\r\n \"name\": \"deployertest\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"deployertest\"\r\n },\r\n \"etag\": \"W/\\\"636197629293638021\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"59e810a3-1644-47e2-86b5-a66e916c0bb8\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://deployertest.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/59e810a3-1644-47e2-86b5-a66e916c0bb8\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsdeployertest6267\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsdeployertest6267.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsdeployertest6267.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsdeployertest6267.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"deployer\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/wftsvc-mwh-20161203-012707281-v2/providers/Microsoft.ServiceFabric/clusters/wftsvc-mwh-20161203-\",\r\n \"name\": \"wftsvc-mwh-20161203-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"wftsvc-mwh-20161203-\"\r\n },\r\n \"etag\": \"W/\\\"636163252596227409\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"f7c0ff3b-0ff5-41df-8f0c-4e51f46bee79\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://wftsvc-mwh-20161203-012707281-v2.westus2.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus2.servicefabric.azure.com/runtime/clusters/f7c0ff3b-0ff5-41df-8f0c-4e51f46bee79\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagmwh20161203012707\",\r\n \"primaryAccessKey\": \"2+20fZYSmdfT8KUPCUu5UKXvHeLKTuFwqm3UBJCkmX42iKPqq9qLxc09cVx0Uolaw6s6HRUtIOm83uHMPSKEdg==\",\r\n \"secondaryAccessKey\": \"Mn8li9IXuNnQgfdTlFKR8eGW+HHKopQa7tSgKF4WlYemA2xWxbZCSV/toP4142FzQEg72HEH7q0AhTXDzDXHKg==\",\r\n \"blobEndpoint\": \"https://diagmwh20161203012707.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagmwh20161203012707.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagmwh20161203012707.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703100151/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703100151\",\r\n \"name\": \"abhaymtest1703100151\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703100151\"\r\n },\r\n \"etag\": \"W/\\\"636247075411015809\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"89b0771c-c0d5-4a85-a9fb-c885b40ab838\",\r\n \"clusterCodeVersion\": \"5.5.201.0\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"http://abhaymtest1703100151.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/89b0771c-c0d5-4a85-a9fb-c885b40ab838\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"qnp4zdsvldwko2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://qnp4zdsvldwko2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://qnp4zdsvldwko2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://qnp4zdsvldwko2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703131739/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703131739\",\r\n \"name\": \"abhaymtest1703131739\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703131739\"\r\n },\r\n \"etag\": \"W/\\\"636250236104319049\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"4f8ad527-8e40-495f-bf68-d7d0febccc04\",\r\n \"clusterCodeVersion\": \"5.5.201.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703131739.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/4f8ad527-8e40-495f-bf68-d7d0febccc04\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"gsuc32mrgh5n22\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://gsuc32mrgh5n22.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://gsuc32mrgh5n22.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://gsuc32mrgh5n22.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703140846/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703140846\",\r\n \"name\": \"abhaymtest1703140846\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703140846\"\r\n },\r\n \"etag\": \"W/\\\"636250780358172093\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"c29d4d75-d9a7-4fed-a695-bb114e7661a2\",\r\n \"clusterCodeVersion\": \"5.5.201.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703140846.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/c29d4d75-d9a7-4fed-a695-bb114e7661a2\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"f75xkjt4t2qwg2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://f75xkjt4t2qwg2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://f75xkjt4t2qwg2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://f75xkjt4t2qwg2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703142040/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703142040\",\r\n \"name\": \"abhaymtest1703142040\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703142040\"\r\n },\r\n \"etag\": \"W/\\\"636251208498220241\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"0710c294-b648-430e-a8c0-07dec65ddaaf\",\r\n \"clusterCodeVersion\": \"5.5.201.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703142040.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0710c294-b648-430e-a8c0-07dec65ddaaf\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"kfu5abfrzua2u2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://kfu5abfrzua2u2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://kfu5abfrzua2u2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://kfu5abfrzua2u2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703152214/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703152214\",\r\n \"name\": \"abhaymtest1703152214\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703152214\"\r\n },\r\n \"etag\": \"W/\\\"636252191098056200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"d6926106-806e-4838-9011-6f2d83369b46\",\r\n \"clusterCodeVersion\": \"5.5.201.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703152214.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/d6926106-806e-4838-9011-6f2d83369b46\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"irsjpl3rjsmpk2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://irsjpl3rjsmpk2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://irsjpl3rjsmpk2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://irsjpl3rjsmpk2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703160653/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703160653\",\r\n \"name\": \"abhaymtest1703160653\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703160653\"\r\n },\r\n \"etag\": \"W/\\\"636252441405373694\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"05993e81-f074-4a75-aa0e-be74340b35e0\",\r\n \"clusterCodeVersion\": \"5.5.201.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703160653.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/05993e81-f074-4a75-aa0e-be74340b35e0\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"ot75v2adi5eho2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://ot75v2adi5eho2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://ot75v2adi5eho2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://ot75v2adi5eho2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703162329/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703162329\",\r\n \"name\": \"abhaymtest1703162329\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703162329\"\r\n },\r\n \"etag\": \"W/\\\"636253038124659648\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"c0c53e28-8549-4584-9f5d-fdb077cae3d2\",\r\n \"clusterCodeVersion\": \"5.6.134.9494\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"http://abhaymtest1703162329.westcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/c0c53e28-8549-4584-9f5d-fdb077cae3d2\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"fgyzih33ttzpm2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://fgyzih33ttzpm2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://fgyzih33ttzpm2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://fgyzih33ttzpm2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703162340/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703162340\",\r\n \"name\": \"abhaymtest1703162340\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703162340\"\r\n },\r\n \"etag\": \"W/\\\"636253046173461141\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"c1406cb6-e459-48e2-b485-f8bc45e92fd2\",\r\n \"clusterCodeVersion\": \"5.5.221.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703162340.westcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/c1406cb6-e459-48e2-b485-f8bc45e92fd2\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"4ir6ckcxu47ho2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://4ir6ckcxu47ho2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://4ir6ckcxu47ho2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://4ir6ckcxu47ho2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703170025/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703170025\",\r\n \"name\": \"abhaymtest1703170025\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703170025\"\r\n },\r\n \"etag\": \"W/\\\"636253072032261700\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"df7aa3e8-ebeb-43c6-8114-f0c7b9c91ff0\",\r\n \"clusterCodeVersion\": \"5.5.221.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703170025.westcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/df7aa3e8-ebeb-43c6-8114-f0c7b9c91ff0\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"innh4jgb7eu7a2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://innh4jgb7eu7a2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://innh4jgb7eu7a2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://innh4jgb7eu7a2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703170037/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703170037\",\r\n \"name\": \"abhaymtest1703170037\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703170037\"\r\n },\r\n \"etag\": \"W/\\\"636253079366086660\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"a6ef2e2a-c792-4dd2-8a5a-fcdcb6e7be9a\",\r\n \"clusterCodeVersion\": \"5.6.133.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703170037.westcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/a6ef2e2a-c792-4dd2-8a5a-fcdcb6e7be9a\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"mazzsekewyiwc2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://mazzsekewyiwc2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://mazzsekewyiwc2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://mazzsekewyiwc2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703182049/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703182049\",\r\n \"name\": \"abhaymtest1703182049\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703182049\"\r\n },\r\n \"etag\": \"W/\\\"636254670316380586\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"f3de6f6d-cf9e-4e97-8529-1c7f6649971d\",\r\n \"clusterCodeVersion\": \"5.6.134.9494\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"http://abhaymtest1703182049.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/f3de6f6d-cf9e-4e97-8529-1c7f6649971d\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"e2i5ab3jkypoe2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://e2i5ab3jkypoe2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://e2i5ab3jkypoe2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://e2i5ab3jkypoe2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703182157/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703182157\",\r\n \"name\": \"abhaymtest1703182157\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703182157\"\r\n },\r\n \"etag\": \"W/\\\"636254711071756618\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"03c5e366-3deb-4ade-b539-6357690341ec\",\r\n \"clusterCodeVersion\": \"5.6.134.9494\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"http://abhaymtest1703182157.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/03c5e366-3deb-4ade-b539-6357690341ec\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"5iaifyl4gk3u42\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://5iaifyl4gk3u42.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://5iaifyl4gk3u42.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://5iaifyl4gk3u42.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703182207/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703182207\",\r\n \"name\": \"abhaymtest1703182207\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703182207\"\r\n },\r\n \"etag\": \"W/\\\"636254717000562216\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8c49af0a-7f51-4a13-b32c-61e511231330\",\r\n \"clusterCodeVersion\": \"5.6.134.9494\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"http://abhaymtest1703182207.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8c49af0a-7f51-4a13-b32c-61e511231330\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"yg2mi2cg4n5c42\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://yg2mi2cg4n5c42.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://yg2mi2cg4n5c42.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://yg2mi2cg4n5c42.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaytest06/providers/Microsoft.ServiceFabric/clusters/abhaytest06\",\r\n \"name\": \"abhaytest06\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaytest06\"\r\n },\r\n \"etag\": \"W/\\\"636247797680333363\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"4f6e2c10-6dc5-492f-89d0-d860b40e2ced\",\r\n \"clusterCodeVersion\": \"5.5.219.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaytest06.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/4f6e2c10-6dc5-492f-89d0-d860b40e2ced\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsabhaytest069203\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsabhaytest069203.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsabhaytest069203.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsabhaytest069203.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/same2rgg/providers/Microsoft.ServiceFabric/clusters/same2\",\r\n \"name\": \"same2\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"same2\"\r\n },\r\n \"etag\": \"W/\\\"636247051842039642\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"c00a7df6-2de0-4f1b-a3a3-208e46cd7650\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"https://same2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/c00a7df6-2de0-4f1b-a3a3-208e46cd7650\",\r\n \"certificate\": {\r\n \"thumbprint\": \"9D0362B4D09B8CC2078728C5E1BD5215FEB786FD\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogssame23881\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogssame23881.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogssame23881.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogssame23881.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sdktestrg2/providers/Microsoft.ServiceFabric/clusters/sdktest\",\r\n \"name\": \"sdktest\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636244182147134148\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8d566293-3508-4d62-ba7b-056fa710c3c9\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8d566293-3508-4d62-ba7b-056fa710c3c9\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": true,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogssdktest5486\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogssdktest5486.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogssdktest5486.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogssdktest5486.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"reverseProxyEndpointPort\": 9998,\r\n \"durabilityLevel\": \"Silver\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/xunlutest1703182056/providers/Microsoft.ServiceFabric/clusters/xunlutest1703182056\",\r\n \"name\": \"xunlutest1703182056\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"xunlutest1703182056\"\r\n },\r\n \"etag\": \"W/\\\"636254674533128320\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"7868f6a1-9163-4d15-a249-0f38b89ee871\",\r\n \"clusterCodeVersion\": \"5.6.133.9494\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"http://xunlutest1703182056.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/7868f6a1-9163-4d15-a249-0f38b89ee871\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"h5nkenc66m7bo2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://h5nkenc66m7bo2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://h5nkenc66m7bo2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://h5nkenc66m7bo2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636256200795185190\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"181e8c5c-09d4-42f4-a0c5-857bd79a493f\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/181e8c5c-09d4-42f4-a0c5-857bd79a493f\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -23,7 +29,7 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 14:51:31 GMT" + "Mon, 20 Mar 2017 15:23:59 GMT" ], "Pragma": [ "no-cache" @@ -32,33 +38,21 @@ "Accept-Encoding" ], "x-ms-original-request-ids": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", "", "", "" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14820" ], "x-ms-request-id": [ - "020b6d4f-bfe5-4d2a-b0e5-d9285bc2df5c" + "a60ed755-332f-4679-aacb-3fe7c27f5faa" ], "x-ms-correlation-request-id": [ - "020b6d4f-bfe5-4d2a-b0e5-d9285bc2df5c" + "a60ed755-332f-4679-aacb-3fe7c27f5faa" ], "x-ms-routing-request-id": [ - "WESTUS2:20170308T145131Z:020b6d4f-bfe5-4d2a-b0e5-d9285bc2df5c" + "WESTUS2:20170320T152359Z:a60ed755-332f-4679-aacb-3fe7c27f5faa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestListByResourceGroup.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestListByResourceGroup.json index b379929ac79b..a2dabc6b2752 100644 --- a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestListByResourceGroup.json +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestListByResourceGroup.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "daff7b7a-8064-41cb-8a49-9746f7cad42d" + "761a6fa3-465e-4d44-a3a2-ccbb9920199b" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg\",\r\n \"name\": \"aaaaaaaaaaaaarg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1702250539\",\r\n \"name\": \"abhaymtest1702250539\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1702251613\",\r\n \"name\": \"abhaymtest1702251613\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703030726\",\r\n \"name\": \"abhaymtest1703030726\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703061931\",\r\n \"name\": \"abhaymtest1703061931\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703062131\",\r\n \"name\": \"abhaymtest1703062131\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703062345\",\r\n \"name\": \"abhaymtest1703062345\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703072008\",\r\n \"name\": \"abhaymtest1703072008\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703072343\",\r\n \"name\": \"abhaymtest1703072343\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayreverseproxy02\",\r\n \"name\": \"abhayreverseproxy02\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest01\",\r\n \"name\": \"abhaytest01\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest02\",\r\n \"name\": \"abhaytest02\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest04\",\r\n \"name\": \"abhaytest04\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayvm02\",\r\n \"name\": \"abhayvm02\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayvm03\",\r\n \"name\": \"abhayvm03\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/anmolprvbuild03\",\r\n \"name\": \"anmolprvbuild03\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/bztest-rg\",\r\n \"name\": \"bztest-rg\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/Default-ServiceBus-9653\",\r\n \"name\": \"Default-ServiceBus-9653\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/deployertest\",\r\n \"name\": \"deployertest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/dotnetsdkrg\",\r\n \"name\": \"dotnetsdkrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/nsgtest03\",\r\n \"name\": \"nsgtest03\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/nsgtest05\",\r\n \"name\": \"nsgtest05\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklinuxtest01\",\r\n \"name\": \"sdklinuxtest01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestrg2\",\r\n \"name\": \"sdktestrg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/SecureBaseImage\",\r\n \"name\": \"SecureBaseImage\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg\",\r\n \"name\": \"testCreaterg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1\",\r\n \"name\": \"testCreaterg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testsdkdnetrestrg\",\r\n \"name\": \"testsdkdnetrestrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-202955140-v2\",\r\n \"name\": \"wftsvc-bm-20161024-202955140-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-210350686-v2\",\r\n \"name\": \"wftsvc-bm-20161024-210350686-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-210948818-v2\",\r\n \"name\": \"wftsvc-bm-20161024-210948818-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161025-012157409-v2\",\r\n \"name\": \"wftsvc-bm-20161025-012157409-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161026-012217543-v2\",\r\n \"name\": \"wftsvc-bm-20161026-012217543-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161028-014354355-v2\",\r\n \"name\": \"wftsvc-bm-20161028-014354355-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161029-012553441-v2\",\r\n \"name\": \"wftsvc-bm-20161029-012553441-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161030-012137041-v2\",\r\n \"name\": \"wftsvc-bm-20161030-012137041-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161031-012217322-v2\",\r\n \"name\": \"wftsvc-bm-20161031-012217322-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161101-012812361-v2\",\r\n \"name\": \"wftsvc-bm-20161101-012812361-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161102-044018564-v2\",\r\n \"name\": \"wftsvc-bm-20161102-044018564-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161115-012828172-v2\",\r\n \"name\": \"wftsvc-bm-20161115-012828172-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161116-012248545-v2\",\r\n \"name\": \"wftsvc-bm-20161116-012248545-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161117-013025621-v2\",\r\n \"name\": \"wftsvc-bm-20161117-013025621-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161118-162552118-v2\",\r\n \"name\": \"wftsvc-bm-20161118-162552118-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161119-020853683-v2\",\r\n \"name\": \"wftsvc-bm-20161119-020853683-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161120-015112327-v2\",\r\n \"name\": \"wftsvc-bm-20161120-015112327-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161121-013411054-v2\",\r\n \"name\": \"wftsvc-bm-20161121-013411054-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161122-014033729-v2\",\r\n \"name\": \"wftsvc-bm-20161122-014033729-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161123-020328423-v2\",\r\n \"name\": \"wftsvc-bm-20161123-020328423-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161124-013118943-v2\",\r\n \"name\": \"wftsvc-bm-20161124-013118943-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161125-012512715-v2\",\r\n \"name\": \"wftsvc-bm-20161125-012512715-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161126-012537693-v2\",\r\n \"name\": \"wftsvc-bm-20161126-012537693-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161127-012554430-v2\",\r\n \"name\": \"wftsvc-bm-20161127-012554430-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161128-012517911-v2\",\r\n \"name\": \"wftsvc-bm-20161128-012517911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161129-012602111-v2\",\r\n \"name\": \"wftsvc-bm-20161129-012602111-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161130-022145798-v2\",\r\n \"name\": \"wftsvc-bm-20161130-022145798-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161201-014317317-v2\",\r\n \"name\": \"wftsvc-bm-20161201-014317317-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161202-012812276-v2\",\r\n \"name\": \"wftsvc-bm-20161202-012812276-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161203-012713277-v2\",\r\n \"name\": \"wftsvc-bm-20161203-012713277-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161206-025602238-v2\",\r\n \"name\": \"wftsvc-bm-20161206-025602238-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161207-012657615-v2\",\r\n \"name\": \"wftsvc-bm-20161207-012657615-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161208-024401245-v2\",\r\n \"name\": \"wftsvc-bm-20161208-024401245-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161209-012721060-v2\",\r\n \"name\": \"wftsvc-bm-20161209-012721060-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161210-012529259-v2\",\r\n \"name\": \"wftsvc-bm-20161210-012529259-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161211-012543460-v2\",\r\n \"name\": \"wftsvc-bm-20161211-012543460-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161212-012643580-v2\",\r\n \"name\": \"wftsvc-bm-20161212-012643580-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161213-135747390-v2\",\r\n \"name\": \"wftsvc-bm-20161213-135747390-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161214-020204911-v2\",\r\n \"name\": \"wftsvc-bm-20161214-020204911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161215-012912635-v2\",\r\n \"name\": \"wftsvc-bm-20161215-012912635-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161216-014118622-v2\",\r\n \"name\": \"wftsvc-bm-20161216-014118622-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161217-013027250-v2\",\r\n \"name\": \"wftsvc-bm-20161217-013027250-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161218-042923602-v2\",\r\n \"name\": \"wftsvc-bm-20161218-042923602-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161219-024910832-v2\",\r\n \"name\": \"wftsvc-bm-20161219-024910832-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161220-021526028-v2\",\r\n \"name\": \"wftsvc-bm-20161220-021526028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161221-014332493-v2\",\r\n \"name\": \"wftsvc-bm-20161221-014332493-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161222-190424958-v2\",\r\n \"name\": \"wftsvc-bm-20161222-190424958-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161223-020219887-v2\",\r\n \"name\": \"wftsvc-bm-20161223-020219887-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161224-012754028-v2\",\r\n \"name\": \"wftsvc-bm-20161224-012754028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161225-012413900-v2\",\r\n \"name\": \"wftsvc-bm-20161225-012413900-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161226-012537497-v2\",\r\n \"name\": \"wftsvc-bm-20161226-012537497-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161227-012619489-v2\",\r\n \"name\": \"wftsvc-bm-20161227-012619489-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161228-012627978-v2\",\r\n \"name\": \"wftsvc-bm-20161228-012627978-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161229-013147614-v2\",\r\n \"name\": \"wftsvc-bm-20161229-013147614-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161230-012714627-v2\",\r\n \"name\": \"wftsvc-bm-20161230-012714627-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-ma-20161202-222619667-v2\",\r\n \"name\": \"wftsvc-ma-20161202-222619667-v2\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-ma-20161216-222607320-v2\",\r\n \"name\": \"wftsvc-ma-20161216-222607320-v2\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-mwh-20161203-012707281-v2\",\r\n \"name\": \"wftsvc-mwh-20161203-012707281-v2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-sn-20161129-211521656-v2\",\r\n \"name\": \"wftsvc-sn-20161129-211521656-v2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-sn-20161129-211525592-v2\",\r\n \"name\": \"wftsvc-sn-20161129-211525592-v2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yq-20161201-012845413-v2\",\r\n \"name\": \"wftsvc-yq-20161201-012845413-v2\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161026-012057297-v2\",\r\n \"name\": \"wftsvc-yt-20161026-012057297-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161210-012552629-v2\",\r\n \"name\": \"wftsvc-yt-20161210-012552629-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161221-012942018-v2\",\r\n \"name\": \"wftsvc-yt-20161221-012942018-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault1\",\r\n \"name\": \"wftsvcKeyVault1\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault2\",\r\n \"name\": \"wftsvcKeyVault2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault3\",\r\n \"name\": \"wftsvcKeyVault3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault4\",\r\n \"name\": \"wftsvcKeyVault4\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault5\",\r\n \"name\": \"wftsvcKeyVault5\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault6\",\r\n \"name\": \"wftsvcKeyVault6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVaultAM\",\r\n \"name\": \"wftsvcKeyVaultAM\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016bnrg\",\r\n \"name\": \"zikaiwtest10122016bnrg\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016chrg\",\r\n \"name\": \"zikaiwtest10122016chrg\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016dmrg\",\r\n \"name\": \"zikaiwtest10122016dmrg\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016osrg\",\r\n \"name\": \"zikaiwtest10122016osrg\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016snrg\",\r\n \"name\": \"zikaiwtest10122016snrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016tyrg\",\r\n \"name\": \"zikaiwtest10122016tyrg\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaym-test-20170318-194608\",\r\n \"name\": \"abhaym-test-20170318-194608\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703100151\",\r\n \"name\": \"abhaymtest1703100151\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703131739\",\r\n \"name\": \"abhaymtest1703131739\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703140846\",\r\n \"name\": \"abhaymtest1703140846\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703142040\",\r\n \"name\": \"abhaymtest1703142040\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703152214\",\r\n \"name\": \"abhaymtest1703152214\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703160653\",\r\n \"name\": \"abhaymtest1703160653\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703162329\",\r\n \"name\": \"abhaymtest1703162329\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703162340\",\r\n \"name\": \"abhaymtest1703162340\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703170025\",\r\n \"name\": \"abhaymtest1703170025\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703170037\",\r\n \"name\": \"abhaymtest1703170037\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182049\",\r\n \"name\": \"abhaymtest1703182049\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182157\",\r\n \"name\": \"abhaymtest1703182157\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182207\",\r\n \"name\": \"abhaymtest1703182207\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest06\",\r\n \"name\": \"abhaytest06\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/Default-ServiceBus-9653\",\r\n \"name\": \"Default-ServiceBus-9653\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/deployertest\",\r\n \"name\": \"deployertest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykeyvaultrg1\",\r\n \"name\": \"mykeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newkeyvaultrg1\",\r\n \"name\": \"newkeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newkeyvaultrg3\",\r\n \"name\": \"newkeyvaultrg3\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same1rg\",\r\n \"name\": \"same1rg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same2rg\",\r\n \"name\": \"same2rg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same2rgg\",\r\n \"name\": \"same2rgg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklinuxtest01\",\r\n \"name\": \"sdklinuxtest01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklusterrg\",\r\n \"name\": \"sdklusterrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestkeyvaultrg\",\r\n \"name\": \"sdktestkeyvaultrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestrg2\",\r\n \"name\": \"sdktestrg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/SecureBaseImage\",\r\n \"name\": \"SecureBaseImage\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfrpkeyvaultrg1\",\r\n \"name\": \"sfrpkeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sftestkeyvaultrg\",\r\n \"name\": \"sftestkeyvaultrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sftestkkrg1\",\r\n \"name\": \"sftestkkrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1\",\r\n \"name\": \"testCreaterg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1\",\r\n \"name\": \"TestRG1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testrg111\",\r\n \"name\": \"testrg111\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testsdkdnetrestrg\",\r\n \"name\": \"testsdkdnetrestrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/VmExtnAppInsightTest\",\r\n \"name\": \"VmExtnAppInsightTest\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161115-012828172-v2\",\r\n \"name\": \"wftsvc-bm-20161115-012828172-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161116-012248545-v2\",\r\n \"name\": \"wftsvc-bm-20161116-012248545-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161117-013025621-v2\",\r\n \"name\": \"wftsvc-bm-20161117-013025621-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161118-162552118-v2\",\r\n \"name\": \"wftsvc-bm-20161118-162552118-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161119-020853683-v2\",\r\n \"name\": \"wftsvc-bm-20161119-020853683-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161120-015112327-v2\",\r\n \"name\": \"wftsvc-bm-20161120-015112327-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161121-013411054-v2\",\r\n \"name\": \"wftsvc-bm-20161121-013411054-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161122-014033729-v2\",\r\n \"name\": \"wftsvc-bm-20161122-014033729-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161123-020328423-v2\",\r\n \"name\": \"wftsvc-bm-20161123-020328423-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161124-013118943-v2\",\r\n \"name\": \"wftsvc-bm-20161124-013118943-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161125-012512715-v2\",\r\n \"name\": \"wftsvc-bm-20161125-012512715-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161126-012537693-v2\",\r\n \"name\": \"wftsvc-bm-20161126-012537693-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161127-012554430-v2\",\r\n \"name\": \"wftsvc-bm-20161127-012554430-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161128-012517911-v2\",\r\n \"name\": \"wftsvc-bm-20161128-012517911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161129-012602111-v2\",\r\n \"name\": \"wftsvc-bm-20161129-012602111-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161130-022145798-v2\",\r\n \"name\": \"wftsvc-bm-20161130-022145798-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161201-014317317-v2\",\r\n \"name\": \"wftsvc-bm-20161201-014317317-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161202-012812276-v2\",\r\n \"name\": \"wftsvc-bm-20161202-012812276-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161203-012713277-v2\",\r\n \"name\": \"wftsvc-bm-20161203-012713277-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161206-025602238-v2\",\r\n \"name\": \"wftsvc-bm-20161206-025602238-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161207-012657615-v2\",\r\n \"name\": \"wftsvc-bm-20161207-012657615-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161208-024401245-v2\",\r\n \"name\": \"wftsvc-bm-20161208-024401245-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161209-012721060-v2\",\r\n \"name\": \"wftsvc-bm-20161209-012721060-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161210-012529259-v2\",\r\n \"name\": \"wftsvc-bm-20161210-012529259-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161211-012543460-v2\",\r\n \"name\": \"wftsvc-bm-20161211-012543460-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161212-012643580-v2\",\r\n \"name\": \"wftsvc-bm-20161212-012643580-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161213-135747390-v2\",\r\n \"name\": \"wftsvc-bm-20161213-135747390-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161214-020204911-v2\",\r\n \"name\": \"wftsvc-bm-20161214-020204911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161215-012912635-v2\",\r\n \"name\": \"wftsvc-bm-20161215-012912635-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161216-014118622-v2\",\r\n \"name\": \"wftsvc-bm-20161216-014118622-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161217-013027250-v2\",\r\n \"name\": \"wftsvc-bm-20161217-013027250-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161218-042923602-v2\",\r\n \"name\": \"wftsvc-bm-20161218-042923602-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161219-024910832-v2\",\r\n \"name\": \"wftsvc-bm-20161219-024910832-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161220-021526028-v2\",\r\n \"name\": \"wftsvc-bm-20161220-021526028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161221-014332493-v2\",\r\n \"name\": \"wftsvc-bm-20161221-014332493-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161222-190424958-v2\",\r\n \"name\": \"wftsvc-bm-20161222-190424958-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161223-020219887-v2\",\r\n \"name\": \"wftsvc-bm-20161223-020219887-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161224-012754028-v2\",\r\n \"name\": \"wftsvc-bm-20161224-012754028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161225-012413900-v2\",\r\n \"name\": \"wftsvc-bm-20161225-012413900-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161226-012537497-v2\",\r\n \"name\": \"wftsvc-bm-20161226-012537497-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161227-012619489-v2\",\r\n \"name\": \"wftsvc-bm-20161227-012619489-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161228-012627978-v2\",\r\n \"name\": \"wftsvc-bm-20161228-012627978-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161229-013147614-v2\",\r\n \"name\": \"wftsvc-bm-20161229-013147614-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161230-012714627-v2\",\r\n \"name\": \"wftsvc-bm-20161230-012714627-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-mwh-20161203-012707281-v2\",\r\n \"name\": \"wftsvc-mwh-20161203-012707281-v2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault1\",\r\n \"name\": \"wftsvcKeyVault1\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault2\",\r\n \"name\": \"wftsvcKeyVault2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault3\",\r\n \"name\": \"wftsvcKeyVault3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault4\",\r\n \"name\": \"wftsvcKeyVault4\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault5\",\r\n \"name\": \"wftsvcKeyVault5\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault6\",\r\n \"name\": \"wftsvcKeyVault6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVaultAM\",\r\n \"name\": \"wftsvcKeyVaultAM\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/xunlu-test-20170318-205509\",\r\n \"name\": \"xunlu-test-20170318-205509\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/xunlustore\",\r\n \"name\": \"xunlustore\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/xunlutest1703182056\",\r\n \"name\": \"xunlutest1703182056\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016snrg\",\r\n \"name\": \"zikaiwtest10122016snrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 14:51:26 GMT" + "Mon, 20 Mar 2017 15:24:10 GMT" ], "Pragma": [ "no-cache" @@ -38,16 +38,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14938" ], "x-ms-request-id": [ - "e46f0462-7cca-4517-b34d-73ceea4a440f" + "34842af2-2b18-4ff3-b2c6-cd76af699800" ], "x-ms-correlation-request-id": [ - "e46f0462-7cca-4517-b34d-73ceea4a440f" + "34842af2-2b18-4ff3-b2c6-cd76af699800" ], "x-ms-routing-request-id": [ - "WESTUS2:20170308T145127Z:e46f0462-7cca-4517-b34d-73ceea4a440f" + "WESTUS2:20170320T152410Z:34842af2-2b18-4ff3-b2c6-cd76af699800" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -56,13 +56,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg/resources?$filter=resourceType%20eq%20'Microsoft.ServiceFabric%2Fclusters'&api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FhYWFhYWFhYWFhYWFyZy9yZXNvdXJjZXM/JGZpbHRlcj1yZXNvdXJjZVR5cGUlMjBlcSUyMCdNaWNyb3NvZnQuU2VydmljZUZhYnJpYyUyRmNsdXN0ZXJzJyZhcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaym-test-20170318-194608/resources?$filter=resourceType%20eq%20'Microsoft.ServiceFabric%2Fclusters'&api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FiaGF5bS10ZXN0LTIwMTcwMzE4LTE5NDYwOC9yZXNvdXJjZXM/JGZpbHRlcj1yZXNvdXJjZVR5cGUlMjBlcSUyMCdNaWNyb3NvZnQuU2VydmljZUZhYnJpYyUyRmNsdXN0ZXJzJyZhcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c1f1a32-1319-4073-9a60-174c904fab7c" + "e1518a23-1c48-460e-9af2-99554f117ed4" ], "accept-language": [ "en-US" @@ -72,7 +72,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa\",\r\n \"name\": \"aaaaaaaaaaaaa\",\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaaaaaaaaaa\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +84,7 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 14:51:27 GMT" + "Mon, 20 Mar 2017 15:24:11 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +93,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14902" ], "x-ms-request-id": [ - "c0dcdfe0-950d-4801-b9ec-ef0994a2e126" + "aa04704b-fd50-43f5-b7e1-ca7e2f2b6564" ], "x-ms-correlation-request-id": [ - "c0dcdfe0-950d-4801-b9ec-ef0994a2e126" + "aa04704b-fd50-43f5-b7e1-ca7e2f2b6564" ], "x-ms-routing-request-id": [ - "WESTUS2:20170308T145128Z:c0dcdfe0-950d-4801-b9ec-ef0994a2e126" + "WESTUS2:20170320T152411Z:aa04704b-fd50-43f5-b7e1-ca7e2f2b6564" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,17 +111,78 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzL2FhYWFhYWFhYWFhYWFyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnM/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703100151/resources?$filter=resourceType%20eq%20'Microsoft.ServiceFabric%2Fclusters'&api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FiaGF5bXRlc3QxNzAzMTAwMTUxL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TZXJ2aWNlRmFicmljJTJGY2x1c3RlcnMnJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "f7c85e99-1ace-438d-9b33-c8d1c8ece1ef" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703100151/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703100151\",\r\n \"name\": \"abhaymtest1703100151\",\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703100151\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 20 Mar 2017 15:24:12 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14972" + ], + "x-ms-request-id": [ + "f7c097c4-0c80-4e5a-b3a9-fd64d77c63ec" + ], + "x-ms-correlation-request-id": [ + "f7c097c4-0c80-4e5a-b3a9-fd64d77c63ec" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170320T152413Z:f7c097c4-0c80-4e5a-b3a9-fd64d77c63ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703100151/providers/Microsoft.ServiceFabric/clusters?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzL2FiaGF5bXRlc3QxNzAzMTAwMTUxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9jbHVzdGVycz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d34337d-5261-454c-bd2c-a7a755a4a398" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa\",\r\n \"name\": \"aaaaaaaaaaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaaaaaaaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636244362547166623\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaaaaaaaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"8888\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaaaaaaaaaa6877\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703100151/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703100151\",\r\n \"name\": \"abhaymtest1703100151\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703100151\"\r\n },\r\n \"etag\": \"W/\\\"636247075411015809\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"89b0771c-c0d5-4a85-a9fb-c885b40ab838\",\r\n \"clusterCodeVersion\": \"5.5.201.0\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"http://abhaymtest1703100151.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/89b0771c-c0d5-4a85-a9fb-c885b40ab838\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"qnp4zdsvldwko2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://qnp4zdsvldwko2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://qnp4zdsvldwko2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://qnp4zdsvldwko2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -133,7 +194,7 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 14:51:28 GMT" + "Mon, 20 Mar 2017 15:24:12 GMT" ], "Pragma": [ "no-cache" @@ -155,16 +216,16 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14919" + "14979" ], "x-ms-request-id": [ - "7f454f2a-9d18-4a2f-a259-2cd787590302" + "2ff30af4-12db-4107-b5ae-71dec45b2d56" ], "x-ms-correlation-request-id": [ - "7f454f2a-9d18-4a2f-a259-2cd787590302" + "2ff30af4-12db-4107-b5ae-71dec45b2d56" ], "x-ms-routing-request-id": [ - "WESTUS2:20170308T145129Z:7f454f2a-9d18-4a2f-a259-2cd787590302" + "WESTUS2:20170320T152413Z:2ff30af4-12db-4107-b5ae-71dec45b2d56" ] }, "StatusCode": 200 diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestUpdateClusterResource/TestUpdate.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestUpdateClusterResource/TestUpdate.json index 1c93d055b225..e0dce0d52c03 100644 --- a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestUpdateClusterResource/TestUpdate.json +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestUpdateClusterResource/TestUpdate.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5852e6e9-d6c1-4d82-97d1-ebb3f671d403" + "c66b5df9-5a68-4212-98d8-6af84255f965" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg\",\r\n \"name\": \"aaaaaaaaaaaaarg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1702250539\",\r\n \"name\": \"abhaymtest1702250539\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1702251613\",\r\n \"name\": \"abhaymtest1702251613\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703030726\",\r\n \"name\": \"abhaymtest1703030726\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703061931\",\r\n \"name\": \"abhaymtest1703061931\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703062131\",\r\n \"name\": \"abhaymtest1703062131\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703062345\",\r\n \"name\": \"abhaymtest1703062345\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703072008\",\r\n \"name\": \"abhaymtest1703072008\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703072343\",\r\n \"name\": \"abhaymtest1703072343\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayreverseproxy02\",\r\n \"name\": \"abhayreverseproxy02\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest01\",\r\n \"name\": \"abhaytest01\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest02\",\r\n \"name\": \"abhaytest02\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest04\",\r\n \"name\": \"abhaytest04\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayvm02\",\r\n \"name\": \"abhayvm02\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhayvm03\",\r\n \"name\": \"abhayvm03\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/anmolprvbuild03\",\r\n \"name\": \"anmolprvbuild03\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/bztest-rg\",\r\n \"name\": \"bztest-rg\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/Default-ServiceBus-9653\",\r\n \"name\": \"Default-ServiceBus-9653\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/deployertest\",\r\n \"name\": \"deployertest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/dotnetsdkrg\",\r\n \"name\": \"dotnetsdkrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/nsgtest03\",\r\n \"name\": \"nsgtest03\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/nsgtest05\",\r\n \"name\": \"nsgtest05\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklinuxtest01\",\r\n \"name\": \"sdklinuxtest01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestrg2\",\r\n \"name\": \"sdktestrg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/SecureBaseImage\",\r\n \"name\": \"SecureBaseImage\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg\",\r\n \"name\": \"testCreaterg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1\",\r\n \"name\": \"testCreaterg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg\",\r\n \"name\": \"testDeleterg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testsdkdnetrestrg\",\r\n \"name\": \"testsdkdnetrestrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-202955140-v2\",\r\n \"name\": \"wftsvc-bm-20161024-202955140-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-210350686-v2\",\r\n \"name\": \"wftsvc-bm-20161024-210350686-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161024-210948818-v2\",\r\n \"name\": \"wftsvc-bm-20161024-210948818-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161025-012157409-v2\",\r\n \"name\": \"wftsvc-bm-20161025-012157409-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161026-012217543-v2\",\r\n \"name\": \"wftsvc-bm-20161026-012217543-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161028-014354355-v2\",\r\n \"name\": \"wftsvc-bm-20161028-014354355-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161029-012553441-v2\",\r\n \"name\": \"wftsvc-bm-20161029-012553441-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161030-012137041-v2\",\r\n \"name\": \"wftsvc-bm-20161030-012137041-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161031-012217322-v2\",\r\n \"name\": \"wftsvc-bm-20161031-012217322-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161101-012812361-v2\",\r\n \"name\": \"wftsvc-bm-20161101-012812361-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161102-044018564-v2\",\r\n \"name\": \"wftsvc-bm-20161102-044018564-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161115-012828172-v2\",\r\n \"name\": \"wftsvc-bm-20161115-012828172-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161116-012248545-v2\",\r\n \"name\": \"wftsvc-bm-20161116-012248545-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161117-013025621-v2\",\r\n \"name\": \"wftsvc-bm-20161117-013025621-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161118-162552118-v2\",\r\n \"name\": \"wftsvc-bm-20161118-162552118-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161119-020853683-v2\",\r\n \"name\": \"wftsvc-bm-20161119-020853683-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161120-015112327-v2\",\r\n \"name\": \"wftsvc-bm-20161120-015112327-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161121-013411054-v2\",\r\n \"name\": \"wftsvc-bm-20161121-013411054-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161122-014033729-v2\",\r\n \"name\": \"wftsvc-bm-20161122-014033729-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161123-020328423-v2\",\r\n \"name\": \"wftsvc-bm-20161123-020328423-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161124-013118943-v2\",\r\n \"name\": \"wftsvc-bm-20161124-013118943-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161125-012512715-v2\",\r\n \"name\": \"wftsvc-bm-20161125-012512715-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161126-012537693-v2\",\r\n \"name\": \"wftsvc-bm-20161126-012537693-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161127-012554430-v2\",\r\n \"name\": \"wftsvc-bm-20161127-012554430-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161128-012517911-v2\",\r\n \"name\": \"wftsvc-bm-20161128-012517911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161129-012602111-v2\",\r\n \"name\": \"wftsvc-bm-20161129-012602111-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161130-022145798-v2\",\r\n \"name\": \"wftsvc-bm-20161130-022145798-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161201-014317317-v2\",\r\n \"name\": \"wftsvc-bm-20161201-014317317-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161202-012812276-v2\",\r\n \"name\": \"wftsvc-bm-20161202-012812276-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161203-012713277-v2\",\r\n \"name\": \"wftsvc-bm-20161203-012713277-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161206-025602238-v2\",\r\n \"name\": \"wftsvc-bm-20161206-025602238-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161207-012657615-v2\",\r\n \"name\": \"wftsvc-bm-20161207-012657615-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161208-024401245-v2\",\r\n \"name\": \"wftsvc-bm-20161208-024401245-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161209-012721060-v2\",\r\n \"name\": \"wftsvc-bm-20161209-012721060-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161210-012529259-v2\",\r\n \"name\": \"wftsvc-bm-20161210-012529259-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161211-012543460-v2\",\r\n \"name\": \"wftsvc-bm-20161211-012543460-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161212-012643580-v2\",\r\n \"name\": \"wftsvc-bm-20161212-012643580-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161213-135747390-v2\",\r\n \"name\": \"wftsvc-bm-20161213-135747390-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161214-020204911-v2\",\r\n \"name\": \"wftsvc-bm-20161214-020204911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161215-012912635-v2\",\r\n \"name\": \"wftsvc-bm-20161215-012912635-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161216-014118622-v2\",\r\n \"name\": \"wftsvc-bm-20161216-014118622-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161217-013027250-v2\",\r\n \"name\": \"wftsvc-bm-20161217-013027250-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161218-042923602-v2\",\r\n \"name\": \"wftsvc-bm-20161218-042923602-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161219-024910832-v2\",\r\n \"name\": \"wftsvc-bm-20161219-024910832-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161220-021526028-v2\",\r\n \"name\": \"wftsvc-bm-20161220-021526028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161221-014332493-v2\",\r\n \"name\": \"wftsvc-bm-20161221-014332493-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161222-190424958-v2\",\r\n \"name\": \"wftsvc-bm-20161222-190424958-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161223-020219887-v2\",\r\n \"name\": \"wftsvc-bm-20161223-020219887-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161224-012754028-v2\",\r\n \"name\": \"wftsvc-bm-20161224-012754028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161225-012413900-v2\",\r\n \"name\": \"wftsvc-bm-20161225-012413900-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161226-012537497-v2\",\r\n \"name\": \"wftsvc-bm-20161226-012537497-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161227-012619489-v2\",\r\n \"name\": \"wftsvc-bm-20161227-012619489-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161228-012627978-v2\",\r\n \"name\": \"wftsvc-bm-20161228-012627978-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161229-013147614-v2\",\r\n \"name\": \"wftsvc-bm-20161229-013147614-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161230-012714627-v2\",\r\n \"name\": \"wftsvc-bm-20161230-012714627-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-ma-20161202-222619667-v2\",\r\n \"name\": \"wftsvc-ma-20161202-222619667-v2\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-ma-20161216-222607320-v2\",\r\n \"name\": \"wftsvc-ma-20161216-222607320-v2\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-mwh-20161203-012707281-v2\",\r\n \"name\": \"wftsvc-mwh-20161203-012707281-v2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-sn-20161129-211521656-v2\",\r\n \"name\": \"wftsvc-sn-20161129-211521656-v2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-sn-20161129-211525592-v2\",\r\n \"name\": \"wftsvc-sn-20161129-211525592-v2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yq-20161201-012845413-v2\",\r\n \"name\": \"wftsvc-yq-20161201-012845413-v2\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161026-012057297-v2\",\r\n \"name\": \"wftsvc-yt-20161026-012057297-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161210-012552629-v2\",\r\n \"name\": \"wftsvc-yt-20161210-012552629-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-yt-20161221-012942018-v2\",\r\n \"name\": \"wftsvc-yt-20161221-012942018-v2\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault1\",\r\n \"name\": \"wftsvcKeyVault1\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault2\",\r\n \"name\": \"wftsvcKeyVault2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault3\",\r\n \"name\": \"wftsvcKeyVault3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault4\",\r\n \"name\": \"wftsvcKeyVault4\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault5\",\r\n \"name\": \"wftsvcKeyVault5\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault6\",\r\n \"name\": \"wftsvcKeyVault6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVaultAM\",\r\n \"name\": \"wftsvcKeyVaultAM\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016bnrg\",\r\n \"name\": \"zikaiwtest10122016bnrg\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016chrg\",\r\n \"name\": \"zikaiwtest10122016chrg\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016dmrg\",\r\n \"name\": \"zikaiwtest10122016dmrg\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016osrg\",\r\n \"name\": \"zikaiwtest10122016osrg\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016snrg\",\r\n \"name\": \"zikaiwtest10122016snrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016tyrg\",\r\n \"name\": \"zikaiwtest10122016tyrg\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaarg\",\r\n \"name\": \"aaaaarg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaym-test-20170318-194608\",\r\n \"name\": \"abhaym-test-20170318-194608\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703100151\",\r\n \"name\": \"abhaymtest1703100151\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703131739\",\r\n \"name\": \"abhaymtest1703131739\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703140846\",\r\n \"name\": \"abhaymtest1703140846\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703142040\",\r\n \"name\": \"abhaymtest1703142040\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703152214\",\r\n \"name\": \"abhaymtest1703152214\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703160653\",\r\n \"name\": \"abhaymtest1703160653\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703162329\",\r\n \"name\": \"abhaymtest1703162329\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703162340\",\r\n \"name\": \"abhaymtest1703162340\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703170025\",\r\n \"name\": \"abhaymtest1703170025\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703170037\",\r\n \"name\": \"abhaymtest1703170037\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182049\",\r\n \"name\": \"abhaymtest1703182049\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182157\",\r\n \"name\": \"abhaymtest1703182157\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182207\",\r\n \"name\": \"abhaymtest1703182207\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest06\",\r\n \"name\": \"abhaytest06\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/Default-ServiceBus-9653\",\r\n \"name\": \"Default-ServiceBus-9653\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/deployertest\",\r\n \"name\": \"deployertest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykeyvaultrg1\",\r\n \"name\": \"mykeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newkeyvaultrg1\",\r\n \"name\": \"newkeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newkeyvaultrg3\",\r\n \"name\": \"newkeyvaultrg3\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same1rg\",\r\n \"name\": \"same1rg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same2rg\",\r\n \"name\": \"same2rg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same2rgg\",\r\n \"name\": \"same2rgg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklinuxtest01\",\r\n \"name\": \"sdklinuxtest01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklusterrg\",\r\n \"name\": \"sdklusterrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestkeyvaultrg\",\r\n \"name\": \"sdktestkeyvaultrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestrg2\",\r\n \"name\": \"sdktestrg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/SecureBaseImage\",\r\n \"name\": \"SecureBaseImage\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfrpkeyvaultrg1\",\r\n \"name\": \"sfrpkeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sftestkeyvaultrg\",\r\n \"name\": \"sftestkeyvaultrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sftestkkrg1\",\r\n \"name\": \"sftestkkrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1\",\r\n \"name\": \"testCreaterg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1\",\r\n \"name\": \"TestRG1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testrg111\",\r\n \"name\": \"testrg111\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testsdkdnetrestrg\",\r\n \"name\": \"testsdkdnetrestrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/VmExtnAppInsightTest\",\r\n \"name\": \"VmExtnAppInsightTest\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161115-012828172-v2\",\r\n \"name\": \"wftsvc-bm-20161115-012828172-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161116-012248545-v2\",\r\n \"name\": \"wftsvc-bm-20161116-012248545-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161117-013025621-v2\",\r\n \"name\": \"wftsvc-bm-20161117-013025621-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161118-162552118-v2\",\r\n \"name\": \"wftsvc-bm-20161118-162552118-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161119-020853683-v2\",\r\n \"name\": \"wftsvc-bm-20161119-020853683-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161120-015112327-v2\",\r\n \"name\": \"wftsvc-bm-20161120-015112327-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161121-013411054-v2\",\r\n \"name\": \"wftsvc-bm-20161121-013411054-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161122-014033729-v2\",\r\n \"name\": \"wftsvc-bm-20161122-014033729-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161123-020328423-v2\",\r\n \"name\": \"wftsvc-bm-20161123-020328423-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161124-013118943-v2\",\r\n \"name\": \"wftsvc-bm-20161124-013118943-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161125-012512715-v2\",\r\n \"name\": \"wftsvc-bm-20161125-012512715-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161126-012537693-v2\",\r\n \"name\": \"wftsvc-bm-20161126-012537693-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161127-012554430-v2\",\r\n \"name\": \"wftsvc-bm-20161127-012554430-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161128-012517911-v2\",\r\n \"name\": \"wftsvc-bm-20161128-012517911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161129-012602111-v2\",\r\n \"name\": \"wftsvc-bm-20161129-012602111-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161130-022145798-v2\",\r\n \"name\": \"wftsvc-bm-20161130-022145798-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161201-014317317-v2\",\r\n \"name\": \"wftsvc-bm-20161201-014317317-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161202-012812276-v2\",\r\n \"name\": \"wftsvc-bm-20161202-012812276-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161203-012713277-v2\",\r\n \"name\": \"wftsvc-bm-20161203-012713277-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161206-025602238-v2\",\r\n \"name\": \"wftsvc-bm-20161206-025602238-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161207-012657615-v2\",\r\n \"name\": \"wftsvc-bm-20161207-012657615-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161208-024401245-v2\",\r\n \"name\": \"wftsvc-bm-20161208-024401245-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161209-012721060-v2\",\r\n \"name\": \"wftsvc-bm-20161209-012721060-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161210-012529259-v2\",\r\n \"name\": \"wftsvc-bm-20161210-012529259-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161211-012543460-v2\",\r\n \"name\": \"wftsvc-bm-20161211-012543460-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161212-012643580-v2\",\r\n \"name\": \"wftsvc-bm-20161212-012643580-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161213-135747390-v2\",\r\n \"name\": \"wftsvc-bm-20161213-135747390-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161214-020204911-v2\",\r\n \"name\": \"wftsvc-bm-20161214-020204911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161215-012912635-v2\",\r\n \"name\": \"wftsvc-bm-20161215-012912635-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161216-014118622-v2\",\r\n \"name\": \"wftsvc-bm-20161216-014118622-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161217-013027250-v2\",\r\n \"name\": \"wftsvc-bm-20161217-013027250-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161218-042923602-v2\",\r\n \"name\": \"wftsvc-bm-20161218-042923602-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161219-024910832-v2\",\r\n \"name\": \"wftsvc-bm-20161219-024910832-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161220-021526028-v2\",\r\n \"name\": \"wftsvc-bm-20161220-021526028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161221-014332493-v2\",\r\n \"name\": \"wftsvc-bm-20161221-014332493-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161222-190424958-v2\",\r\n \"name\": \"wftsvc-bm-20161222-190424958-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161223-020219887-v2\",\r\n \"name\": \"wftsvc-bm-20161223-020219887-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161224-012754028-v2\",\r\n \"name\": \"wftsvc-bm-20161224-012754028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161225-012413900-v2\",\r\n \"name\": \"wftsvc-bm-20161225-012413900-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161226-012537497-v2\",\r\n \"name\": \"wftsvc-bm-20161226-012537497-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161227-012619489-v2\",\r\n \"name\": \"wftsvc-bm-20161227-012619489-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161228-012627978-v2\",\r\n \"name\": \"wftsvc-bm-20161228-012627978-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161229-013147614-v2\",\r\n \"name\": \"wftsvc-bm-20161229-013147614-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161230-012714627-v2\",\r\n \"name\": \"wftsvc-bm-20161230-012714627-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-mwh-20161203-012707281-v2\",\r\n \"name\": \"wftsvc-mwh-20161203-012707281-v2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault1\",\r\n \"name\": \"wftsvcKeyVault1\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault2\",\r\n \"name\": \"wftsvcKeyVault2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault3\",\r\n \"name\": \"wftsvcKeyVault3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault4\",\r\n \"name\": \"wftsvcKeyVault4\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault5\",\r\n \"name\": \"wftsvcKeyVault5\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault6\",\r\n \"name\": \"wftsvcKeyVault6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVaultAM\",\r\n \"name\": \"wftsvcKeyVaultAM\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/xunlu-test-20170318-205509\",\r\n \"name\": \"xunlu-test-20170318-205509\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/xunlustore\",\r\n \"name\": \"xunlustore\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/xunlutest1703182056\",\r\n \"name\": \"xunlutest1703182056\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016snrg\",\r\n \"name\": \"zikaiwtest10122016snrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 14:51:42 GMT" + "Mon, 20 Mar 2017 16:51:12 GMT" ], "Pragma": [ "no-cache" @@ -38,16 +38,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14948" + "14994" ], "x-ms-request-id": [ - "e76da4ad-49c2-4c64-8a19-92fcd08e1f6a" + "be79648e-bd6e-4327-b53b-df6da9b7c90d" ], "x-ms-correlation-request-id": [ - "e76da4ad-49c2-4c64-8a19-92fcd08e1f6a" + "be79648e-bd6e-4327-b53b-df6da9b7c90d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170308T145142Z:e76da4ad-49c2-4c64-8a19-92fcd08e1f6a" + "CENTRALUS:20170320T165113Z:be79648e-bd6e-4327-b53b-df6da9b7c90d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -56,13 +56,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg/resources?$filter=resourceType%20eq%20'Microsoft.ServiceFabric%2Fclusters'&api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FhYWFhYWFhYWFhYWFyZy9yZXNvdXJjZXM/JGZpbHRlcj1yZXNvdXJjZVR5cGUlMjBlcSUyMCdNaWNyb3NvZnQuU2VydmljZUZhYnJpYyUyRmNsdXN0ZXJzJyZhcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaarg/resources?$filter=resourceType%20eq%20'Microsoft.ServiceFabric%2Fclusters'&api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FhYWFhcmcvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMlMkZjbHVzdGVycycmYXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ab4ca4d-4759-40c7-9496-bd4921865161" + "94d67f02-1e93-4198-9d95-e3e48f98f278" ], "accept-language": [ "en-US" @@ -72,7 +72,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa\",\r\n \"name\": \"aaaaaaaaaaaaa\",\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaaaaaaaaaa\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaa\",\r\n \"name\": \"aaaaa\",\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaa\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +84,7 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 14:51:44 GMT" + "Mon, 20 Mar 2017 16:51:15 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +93,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14918" + "14981" ], "x-ms-request-id": [ - "f3d6582c-be6c-4b11-973d-dcb8baefa0de" + "fb75a300-441e-4579-8898-fddfddfd3709" ], "x-ms-correlation-request-id": [ - "f3d6582c-be6c-4b11-973d-dcb8baefa0de" + "fb75a300-441e-4579-8898-fddfddfd3709" ], "x-ms-routing-request-id": [ - "WESTUS2:20170308T145144Z:f3d6582c-be6c-4b11-973d-dcb8baefa0de" + "CENTRALUS:20170320T165115Z:fb75a300-441e-4579-8898-fddfddfd3709" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,17 +111,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FhYWFhYWFhYWFhYWFyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvYWFhYWFhYWFhYWFhYT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaa?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FhYWFhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL2FhYWFhP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "63df2731-7c17-410b-9fd2-8ee78f56fc14" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa\",\r\n \"name\": \"aaaaaaaaaaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaaaaaaaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636244362547166623\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaaaaaaaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"8888\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:05\",\r\n \"healthCheckStableDuration\": \"00:00:05\",\r\n \"healthCheckRetryTimeout\": \"00:00:05\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaaaaaaaaaa6877\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaa\",\r\n \"name\": \"aaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636256214302176419\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaa6039\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaa6039.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaa6039.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaa6039.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -133,7 +139,7 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 14:51:45 GMT" + "Mon, 20 Mar 2017 16:51:15 GMT" ], "Pragma": [ "no-cache" @@ -155,32 +161,38 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14992" ], "x-ms-request-id": [ - "5d5838b1-1003-4db7-be9c-d65fa1aa8806" + "63eb3d5b-2895-4859-8173-3044cf046739" ], "x-ms-correlation-request-id": [ - "5d5838b1-1003-4db7-be9c-d65fa1aa8806" + "63eb3d5b-2895-4859-8173-3044cf046739" ], "x-ms-routing-request-id": [ - "WESTUS2:20170308T145145Z:5d5838b1-1003-4db7-be9c-d65fa1aa8806" + "CENTRALUS:20170320T165116Z:63eb3d5b-2895-4859-8173-3044cf046739" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FhYWFhYWFhYWFhYWFyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvYWFhYWFhYWFhYWFhYT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaa?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FhYWFhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL2FhYWFhP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7eb4561a-a1a7-45b5-baa6-ef330fd8efd6" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa\",\r\n \"name\": \"aaaaaaaaaaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaaaaaaaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636244362547166624\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaaaaaaaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"8888\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaaaaaaaaaa6877\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaa\",\r\n \"name\": \"aaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636256214302176420\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaa6039\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaa6039.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaa6039.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaa6039.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -192,7 +204,7 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 14:51:45 GMT" + "Mon, 20 Mar 2017 16:51:16 GMT" ], "Pragma": [ "no-cache" @@ -214,25 +226,25 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "14991" ], "x-ms-request-id": [ - "93bd1285-4f44-4466-b7d5-c64fd46458bb" + "589e53a6-2aab-40ef-a9af-a0ce0fe6fe02" ], "x-ms-correlation-request-id": [ - "93bd1285-4f44-4466-b7d5-c64fd46458bb" + "589e53a6-2aab-40ef-a9af-a0ce0fe6fe02" ], "x-ms-routing-request-id": [ - "WESTUS2:20170308T145145Z:93bd1285-4f44-4466-b7d5-c64fd46458bb" + "CENTRALUS:20170320T165117Z:589e53a6-2aab-40ef-a9af-a0ce0fe6fe02" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FhYWFhYWFhYWFhYWFyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvYWFhYWFhYWFhYWFhYT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaa?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FhYWFhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL2FhYWFhP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"8888\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -240,12 +252,18 @@ "Content-Length": [ "247" ], + "x-ms-client-request-id": [ + "121a84f1-bc6e-46c0-8991-2d12be2028f2" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.24410.01", "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaaaaaaaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaaaaaaaaaa\",\r\n \"name\": \"aaaaaaaaaaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaaaaaaaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636244362547166624\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaaaaaaaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/5697dfdf-11db-4d22-9225-37377c1af1de\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"8888\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaaaaaaaaaa6877\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaaaaaaaaaa6877.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaa\",\r\n \"name\": \"aaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636256214302176420\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaa6039\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaa6039.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaa6039.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaa6039.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -257,7 +275,7 @@ "no-cache" ], "Date": [ - "Wed, 08 Mar 2017 14:51:45 GMT" + "Mon, 20 Mar 2017 16:51:16 GMT" ], "Pragma": [ "no-cache" @@ -281,13 +299,13 @@ "1199" ], "x-ms-request-id": [ - "a6325cda-7f23-4c50-9936-12d9c18fe75c" + "dacf8d09-3a24-405f-891b-ff1f407153bb" ], "x-ms-correlation-request-id": [ - "a6325cda-7f23-4c50-9936-12d9c18fe75c" + "dacf8d09-3a24-405f-891b-ff1f407153bb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170308T145145Z:a6325cda-7f23-4c50-9936-12d9c18fe75c" + "CENTRALUS:20170320T165116Z:dacf8d09-3a24-405f-891b-ff1f407153bb" ] }, "StatusCode": 200 diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/ServiceFabricTestBase.cs b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/ServiceFabricTestBase.cs index b47593f3ca43..908af8995216 100644 --- a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/ServiceFabricTestBase.cs +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/ServiceFabricTestBase.cs @@ -56,65 +56,51 @@ protected IPage GetAllServiceFabricClusterResources( protected Cluster CreateACluster( ResourceManagementClient resouceClient, ServiceFabricClient serviceFabricClient, - string rg, - string rgLocation, + string rg, + string rgLocation, string clusterName) { var clusterId = string.Format( - clusterIdFormat, + clusterIdFormat, resouceClient.SubscriptionId, rg, clusterName); var newCluster = new Cluster( rgLocation, - clusterId, - clusterName, - "Microsoft.ServiceFabric/clusters", - null, - null, - Guid.NewGuid().ToString(), - "Ready", - "https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8d566293-3508-4d62-ba7b-056fa710c3c9", - null, - null, "Silver", "Automatic", - null, - null, - null, - null, - "http://sdktest.southcentralus.cloudapp.azure.com:19080", - new List() + "http://testCluster.southcentralus.cloudapp.azure.com:19080", + new List() { - new NodeTypeDescription() - { - ApplicationPorts = new EndpointRangeDescription() - { - StartPort = 1234, - EndPort = 4321 - }, - DurabilityLevel = "Bronze", - EphemeralPorts = new EndpointRangeDescription() - { - StartPort = 3456, - EndPort = 6543 - }, - IsPrimary = true, - Name = "n1", - ClientConnectionEndpointPort = 19000, - Capacities =null, - HttpGatewayEndpointPort = 19080, - PlacementProperties = null, - VmInstanceCount = 5, - ReverseProxyEndpointPort = null - } - } - , - "Succeeded", - "Windows", - null, - null) + new NodeTypeDescription() + { + ApplicationPorts = new EndpointRangeDescription() + { + StartPort = 1234, + EndPort = 4321 + }, + DurabilityLevel = "Bronze", + EphemeralPorts = new EndpointRangeDescription() + { + StartPort = 3456, + EndPort = 6543 + }, + IsPrimary = true, + Name = "n1", + ClientConnectionEndpointPort = 19000, + Capacities =null, + HttpGatewayEndpointPort = 19080, + PlacementProperties = null, + VmInstanceCount = 5, + ReverseProxyEndpointPort = null + } + }, + "Windows", + clusterId, + "testCluster", + "Microsoft.ServiceFabric/clusters" + ) { }; @@ -123,7 +109,9 @@ protected Cluster CreateACluster( new ResourceGroup(rgLocation)); var cluster = serviceFabricClient.Clusters.Create(rg, clusterName, newCluster); + Assert.NotNull(cluster); + cluster = serviceFabricClient.Clusters.Get(rg, clusterName); Assert.NotNull(cluster); return cluster; } diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestCreateClusterResource.cs b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestCreateClusterResource.cs index d65097a221d4..b14a3f171096 100644 --- a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestCreateClusterResource.cs +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestCreateClusterResource.cs @@ -23,7 +23,7 @@ public void TestCreate() { var serviceFabricClient = GetServiceFabricClient(context); var resouceClient = GetResourceManagementClient(context); - var resouceGroupName = "testCreaterg1"; + var resouceGroupName = "TestRG1"; var location = "South Central US"; var clusterName = "testCreateCluster2"; diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestListClusterResource.cs b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestListClusterResource.cs index e83e2775f1f3..d535bfdce921 100644 --- a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestListClusterResource.cs +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestListClusterResource.cs @@ -20,8 +20,8 @@ public void TestList() var clusters = serviceFabricClient.Clusters.List(); Assert.NotNull(clusters); - Assert.NotNull(clusters.Value); - var subscriptions = clusters.Value.GroupBy(c => c.Id).Select(r => r.Key.Split('/')[2]).Distinct(); + Assert.NotNull(clusters); + var subscriptions = clusters.GroupBy(c => c.Id).Select(r => r.Key.Split('/')[2]).Distinct(); Assert.Equal(subscriptions.Count(), 1); } } @@ -43,7 +43,7 @@ public void TestListByResourceGroup() Assert.NotNull(clusters); var res1 = resources.Select(r => r.Name).OrderBy(r => r).ToList(); - var res2 = clusters.Value.Select( + var res2 = clusters.Select( c => c.Name).OrderBy(r => r).ToList(); Assert.True(res1.Count == res2.Count); diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestUpdateClusterResource.cs b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestUpdateClusterResource.cs index 2a2c97145159..e8583ff04218 100644 --- a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestUpdateClusterResource.cs +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestUpdateClusterResource.cs @@ -44,7 +44,7 @@ public void TestUpdate() new SettingsParameterDescription() { Name = "MaxOperationTimeout", - Value = "8888" + Value = "1000" } } } @@ -63,7 +63,7 @@ public void TestUpdate() parameter => parameter.Name == "MaxOperationTimeout").First(); - Assert.True(p.Value == "8888"); + Assert.True(p.Value == "1000"); break; } From b4078686c992f7f2307e31cb560cc008e56753bb Mon Sep 17 00:00:00 2001 From: Ching Chen Date: Mon, 20 Mar 2017 10:27:07 -0700 Subject: [PATCH 4/7] update test case --- .../TestDelete.json | 139 +++++++++++++----- 1 file changed, 102 insertions(+), 37 deletions(-) diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestDeleteClusterResource/TestDelete.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestDeleteClusterResource/TestDelete.json index 8f8d0d0c815b..f4b213e5e09f 100644 --- a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestDeleteClusterResource/TestDelete.json +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestDeleteClusterResource/TestDelete.json @@ -13,7 +13,7 @@ "38" ], "x-ms-client-request-id": [ - "f6893687-d45a-45fd-8356-628cc4fad148" + "0f7e9f3e-6350-4c0d-af6b-c93fb9eea396" ], "accept-language": [ "en-US" @@ -38,22 +38,22 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 15:23:17 GMT" + "Mon, 20 Mar 2017 17:24:51 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-request-id": [ - "e78c9f20-ba5a-48ac-9fa4-b3b30425008c" + "2a2cdad0-c27f-4a7c-b11f-6de04702b577" ], "x-ms-correlation-request-id": [ - "e78c9f20-ba5a-48ac-9fa4-b3b30425008c" + "2a2cdad0-c27f-4a7c-b11f-6de04702b577" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170320T152318Z:e78c9f20-ba5a-48ac-9fa4-b3b30425008c" + "WESTUS2:20170320T172452Z:2a2cdad0-c27f-4a7c-b11f-6de04702b577" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -74,7 +74,7 @@ "700" ], "x-ms-client-request-id": [ - "55b6147d-d180-4894-95f8-9de2fc9f0ebf" + "d7db1c43-254e-4df5-9e29-d1a99c00ebdf" ], "accept-language": [ "en-US" @@ -84,7 +84,7 @@ "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster\",\r\n \"name\": \"testDeleteCluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636256201975902695\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"d92e2257-fd8b-4258-81b3-1c809969ddc2\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/d92e2257-fd8b-4258-81b3-1c809969ddc2\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster\",\r\n \"name\": \"testDeleteCluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636256274925331960\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"0274194d-0899-4a6a-8206-7a02fcdff1c5\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0274194d-0899-4a6a-8206-7a02fcdff1c5\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -96,7 +96,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 15:23:19 GMT" + "Mon, 20 Mar 2017 17:24:54 GMT" ], "Pragma": [ "no-cache" @@ -117,16 +117,81 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" + ], + "x-ms-request-id": [ + "b1b6a511-3529-4531-aaf8-52496e052a51" + ], + "x-ms-correlation-request-id": [ + "b1b6a511-3529-4531-aaf8-52496e052a51" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170320T172454Z:b1b6a511-3529-4531-aaf8-52496e052a51" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3REZWxldGVyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvdGVzdERlbGV0ZUNsdXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "65d977eb-c7d6-41f1-af38-d2cfcdf557c9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + ] + }, + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster\",\r\n \"name\": \"testDeleteCluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636256274925331960\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"0274194d-0899-4a6a-8206-7a02fcdff1c5\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0274194d-0899-4a6a-8206-7a02fcdff1c5\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 20 Mar 2017 17:24:54 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14982" ], "x-ms-request-id": [ - "512feada-f92b-4754-91b5-94afb169e12e" + "e8f5abdd-e495-45b0-9fa8-a8afafb453e2" ], "x-ms-correlation-request-id": [ - "512feada-f92b-4754-91b5-94afb169e12e" + "e8f5abdd-e495-45b0-9fa8-a8afafb453e2" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170320T152320Z:512feada-f92b-4754-91b5-94afb169e12e" + "WESTUS2:20170320T172454Z:e8f5abdd-e495-45b0-9fa8-a8afafb453e2" ] }, "StatusCode": 200 @@ -138,7 +203,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b26c9371-54a0-48a9-b05e-a9a1c9309e0c" + "1f5b284f-e269-4db4-93e5-edcf0ea645e8" ], "accept-language": [ "en-US" @@ -148,7 +213,7 @@ "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster\",\r\n \"name\": \"testDeleteCluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636256201975902695\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"d92e2257-fd8b-4258-81b3-1c809969ddc2\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/d92e2257-fd8b-4258-81b3-1c809969ddc2\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster\",\r\n \"name\": \"testDeleteCluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636256274925331960\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"0274194d-0899-4a6a-8206-7a02fcdff1c5\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0274194d-0899-4a6a-8206-7a02fcdff1c5\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -160,7 +225,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 15:23:19 GMT" + "Mon, 20 Mar 2017 17:24:54 GMT" ], "Pragma": [ "no-cache" @@ -182,16 +247,16 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14981" ], "x-ms-request-id": [ - "d4d84718-d708-42b7-b2d3-f6dd60b7839e" + "d0ad5bf9-fd09-45a7-bd2a-1ab8e1261975" ], "x-ms-correlation-request-id": [ - "d4d84718-d708-42b7-b2d3-f6dd60b7839e" + "d0ad5bf9-fd09-45a7-bd2a-1ab8e1261975" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170320T152320Z:d4d84718-d708-42b7-b2d3-f6dd60b7839e" + "WESTUS2:20170320T172454Z:d0ad5bf9-fd09-45a7-bd2a-1ab8e1261975" ] }, "StatusCode": 200 @@ -203,7 +268,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02c4b2a2-8ef7-4895-b206-453cf6e7ac58" + "55bc2c90-9923-4d4d-a9df-737a50c7dd5b" ], "accept-language": [ "en-US" @@ -228,7 +293,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 15:23:20 GMT" + "Mon, 20 Mar 2017 17:24:55 GMT" ], "Pragma": [ "no-cache" @@ -237,13 +302,13 @@ "gateway" ], "x-ms-request-id": [ - "2cb7de02-8cd3-4eb0-8218-4712137aa527" + "fb28ed61-b2ad-4fc1-8362-1478ada74b82" ], "x-ms-correlation-request-id": [ - "2cb7de02-8cd3-4eb0-8218-4712137aa527" + "fb28ed61-b2ad-4fc1-8362-1478ada74b82" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170320T152321Z:2cb7de02-8cd3-4eb0-8218-4712137aa527" + "WESTUS2:20170320T172455Z:fb28ed61-b2ad-4fc1-8362-1478ada74b82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -258,7 +323,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68fb087d-10f4-4097-8bf4-d539dd0a6a1f" + "73d6bb40-a8ee-40f0-9ac2-fff8aabbfae0" ], "accept-language": [ "en-US" @@ -280,7 +345,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 15:23:20 GMT" + "Mon, 20 Mar 2017 17:24:55 GMT" ], "Pragma": [ "no-cache" @@ -295,16 +360,16 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-request-id": [ - "91e19071-c0fa-4716-a003-f402ae6ffcbf" + "13a3aeb1-7e04-463a-8acd-6f01627052fc" ], "x-ms-correlation-request-id": [ - "91e19071-c0fa-4716-a003-f402ae6ffcbf" + "13a3aeb1-7e04-463a-8acd-6f01627052fc" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170320T152321Z:91e19071-c0fa-4716-a003-f402ae6ffcbf" + "WESTUS2:20170320T172455Z:13a3aeb1-7e04-463a-8acd-6f01627052fc" ] }, "StatusCode": 200 @@ -316,7 +381,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fab4cfa1-a8f3-4777-9951-c2e7cd4af88f" + "2f1c6b6d-6102-4673-9f05-de95dd33fe60" ], "accept-language": [ "en-US" @@ -335,22 +400,22 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 15:23:21 GMT" + "Mon, 20 Mar 2017 17:24:55 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-request-id": [ - "20a97498-22a5-41c3-83df-0557ec78ece7" + "cf6ca5ba-c2f8-4c8d-92ac-9d251b63df7c" ], "x-ms-correlation-request-id": [ - "20a97498-22a5-41c3-83df-0557ec78ece7" + "cf6ca5ba-c2f8-4c8d-92ac-9d251b63df7c" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170320T152321Z:20a97498-22a5-41c3-83df-0557ec78ece7" + "WESTUS2:20170320T172455Z:cf6ca5ba-c2f8-4c8d-92ac-9d251b63df7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" From 14c302735f69bc115268cebdc7cdfc837be749ab Mon Sep 17 00:00:00 2001 From: Ching Chen Date: Sat, 1 Apr 2017 07:28:33 -0700 Subject: [PATCH 5/7] update with latest swagger file --- .../Generated/ClusterVersionsOperations.cs | 421 ++++++++++++++++++ .../ClusterVersionsOperationsExtensions.cs | 99 ++++ .../Generated/ClustersOperations.cs | 8 +- .../Generated/IClusterVersionsOperations.cs | 72 +++ ...t.cs => IServiceFabricManagementClient.cs} | 7 +- .../Models/ApplicationDeltaHealthPolicy.cs | 34 +- .../Models/ApplicationHealthPolicy.cs | 52 ++- .../Models/AvailableOperationDisplay.cs | 11 +- .../Generated/Models/AzureActiveDirectory.cs | 66 +++ .../Models/CertificateDescription.cs | 29 +- .../Models/ClientCertificateCommonName.cs | 29 +- .../Models/ClientCertificateThumbprint.cs | 33 +- .../Generated/Models/Cluster.cs | 176 +++++--- .../Models/ClusterCodeVersionsResult.cs | 95 ++++ .../Generated/Models/ClusterHealthPolicy.cs | 117 +++++ .../Models/ClusterUpdateParameters.cs | 139 ++++-- .../Models/ClusterUpgradeDeltaHealthPolicy.cs | 63 ++- .../Models/ClusterUpgradeHealthPolicy.cs | 60 --- .../Generated/Models/ClusterUpgradePolicy.cs | 102 ++++- .../Generated/Models/ClusterVersionDetails.cs | 26 +- .../Models/DiagnosticsStorageAccountConfig.cs | 61 ++- .../Models/EndpointRangeDescription.cs | 27 +- .../Generated/Models/ErrorModel.cs | 11 +- .../Generated/Models/ErrorModelError.cs | 11 +- .../Generated/Models/NodeTypeDescription.cs | 99 ++-- .../Generated/Models/OperationResult.cs | 13 +- .../Generated/Models/ProvisioningState.cs | 1 - .../Generated/Models/Resource.cs | 11 +- .../Models/ServiceTypeDeltaHealthPolicy.cs | 35 +- .../Models/ServiceTypeHealthPolicy.cs | 40 +- .../Models/SettingsParameterDescription.cs | 31 +- .../Models/SettingsSectionDescription.cs | 48 +- .../Generated/Operations.cs | 8 +- ...nt.cs => ServiceFabricManagementClient.cs} | 40 +- .../Properties/AssemblyInfo.cs | 4 +- .../project.json | 2 +- .../TestCreate.json | 88 ++-- .../TestDelete.json | 104 ++--- .../TestGet.json | 117 +++-- .../TestList.json | 18 +- .../TestListByResourceGroup.json | 105 ++--- .../TestList.json | 138 ++++++ .../TestUpdate.json | 72 +-- .../Tests/ServiceFabricTestBase.cs | 25 +- .../Tests/TestCreateClusterResource.cs | 4 +- .../Tests/TestDeleteClusterResource.cs | 2 +- .../Tests/TestListClusterVersions.cs | 36 ++ .../Tests/TestUpdateClusterResource.cs | 2 +- 48 files changed, 2236 insertions(+), 556 deletions(-) create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClusterVersionsOperations.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClusterVersionsOperationsExtensions.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IClusterVersionsOperations.cs rename src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/{IServiceFabricClient.cs => IServiceFabricManagementClient.cs} (90%) create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/AzureActiveDirectory.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterCodeVersionsResult.cs create mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterHealthPolicy.cs delete mode 100644 src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpgradeHealthPolicy.cs rename src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/{ServiceFabricClient.cs => ServiceFabricManagementClient.cs} (82%) create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterVersions/TestList.json create mode 100644 src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestListClusterVersions.cs diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClusterVersionsOperations.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClusterVersionsOperations.cs new file mode 100644 index 000000000000..74f22734e8c7 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClusterVersionsOperations.cs @@ -0,0 +1,421 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + 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; + + /// + /// ClusterVersionsOperations operations. + /// + internal partial class ClusterVersionsOperations : IServiceOperations, IClusterVersionsOperations + { + /// + /// Initializes a new instance of the ClusterVersionsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal ClusterVersionsOperations(ServiceFabricManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the ServiceFabricManagementClient + /// + public ServiceFabricManagementClient Client { get; private set; } + + /// + /// List cluster code versions by location + /// + /// + /// The location for the cluster code versions, this is different from cluster + /// location + /// + /// + /// Cluster operating system, the default means all. Possible values include: + /// 'Default', 'Windows', 'Linux' + /// + /// + /// 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 location, string environment, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "location"); + } + if (environment == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "environment"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("location", location); + tracingParameters.Add("environment", environment); + 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}/providers/Microsoft.ServiceFabric/locations/{location}/environments/{environment}/clusterVersions").ToString(); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + _url = _url.Replace("{environment}", System.Uri.EscapeDataString(environment)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// List cluster code versions by 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) + { + 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/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClusterVersionsOperationsExtensions.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClusterVersionsOperationsExtensions.cs new file mode 100644 index 000000000000..ddd408acfbeb --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClusterVersionsOperationsExtensions.cs @@ -0,0 +1,99 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for ClusterVersionsOperations. + /// + public static partial class ClusterVersionsOperationsExtensions + { + /// + /// List cluster code versions by location + /// + /// + /// The operations group for this extension method. + /// + /// + /// The location for the cluster code versions, this is different from cluster + /// location + /// + /// + /// Cluster operating system, the default means all. Possible values include: + /// 'Default', 'Windows', 'Linux' + /// + public static IPage List(this IClusterVersionsOperations operations, string location, string environment) + { + return operations.ListAsync(location, environment).GetAwaiter().GetResult(); + } + + /// + /// List cluster code versions by location + /// + /// + /// The operations group for this extension method. + /// + /// + /// The location for the cluster code versions, this is different from cluster + /// location + /// + /// + /// Cluster operating system, the default means all. Possible values include: + /// 'Default', 'Windows', 'Linux' + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this IClusterVersionsOperations operations, string location, string environment, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(location, environment, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List cluster code versions by location + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this IClusterVersionsOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// List cluster code versions by 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 IClusterVersionsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClustersOperations.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClustersOperations.cs index 930917fb9155..d5450c005270 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClustersOperations.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ClustersOperations.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Management.ServiceFabric /// /// ClustersOperations operations. /// - internal partial class ClustersOperations : IServiceOperations, IClustersOperations + internal partial class ClustersOperations : IServiceOperations, IClustersOperations { /// /// Initializes a new instance of the ClustersOperations class. @@ -32,7 +32,7 @@ internal partial class ClustersOperations : IServiceOperations /// Thrown when a required parameter is null /// - internal ClustersOperations(ServiceFabricClient client) + internal ClustersOperations(ServiceFabricManagementClient client) { if (client == null) { @@ -42,9 +42,9 @@ internal ClustersOperations(ServiceFabricClient client) } /// - /// Gets a reference to the ServiceFabricClient + /// Gets a reference to the ServiceFabricManagementClient /// - public ServiceFabricClient Client { get; private set; } + public ServiceFabricManagementClient Client { get; private set; } /// /// Update cluster configuration diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IClusterVersionsOperations.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IClusterVersionsOperations.cs new file mode 100644 index 000000000000..a6b485462597 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IClusterVersionsOperations.cs @@ -0,0 +1,72 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// ClusterVersionsOperations operations. + /// + public partial interface IClusterVersionsOperations + { + /// + /// List cluster code versions by location + /// + /// + /// The location for the cluster code versions, this is different from + /// cluster location + /// + /// + /// Cluster operating system, the default means all. Possible values + /// include: 'Default', 'Windows', 'Linux' + /// + /// + /// 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 location, string environment, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List cluster code versions by 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)); + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IServiceFabricClient.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IServiceFabricManagementClient.cs similarity index 90% rename from src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IServiceFabricClient.cs rename to src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IServiceFabricManagementClient.cs index 589bd23884ec..84afed505f60 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IServiceFabricClient.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/IServiceFabricManagementClient.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.Management.ServiceFabric /// /// - public partial interface IServiceFabricClient : System.IDisposable + public partial interface IServiceFabricManagementClient : System.IDisposable { /// /// The base URI of the service. @@ -68,6 +68,11 @@ public partial interface IServiceFabricClient : System.IDisposable /// IClustersOperations Clusters { get; } + /// + /// Gets the IClusterVersionsOperations. + /// + IClusterVersionsOperations ClusterVersions { get; } + /// /// Gets the IOperations. /// diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ApplicationDeltaHealthPolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ApplicationDeltaHealthPolicy.cs index 29fd0a6e608e..edab554b9a5b 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ApplicationDeltaHealthPolicy.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ApplicationDeltaHealthPolicy.cs @@ -21,7 +21,10 @@ public partial class ApplicationDeltaHealthPolicy /// Initializes a new instance of the ApplicationDeltaHealthPolicy /// class. /// - public ApplicationDeltaHealthPolicy() { } + public ApplicationDeltaHealthPolicy() + { + CustomInit(); + } /// /// Initializes a new instance of the ApplicationDeltaHealthPolicy @@ -35,8 +38,14 @@ public ApplicationDeltaHealthPolicy() { } { DefaultServiceTypeDeltaHealthPolicy = defaultServiceTypeDeltaHealthPolicy; SerivceTypeDeltaHealthPolicies = serivceTypeDeltaHealthPolicies; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets delta health policy for default services /// @@ -49,5 +58,28 @@ public ApplicationDeltaHealthPolicy() { } [JsonProperty(PropertyName = "serivceTypeDeltaHealthPolicies")] public IDictionary SerivceTypeDeltaHealthPolicies { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (DefaultServiceTypeDeltaHealthPolicy != null) + { + DefaultServiceTypeDeltaHealthPolicy.Validate(); + } + if (SerivceTypeDeltaHealthPolicies != null) + { + foreach (var valueElement in SerivceTypeDeltaHealthPolicies.Values) + { + if (valueElement != null) + { + valueElement.Validate(); + } + } + } + } } } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ApplicationHealthPolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ApplicationHealthPolicy.cs index f4d21690e3db..276d35880b5d 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ApplicationHealthPolicy.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ApplicationHealthPolicy.cs @@ -13,39 +13,75 @@ namespace Microsoft.Azure.Management.ServiceFabric.Models using System.Linq; /// - /// Application health policy + /// Defines a health policy used to evaluate the health of an application + /// or one of its children entities. /// public partial class ApplicationHealthPolicy { /// /// Initializes a new instance of the ApplicationHealthPolicy class. /// - public ApplicationHealthPolicy() { } + public ApplicationHealthPolicy() + { + CustomInit(); + } /// /// Initializes a new instance of the ApplicationHealthPolicy class. /// - /// Health policy for the - /// default service - /// SerivceType health - /// policy + /// the health policy used + /// by default to evaluate the health of a service type. + /// Defines a + /// ServiceTypeHealthPolicy per service type name,the key is the name + /// of the application public ApplicationHealthPolicy(ServiceTypeHealthPolicy defaultServiceTypeHealthPolicy = default(ServiceTypeHealthPolicy), IDictionary serivceTypeHealthPolicies = default(IDictionary)) { DefaultServiceTypeHealthPolicy = defaultServiceTypeHealthPolicy; SerivceTypeHealthPolicies = serivceTypeHealthPolicies; + CustomInit(); } /// - /// Gets or sets health policy for the default service + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the health policy used by default to evaluate the + /// health of a service type. /// [JsonProperty(PropertyName = "defaultServiceTypeHealthPolicy")] public ServiceTypeHealthPolicy DefaultServiceTypeHealthPolicy { get; set; } /// - /// Gets or sets serivceType health policy + /// Gets or sets Defines a ServiceTypeHealthPolicy per service type + /// name,the key is the name of the application /// [JsonProperty(PropertyName = "serivceTypeHealthPolicies")] public IDictionary SerivceTypeHealthPolicies { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (DefaultServiceTypeHealthPolicy != null) + { + DefaultServiceTypeHealthPolicy.Validate(); + } + if (SerivceTypeHealthPolicies != null) + { + foreach (var valueElement in SerivceTypeHealthPolicies.Values) + { + if (valueElement != null) + { + valueElement.Validate(); + } + } + } + } } } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/AvailableOperationDisplay.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/AvailableOperationDisplay.cs index 08d4962d642f..54adc96ff19b 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/AvailableOperationDisplay.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/AvailableOperationDisplay.cs @@ -18,7 +18,10 @@ public partial class AvailableOperationDisplay /// /// Initializes a new instance of the AvailableOperationDisplay class. /// - public AvailableOperationDisplay() { } + public AvailableOperationDisplay() + { + CustomInit(); + } /// /// Initializes a new instance of the AvailableOperationDisplay class. @@ -33,8 +36,14 @@ public AvailableOperationDisplay() { } Resource = resource; Operation = operation; Description = description; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets provider name /// diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/AzureActiveDirectory.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/AzureActiveDirectory.cs new file mode 100644 index 000000000000..1713e52ec6b5 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/AzureActiveDirectory.cs @@ -0,0 +1,66 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The settings to enable AAD authentication on the cluster + /// + public partial class AzureActiveDirectory + { + /// + /// Initializes a new instance of the AzureActiveDirectory class. + /// + public AzureActiveDirectory() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the AzureActiveDirectory class. + /// + /// Azure active directory tenant id + /// Azure active directory cluster + /// application id + /// Azure active directory client + /// application id + public AzureActiveDirectory(string tenantId = default(string), string clusterApplication = default(string), string clientApplication = default(string)) + { + TenantId = tenantId; + ClusterApplication = clusterApplication; + ClientApplication = clientApplication; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets azure active directory tenant id + /// + [JsonProperty(PropertyName = "tenantId")] + public string TenantId { get; set; } + + /// + /// Gets or sets azure active directory cluster application id + /// + [JsonProperty(PropertyName = "clusterApplication")] + public string ClusterApplication { get; set; } + + /// + /// Gets or sets azure active directory client application id + /// + [JsonProperty(PropertyName = "clientApplication")] + public string ClientApplication { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/CertificateDescription.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/CertificateDescription.cs index 6a021ed92879..b72502b9c79c 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/CertificateDescription.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/CertificateDescription.cs @@ -7,6 +7,7 @@ namespace Microsoft.Azure.Management.ServiceFabric.Models using Microsoft.Azure; using Microsoft.Azure.Management; using Microsoft.Azure.Management.ServiceFabric; + using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; @@ -18,7 +19,10 @@ public partial class CertificateDescription /// /// Initializes a new instance of the CertificateDescription class. /// - public CertificateDescription() { } + public CertificateDescription() + { + CustomInit(); + } /// /// Initializes a new instance of the CertificateDescription class. @@ -26,18 +30,24 @@ public CertificateDescription() { } /// Thumbprint of the primary /// certificate /// Thumbprint of the secondary - /// certificate + /// certificate /// The local certificate store location. /// Possible values include: 'AddressBook', 'AuthRoot', /// 'CertificateAuthority', 'Disallowed', 'My', 'Root', /// 'TrustedPeople', 'TrustedPublisher' - public CertificateDescription(string thumbprint = default(string), string thumbprintSecondary = default(string), string x509StoreName = default(string)) + public CertificateDescription(string thumbprint, string thumbprintSecondary = default(string), string x509StoreName = default(string)) { Thumbprint = thumbprint; ThumbprintSecondary = thumbprintSecondary; X509StoreName = x509StoreName; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets thumbprint of the primary certificate /// @@ -58,5 +68,18 @@ public CertificateDescription() { } [JsonProperty(PropertyName = "x509StoreName")] public string X509StoreName { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Thumbprint == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Thumbprint"); + } + } } } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClientCertificateCommonName.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClientCertificateCommonName.cs index 35cc9aa366ac..3e9b2a115610 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClientCertificateCommonName.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClientCertificateCommonName.cs @@ -7,6 +7,7 @@ namespace Microsoft.Azure.Management.ServiceFabric.Models using Microsoft.Azure; using Microsoft.Azure.Management; using Microsoft.Azure.Management.ServiceFabric; + using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; @@ -19,7 +20,10 @@ public partial class ClientCertificateCommonName /// Initializes a new instance of the ClientCertificateCommonName /// class. /// - public ClientCertificateCommonName() { } + public ClientCertificateCommonName() + { + CustomInit(); + } /// /// Initializes a new instance of the ClientCertificateCommonName @@ -31,19 +35,25 @@ public ClientCertificateCommonName() { } /// granted access; be carefull using wild card common names /// Certificate issuer /// thumbprint - public ClientCertificateCommonName(bool? isAdmin = default(bool?), string certificateCommonName = default(string), string certificateIssuerThumbprint = default(string)) + public ClientCertificateCommonName(bool isAdmin, string certificateCommonName, string certificateIssuerThumbprint = default(string)) { IsAdmin = isAdmin; CertificateCommonName = certificateCommonName; CertificateIssuerThumbprint = certificateIssuerThumbprint; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets is this certificate used for admin access from the /// client, if false , it is used or query only access /// [JsonProperty(PropertyName = "isAdmin")] - public bool? IsAdmin { get; set; } + public bool IsAdmin { get; set; } /// /// Gets or sets certificate common name to be granted access; be @@ -58,5 +68,18 @@ public ClientCertificateCommonName() { } [JsonProperty(PropertyName = "certificateIssuerThumbprint")] public string CertificateIssuerThumbprint { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (CertificateCommonName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "CertificateCommonName"); + } + } } } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClientCertificateThumbprint.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClientCertificateThumbprint.cs index 8d6a0b9a5348..41247b850678 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClientCertificateThumbprint.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClientCertificateThumbprint.cs @@ -7,6 +7,7 @@ namespace Microsoft.Azure.Management.ServiceFabric.Models using Microsoft.Azure; using Microsoft.Azure.Management; using Microsoft.Azure.Management.ServiceFabric; + using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; @@ -19,27 +20,36 @@ public partial class ClientCertificateThumbprint /// Initializes a new instance of the ClientCertificateThumbprint /// class. /// - public ClientCertificateThumbprint() { } + public ClientCertificateThumbprint() + { + CustomInit(); + } /// /// Initializes a new instance of the ClientCertificateThumbprint /// class. /// /// Is this certificate used for admin access - /// from the client, if false , it is used or query only access + /// from the client, if false, it is used or query only access /// Certificate thumbprint - public ClientCertificateThumbprint(bool? isAdmin = default(bool?), string certificateThumbprint = default(string)) + public ClientCertificateThumbprint(bool isAdmin, string certificateThumbprint) { IsAdmin = isAdmin; CertificateThumbprint = certificateThumbprint; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets is this certificate used for admin access from the - /// client, if false , it is used or query only access + /// client, if false, it is used or query only access /// [JsonProperty(PropertyName = "isAdmin")] - public bool? IsAdmin { get; set; } + public bool IsAdmin { get; set; } /// /// Gets or sets certificate thumbprint @@ -47,5 +57,18 @@ public ClientCertificateThumbprint() { } [JsonProperty(PropertyName = "certificateThumbprint")] public string CertificateThumbprint { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (CertificateThumbprint == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "CertificateThumbprint"); + } + } } } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Cluster.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Cluster.cs index 057262354650..e2fd78907ba5 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Cluster.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Cluster.cs @@ -23,23 +23,19 @@ public partial class Cluster : Resource /// /// Initializes a new instance of the Cluster class. /// - public Cluster() { } + public Cluster() + { + CustomInit(); + } /// /// Initializes a new instance of the Cluster class. /// /// Resource location. - /// Cluster reliability level indicates - /// replica set size of system service. Possible values include: - /// 'Bronze', 'Silver', 'Gold', 'Platinum' - /// Cluster upgrade mode indicates if fabric - /// upgrade is initiated automatically by the system or not. Possible - /// values include: 'Automatic', 'Manual' - /// Http endpoint for client - /// access + /// The http management endpoint of + /// the cluster /// The list of nodetypes that make up the /// cluster - /// The vm image name /// Resource ID. /// Resource name. /// Resource type. @@ -47,34 +43,46 @@ public Cluster() { } /// The available cluster code /// version which the cluster can upgrade to, note that you must choose /// upgradeMode to manual to upgrade to - /// The cluster id the resource identifier for - /// the cluster resource + /// The unique identifier for the cluster + /// resource /// The state for the cluster. Possible - /// values include: 'Default', 'WaitingForNodes', 'Deploying', - /// 'BaselineUpgrade', 'UpdatingUserConfiguration', - /// 'UpdatingUserCertificate', 'UpdatingInfrastructure', - /// 'EnforcingClusterVersion', 'UpgradeServiceUnreachable', 'Deleting', - /// 'ScaleUp', 'ScaleDown', 'AutoScale', 'Ready', 'Failed' + /// values include: 'WaitingForNodes', 'Deploying', 'BaselineUpgrade', + /// 'UpdatingUserConfiguration', 'UpdatingUserCertificate', + /// 'UpdatingInfrastructure', 'EnforcingClusterVersion', + /// 'UpgradeServiceUnreachable', 'AutoScale', 'Ready' /// The endpoint for the cluster /// connecting to servicefabric resource provider /// The ServiceFabric code version /// running in your cluster - /// The certificates used for cluster - /// security + /// This primay certificate will be used as + /// cluster node to node security, SSL certificate for cluster + /// management endpoint and default admin client + /// Cluster reliability level indicates + /// replica set size of system service. Possible values include: + /// 'Bronze', 'Silver', 'Gold', 'Platinum' + /// Cluster upgrade mode indicates if fabric + /// upgrade is initiated automatically by the system or not. Possible + /// values include: 'Automatic', 'Manual' /// The client thumbprint - /// details ,it is used for client access for cluter operation - /// Client certificate - /// details using common name - /// ServiceFabric section settings - /// The certificate details for - /// the reverse proxy + /// details ,it is used for client access for cluster operation + /// List of client + /// certificates to whitelist based on common names + /// List of custom fabric settings to + /// configure the cluster. + /// The server certificate used + /// by reverse proxy + /// The settings to enable AAD + /// authentication on the cluster /// The provisioning state of the - /// cluster resource. Possible values include: 'Default', 'Updating', - /// 'Succeeded', 'Failed', 'Canceled' + /// cluster resource. Possible values include: 'Updating', 'Succeeded', + /// 'Failed', 'Canceled' + /// The name of VM image VMSS has been configured + /// with. Generic names such as Windows or Linux can be used. /// The storage /// diagnostics account configuration details - /// Cluster upgrade policy - public Cluster(string location, string reliabilityLevel, string upgradeMode, string managementEndpoint, IList nodeTypes, string vmImage, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), IList availableClusterVersions = default(IList), string clusterId = default(string), string clusterState = default(string), string clusterEndpoint = default(string), string clusterCodeVersion = default(string), CertificateDescription certificate = default(CertificateDescription), IList clientCertificateThumbprints = default(IList), IList clientCertificateCommonNames = default(IList), IList fabricSettings = default(IList), CertificateDescription reverseProxyCertificate = default(CertificateDescription), string provisioningState = default(string), DiagnosticsStorageAccountConfig diagnosticsStorageAccountConfig = default(DiagnosticsStorageAccountConfig), ClusterUpgradePolicy upgradeDescription = default(ClusterUpgradePolicy)) + /// The policy to use when upgrading + /// the cluster. + public Cluster(string location, string managementEndpoint, IList nodeTypes, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), IList availableClusterVersions = default(IList), string clusterId = default(string), string clusterState = default(string), string clusterEndpoint = default(string), string clusterCodeVersion = default(string), CertificateDescription certificate = default(CertificateDescription), string reliabilityLevel = default(string), string upgradeMode = default(string), IList clientCertificateThumbprints = default(IList), IList clientCertificateCommonNames = default(IList), IList fabricSettings = default(IList), CertificateDescription reverseProxyCertificate = default(CertificateDescription), AzureActiveDirectory azureActiveDirectory = default(AzureActiveDirectory), string provisioningState = default(string), string vmImage = default(string), DiagnosticsStorageAccountConfig diagnosticsStorageAccountConfig = default(DiagnosticsStorageAccountConfig), ClusterUpgradePolicy upgradeDescription = default(ClusterUpgradePolicy)) : base(location, id, name, type, tags) { AvailableClusterVersions = availableClusterVersions; @@ -91,12 +99,19 @@ public Cluster() { } ReverseProxyCertificate = reverseProxyCertificate; ManagementEndpoint = managementEndpoint; NodeTypes = nodeTypes; + AzureActiveDirectory = azureActiveDirectory; ProvisioningState = provisioningState; VmImage = vmImage; DiagnosticsStorageAccountConfig = diagnosticsStorageAccountConfig; UpgradeDescription = upgradeDescription; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets the available cluster code version which the cluster can /// upgrade to, note that you must choose upgradeMode to manual to @@ -106,19 +121,17 @@ public Cluster() { } public IList AvailableClusterVersions { get; private set; } /// - /// Gets the cluster id the resource identifier for the cluster - /// resource + /// Gets the unique identifier for the cluster resource /// [JsonProperty(PropertyName = "properties.clusterId")] public string ClusterId { get; private set; } /// - /// Gets the state for the cluster. Possible values include: 'Default', + /// Gets the state for the cluster. Possible values include: /// 'WaitingForNodes', 'Deploying', 'BaselineUpgrade', /// 'UpdatingUserConfiguration', 'UpdatingUserCertificate', /// 'UpdatingInfrastructure', 'EnforcingClusterVersion', - /// 'UpgradeServiceUnreachable', 'Deleting', 'ScaleUp', 'ScaleDown', - /// 'AutoScale', 'Ready', 'Failed' + /// 'UpgradeServiceUnreachable', 'AutoScale', 'Ready' /// [JsonProperty(PropertyName = "properties.clusterState")] public string ClusterState { get; private set; } @@ -137,7 +150,9 @@ public Cluster() { } public string ClusterCodeVersion { get; set; } /// - /// Gets or sets the certificates used for cluster security + /// Gets or sets this primay certificate will be used as cluster node + /// to node security, SSL certificate for cluster management endpoint + /// and default admin client /// [JsonProperty(PropertyName = "properties.certificate")] public CertificateDescription Certificate { get; set; } @@ -160,31 +175,33 @@ public Cluster() { } /// /// Gets or sets the client thumbprint details ,it is used for client - /// access for cluter operation + /// access for cluster operation /// [JsonProperty(PropertyName = "properties.clientCertificateThumbprints")] public IList ClientCertificateThumbprints { get; set; } /// - /// Gets or sets client certificate details using common name + /// Gets or sets List of client certificates to whitelist based on + /// common names /// [JsonProperty(PropertyName = "properties.clientCertificateCommonNames")] public IList ClientCertificateCommonNames { get; set; } /// - /// Gets or sets serviceFabric section settings + /// Gets or sets list of custom fabric settings to configure the + /// cluster. /// [JsonProperty(PropertyName = "properties.fabricSettings")] public IList FabricSettings { get; set; } /// - /// Gets or sets the certificate details for the reverse proxy + /// Gets or sets the server certificate used by reverse proxy /// [JsonProperty(PropertyName = "properties.reverseProxyCertificate")] public CertificateDescription ReverseProxyCertificate { get; set; } /// - /// Gets or sets http endpoint for client access + /// Gets or sets the http management endpoint of the cluster /// [JsonProperty(PropertyName = "properties.managementEndpoint")] public string ManagementEndpoint { get; set; } @@ -195,16 +212,23 @@ public Cluster() { } [JsonProperty(PropertyName = "properties.nodeTypes")] public IList NodeTypes { get; set; } + /// + /// Gets or sets the settings to enable AAD authentication on the + /// cluster + /// + [JsonProperty(PropertyName = "properties.azureActiveDirectory")] + public AzureActiveDirectory AzureActiveDirectory { get; set; } + /// /// Gets the provisioning state of the cluster resource. Possible - /// values include: 'Default', 'Updating', 'Succeeded', 'Failed', - /// 'Canceled' + /// values include: 'Updating', 'Succeeded', 'Failed', 'Canceled' /// [JsonProperty(PropertyName = "properties.provisioningState")] public string ProvisioningState { get; private set; } /// - /// Gets or sets the vm image name + /// Gets or sets the name of VM image VMSS has been configured with. + /// Generic names such as Windows or Linux can be used. /// [JsonProperty(PropertyName = "properties.vmImage")] public string VmImage { get; set; } @@ -216,7 +240,7 @@ public Cluster() { } public DiagnosticsStorageAccountConfig DiagnosticsStorageAccountConfig { get; set; } /// - /// Gets or sets cluster upgrade policy + /// Gets or sets the policy to use when upgrading the cluster. /// [JsonProperty(PropertyName = "properties.upgradeDescription")] public ClusterUpgradePolicy UpgradeDescription { get; set; } @@ -230,14 +254,6 @@ public Cluster() { } public override void Validate() { base.Validate(); - if (ReliabilityLevel == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "ReliabilityLevel"); - } - if (UpgradeMode == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "UpgradeMode"); - } if (ManagementEndpoint == null) { throw new ValidationException(ValidationRules.CannotBeNull, "ManagementEndpoint"); @@ -246,9 +262,61 @@ public override void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "NodeTypes"); } - if (VmImage == null) + if (Certificate != null) + { + Certificate.Validate(); + } + if (ClientCertificateThumbprints != null) + { + foreach (var element in ClientCertificateThumbprints) + { + if (element != null) + { + element.Validate(); + } + } + } + if (ClientCertificateCommonNames != null) + { + foreach (var element1 in ClientCertificateCommonNames) + { + if (element1 != null) + { + element1.Validate(); + } + } + } + if (FabricSettings != null) + { + foreach (var element2 in FabricSettings) + { + if (element2 != null) + { + element2.Validate(); + } + } + } + if (ReverseProxyCertificate != null) + { + ReverseProxyCertificate.Validate(); + } + if (NodeTypes != null) + { + foreach (var element3 in NodeTypes) + { + if (element3 != null) + { + element3.Validate(); + } + } + } + if (DiagnosticsStorageAccountConfig != null) + { + DiagnosticsStorageAccountConfig.Validate(); + } + if (UpgradeDescription != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "VmImage"); + UpgradeDescription.Validate(); } } } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterCodeVersionsResult.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterCodeVersionsResult.cs new file mode 100644 index 000000000000..618298152db7 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterCodeVersionsResult.cs @@ -0,0 +1,95 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// The result of the ServiceFabric runtime versions + /// + [Rest.Serialization.JsonTransformation] + public partial class ClusterCodeVersionsResult + { + /// + /// Initializes a new instance of the ClusterCodeVersionsResult class. + /// + public ClusterCodeVersionsResult() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ClusterCodeVersionsResult class. + /// + /// The identification of the result + /// The name of the result + /// The result resource type + /// The ServiceFabric runtime version of the + /// cluster + /// The date of expiry of support of the + /// version + /// Cluster operating system. Possible values + /// include: 'Windows', 'Linux' + public ClusterCodeVersionsResult(string id = default(string), string name = default(string), string type = default(string), string codeVersion = default(string), string supportExpiryUtc = default(string), string environment = default(string)) + { + Id = id; + Name = name; + Type = type; + CodeVersion = codeVersion; + SupportExpiryUtc = supportExpiryUtc; + Environment = environment; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the identification of the result + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; set; } + + /// + /// Gets or sets the name of the result + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets the result resource type + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; set; } + + /// + /// Gets or sets the ServiceFabric runtime version of the cluster + /// + [JsonProperty(PropertyName = "properties.codeVersion")] + public string CodeVersion { get; set; } + + /// + /// Gets or sets the date of expiry of support of the version + /// + [JsonProperty(PropertyName = "properties.supportExpiryUtc")] + public string SupportExpiryUtc { get; set; } + + /// + /// Gets or sets cluster operating system. Possible values include: + /// 'Windows', 'Linux' + /// + [JsonProperty(PropertyName = "properties.environment")] + public string Environment { get; set; } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterHealthPolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterHealthPolicy.cs new file mode 100644 index 000000000000..1f2f9b5f6eb8 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterHealthPolicy.cs @@ -0,0 +1,117 @@ +// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.ServiceFabric.Models +{ + using Microsoft.Azure; + using Microsoft.Azure.Management; + using Microsoft.Azure.Management.ServiceFabric; + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Defines a health policy used to evaluate the health of the cluster or + /// of a cluster node. + /// + public partial class ClusterHealthPolicy + { + /// + /// Initializes a new instance of the ClusterHealthPolicy class. + /// + public ClusterHealthPolicy() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ClusterHealthPolicy class. + /// + /// The maximum allowed + /// percentage of unhealthy nodes before reporting an error. For + /// example, to allow 10% of nodes to be unhealthy, this value would be + /// 10. + /// The maximum allowed + /// percentage of unhealthy applications before reporting an error. For + /// example, to allow 10% of applications to be unhealthy, this value + /// would be 10. + /// Defines a map with max + /// percentage unhealthy applications for specific application + /// types,key is the name of the application type + public ClusterHealthPolicy(int? maxPercentUnhealthyNodes = default(int?), int? maxPercentUnhealthyApplications = default(int?), IDictionary applicationHealthPolicies = default(IDictionary)) + { + MaxPercentUnhealthyNodes = maxPercentUnhealthyNodes; + MaxPercentUnhealthyApplications = maxPercentUnhealthyApplications; + ApplicationHealthPolicies = applicationHealthPolicies; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the maximum allowed percentage of unhealthy nodes + /// before reporting an error. For example, to allow 10% of nodes to be + /// unhealthy, this value would be 10. + /// + [JsonProperty(PropertyName = "maxPercentUnhealthyNodes")] + public int? MaxPercentUnhealthyNodes { get; set; } + + /// + /// Gets or sets the maximum allowed percentage of unhealthy + /// applications before reporting an error. For example, to allow 10% + /// of applications to be unhealthy, this value would be 10. + /// + [JsonProperty(PropertyName = "maxPercentUnhealthyApplications")] + public int? MaxPercentUnhealthyApplications { get; set; } + + /// + /// Gets or sets defines a map with max percentage unhealthy + /// applications for specific application types,key is the name of the + /// application type + /// + [JsonProperty(PropertyName = "applicationHealthPolicies")] + public IDictionary ApplicationHealthPolicies { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (MaxPercentUnhealthyNodes > 100) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "MaxPercentUnhealthyNodes", 100); + } + if (MaxPercentUnhealthyNodes < 0) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "MaxPercentUnhealthyNodes", 0); + } + if (MaxPercentUnhealthyApplications > 100) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "MaxPercentUnhealthyApplications", 100); + } + if (MaxPercentUnhealthyApplications < 0) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "MaxPercentUnhealthyApplications", 0); + } + if (ApplicationHealthPolicies != null) + { + foreach (var valueElement in ApplicationHealthPolicies.Values) + { + if (valueElement != null) + { + valueElement.Validate(); + } + } + } + } + } +} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpdateParameters.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpdateParameters.cs index 64e16f227cda..691cd205da5a 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpdateParameters.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpdateParameters.cs @@ -23,50 +23,68 @@ public partial class ClusterUpdateParameters /// /// Initializes a new instance of the ClusterUpdateParameters class. /// - public ClusterUpdateParameters() { } + public ClusterUpdateParameters() + { + CustomInit(); + } /// /// Initializes a new instance of the ClusterUpdateParameters class. /// - /// Cluster reliability level indicates - /// replica set size of system service. Possible values include: - /// 'Invalid', 'Bronze', 'Silver', 'Gold', 'Platinum' + /// This level is used to set the number + /// of replicas of the system services. Possible values include: + /// 'Bronze', 'Silver', 'Gold' /// Cluster upgrade mode indicates if fabric /// upgrade is initiated automatically by the system or not. Possible - /// values include: 'Default', 'Automatic', 'Manual' + /// values include: 'Automatic', 'Manual' /// The ServiceFabric code version, if /// set it, please make sure you have set upgradeMode to Manual, - /// otherwise ,it will fail - /// The cluster certificate settings, the new - /// certificate should exist in VMSS or KeyVault,before you add it, it - /// will override original value + /// otherwise ,it will fail, if you are using PUT new cluster, you can + /// get the version by using ClusterVersions_List, if you are updating + /// existing cluster, you can get the availableClusterVersions from + /// Clusters_Get + /// This primay certificate will be used as + /// cluster node to node security, SSL certificate for cluster + /// management endpoint and default admin client, the certificate + /// should exist in the virtual machine scale sets or Azure key vault, + /// before you add it. It will override original value /// The client thumbprint - /// details ,it is used for client access for cluter operation, it will - /// override existing collection - /// ServiceFabric section settings, Note, - /// it will overwrite existing collection + /// details, it is used for client access for cluster operation, it + /// will override existing collection + /// List of client + /// certificates to whitelist based on common names. + /// List of custom fabric settings to + /// configure the cluster, Note, it will overwrite existing + /// collection /// Certificate for the reverse /// proxy /// The list of nodetypes that make up the /// cluster, it will override /// Cluster update parameters - public ClusterUpdateParameters(string reliabilityLevel = default(string), string upgradeMode = default(string), string clusterCodeVersion = default(string), CertificateDescription certificate = default(CertificateDescription), IList clientCertificateThumbprints = default(IList), IList fabricSettings = default(IList), CertificateDescription reverseProxyCertificate = default(CertificateDescription), IList nodeTypes = default(IList), IDictionary tags = default(IDictionary)) + public ClusterUpdateParameters(string reliabilityLevel = default(string), string upgradeMode = default(string), string clusterCodeVersion = default(string), CertificateDescription certificate = default(CertificateDescription), IList clientCertificateThumbprints = default(IList), IList clientCertificateCommonNames = default(IList), IList fabricSettings = default(IList), CertificateDescription reverseProxyCertificate = default(CertificateDescription), IList nodeTypes = default(IList), IDictionary tags = default(IDictionary)) { ReliabilityLevel = reliabilityLevel; UpgradeMode = upgradeMode; ClusterCodeVersion = clusterCodeVersion; Certificate = certificate; ClientCertificateThumbprints = clientCertificateThumbprints; + ClientCertificateCommonNames = clientCertificateCommonNames; FabricSettings = fabricSettings; ReverseProxyCertificate = reverseProxyCertificate; NodeTypes = nodeTypes; Tags = tags; + CustomInit(); } /// - /// Gets or sets cluster reliability level indicates replica set size - /// of system service. Possible values include: 'Invalid', 'Bronze', - /// 'Silver', 'Gold', 'Platinum' + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets this level is used to set the number of replicas of + /// the system services. Possible values include: 'Bronze', 'Silver', + /// 'Gold' /// [JsonProperty(PropertyName = "properties.reliabilityLevel")] public string ReliabilityLevel { get; set; } @@ -74,36 +92,48 @@ public ClusterUpdateParameters() { } /// /// Gets or sets cluster upgrade mode indicates if fabric upgrade is /// initiated automatically by the system or not. Possible values - /// include: 'Default', 'Automatic', 'Manual' + /// include: 'Automatic', 'Manual' /// [JsonProperty(PropertyName = "properties.upgradeMode")] public string UpgradeMode { get; set; } /// /// Gets or sets the ServiceFabric code version, if set it, please make - /// sure you have set upgradeMode to Manual, otherwise ,it will fail + /// sure you have set upgradeMode to Manual, otherwise ,it will fail, + /// if you are using PUT new cluster, you can get the version by using + /// ClusterVersions_List, if you are updating existing cluster, you can + /// get the availableClusterVersions from Clusters_Get /// [JsonProperty(PropertyName = "properties.clusterCodeVersion")] public string ClusterCodeVersion { get; set; } /// - /// Gets or sets the cluster certificate settings, the new certificate - /// should exist in VMSS or KeyVault,before you add it, it will - /// override original value + /// Gets or sets this primay certificate will be used as cluster node + /// to node security, SSL certificate for cluster management endpoint + /// and default admin client, the certificate should exist in the + /// virtual machine scale sets or Azure key vault, before you add it. + /// It will override original value /// [JsonProperty(PropertyName = "properties.certificate")] public CertificateDescription Certificate { get; set; } /// - /// Gets or sets the client thumbprint details ,it is used for client - /// access for cluter operation, it will override existing collection + /// Gets or sets the client thumbprint details, it is used for client + /// access for cluster operation, it will override existing collection /// [JsonProperty(PropertyName = "properties.clientCertificateThumbprints")] public IList ClientCertificateThumbprints { get; set; } /// - /// Gets or sets serviceFabric section settings, Note, it will - /// overwrite existing collection + /// Gets or sets list of client certificates to whitelist based on + /// common names. + /// + [JsonProperty(PropertyName = "properties.clientCertificateCommonNames")] + public IList ClientCertificateCommonNames { get; set; } + + /// + /// Gets or sets list of custom fabric settings to configure the + /// cluster, Note, it will overwrite existing collection /// [JsonProperty(PropertyName = "properties.fabricSettings")] public IList FabricSettings { get; set; } @@ -127,5 +157,62 @@ public ClusterUpdateParameters() { } [JsonProperty(PropertyName = "tags")] public IDictionary Tags { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Certificate != null) + { + Certificate.Validate(); + } + if (ClientCertificateThumbprints != null) + { + foreach (var element in ClientCertificateThumbprints) + { + if (element != null) + { + element.Validate(); + } + } + } + if (ClientCertificateCommonNames != null) + { + foreach (var element1 in ClientCertificateCommonNames) + { + if (element1 != null) + { + element1.Validate(); + } + } + } + if (FabricSettings != null) + { + foreach (var element2 in FabricSettings) + { + if (element2 != null) + { + element2.Validate(); + } + } + } + if (ReverseProxyCertificate != null) + { + ReverseProxyCertificate.Validate(); + } + if (NodeTypes != null) + { + foreach (var element3 in NodeTypes) + { + if (element3 != null) + { + element3.Validate(); + } + } + } + } } } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpgradeDeltaHealthPolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpgradeDeltaHealthPolicy.cs index c24cf496825a..68df4718ca25 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpgradeDeltaHealthPolicy.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpgradeDeltaHealthPolicy.cs @@ -7,6 +7,7 @@ namespace Microsoft.Azure.Management.ServiceFabric.Models using Microsoft.Azure; using Microsoft.Azure.Management; using Microsoft.Azure.Management.ServiceFabric; + using Microsoft.Rest; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -21,7 +22,10 @@ public partial class ClusterUpgradeDeltaHealthPolicy /// Initializes a new instance of the ClusterUpgradeDeltaHealthPolicy /// class. /// - public ClusterUpgradeDeltaHealthPolicy() { } + public ClusterUpgradeDeltaHealthPolicy() + { + CustomInit(); + } /// /// Initializes a new instance of the ClusterUpgradeDeltaHealthPolicy @@ -35,32 +39,38 @@ public ClusterUpgradeDeltaHealthPolicy() { } /// unhealthy applications percentage /// Application health /// policy - public ClusterUpgradeDeltaHealthPolicy(int? maxPercentDeltaUnhealthyNodes = default(int?), int? maxPercentUpgradeDomainDeltaUnhealthyNodes = default(int?), int? maxPercentDeltaUnhealthyApplications = default(int?), IDictionary applicationHealthPolicies = default(IDictionary)) + public ClusterUpgradeDeltaHealthPolicy(int maxPercentDeltaUnhealthyNodes, int maxPercentUpgradeDomainDeltaUnhealthyNodes, int maxPercentDeltaUnhealthyApplications, IDictionary applicationHealthPolicies = default(IDictionary)) { MaxPercentDeltaUnhealthyNodes = maxPercentDeltaUnhealthyNodes; MaxPercentUpgradeDomainDeltaUnhealthyNodes = maxPercentUpgradeDomainDeltaUnhealthyNodes; MaxPercentDeltaUnhealthyApplications = maxPercentDeltaUnhealthyApplications; ApplicationHealthPolicies = applicationHealthPolicies; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets additional unhealthy nodes percentage /// [JsonProperty(PropertyName = "maxPercentDeltaUnhealthyNodes")] - public int? MaxPercentDeltaUnhealthyNodes { get; set; } + public int MaxPercentDeltaUnhealthyNodes { get; set; } /// /// Gets or sets additional unhealthy nodes percentage per upgrade /// domain /// [JsonProperty(PropertyName = "maxPercentUpgradeDomainDeltaUnhealthyNodes")] - public int? MaxPercentUpgradeDomainDeltaUnhealthyNodes { get; set; } + public int MaxPercentUpgradeDomainDeltaUnhealthyNodes { get; set; } /// /// Gets or sets additional unhealthy applications percentage /// [JsonProperty(PropertyName = "maxPercentDeltaUnhealthyApplications")] - public int? MaxPercentDeltaUnhealthyApplications { get; set; } + public int MaxPercentDeltaUnhealthyApplications { get; set; } /// /// Gets or sets application health policy @@ -68,5 +78,48 @@ public ClusterUpgradeDeltaHealthPolicy() { } [JsonProperty(PropertyName = "applicationHealthPolicies")] public IDictionary ApplicationHealthPolicies { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (MaxPercentDeltaUnhealthyNodes > 100) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "MaxPercentDeltaUnhealthyNodes", 100); + } + if (MaxPercentDeltaUnhealthyNodes < 0) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "MaxPercentDeltaUnhealthyNodes", 0); + } + if (MaxPercentUpgradeDomainDeltaUnhealthyNodes > 100) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "MaxPercentUpgradeDomainDeltaUnhealthyNodes", 100); + } + if (MaxPercentUpgradeDomainDeltaUnhealthyNodes < 0) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "MaxPercentUpgradeDomainDeltaUnhealthyNodes", 0); + } + if (MaxPercentDeltaUnhealthyApplications > 100) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "MaxPercentDeltaUnhealthyApplications", 100); + } + if (MaxPercentDeltaUnhealthyApplications < 0) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "MaxPercentDeltaUnhealthyApplications", 0); + } + if (ApplicationHealthPolicies != null) + { + foreach (var valueElement in ApplicationHealthPolicies.Values) + { + if (valueElement != null) + { + valueElement.Validate(); + } + } + } + } } } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpgradeHealthPolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpgradeHealthPolicy.cs deleted file mode 100644 index 76135548e14f..000000000000 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpgradeHealthPolicy.cs +++ /dev/null @@ -1,60 +0,0 @@ -// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.ServiceFabric.Models -{ - using Microsoft.Azure; - using Microsoft.Azure.Management; - using Microsoft.Azure.Management.ServiceFabric; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Default cluster upgrade health policy - /// - public partial class ClusterUpgradeHealthPolicy - { - /// - /// Initializes a new instance of the ClusterUpgradeHealthPolicy class. - /// - public ClusterUpgradeHealthPolicy() { } - - /// - /// Initializes a new instance of the ClusterUpgradeHealthPolicy class. - /// - /// Max percent of unhealthy - /// nodes - /// Max percent of - /// unhealthy applications - /// Application health - /// policy - public ClusterUpgradeHealthPolicy(int? maxPercentUnhealthyNodes = default(int?), int? maxPercentUnhealthyApplications = default(int?), IDictionary applicationHealthPolicies = default(IDictionary)) - { - MaxPercentUnhealthyNodes = maxPercentUnhealthyNodes; - MaxPercentUnhealthyApplications = maxPercentUnhealthyApplications; - ApplicationHealthPolicies = applicationHealthPolicies; - } - - /// - /// Gets or sets max percent of unhealthy nodes - /// - [JsonProperty(PropertyName = "maxPercentUnhealthyNodes")] - public int? MaxPercentUnhealthyNodes { get; set; } - - /// - /// Gets or sets max percent of unhealthy applications - /// - [JsonProperty(PropertyName = "maxPercentUnhealthyApplications")] - public int? MaxPercentUnhealthyApplications { get; set; } - - /// - /// Gets or sets application health policy - /// - [JsonProperty(PropertyName = "applicationHealthPolicies")] - public IDictionary ApplicationHealthPolicies { get; set; } - - } -} diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpgradePolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpgradePolicy.cs index f0fc0ace1db8..1109f2bfa602 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpgradePolicy.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterUpgradePolicy.cs @@ -7,6 +7,7 @@ namespace Microsoft.Azure.Management.ServiceFabric.Models using Microsoft.Azure; using Microsoft.Azure.Management; using Microsoft.Azure.Management.ServiceFabric; + using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; @@ -18,29 +19,35 @@ public partial class ClusterUpgradePolicy /// /// Initializes a new instance of the ClusterUpgradePolicy class. /// - public ClusterUpgradePolicy() { } + public ClusterUpgradePolicy() + { + CustomInit(); + } /// /// Initializes a new instance of the ClusterUpgradePolicy class. /// - /// Use the user defined - /// upgrade policy or not - /// Force node to restart or not /// Timeout for replica set - /// upgrade to complete + /// upgrade to complete,it represents .Net TimeSpan /// The length of time to wait - /// after completing an upgrade domain before performing health - /// checks. + /// after completing an upgrade domain before performing health checks, + /// it represents .Net TimeSpan /// The length of time that - /// health checks must pass continuously. + /// health checks must pass continuously,it represents .Net + /// TimeSpan /// The length of time that - /// health checks can fail continuously - /// The upgrade timeout. + /// health checks can fail continuously,it represents .Net + /// TimeSpan + /// The upgrade timeout,it represents .Net + /// TimeSpan /// The timeout for any upgrade - /// domain. + /// domain,it represents .Net TimeSpan /// Cluster health Policy - /// Delta health policy - public ClusterUpgradePolicy(bool? overrideUserUpgradePolicy = default(bool?), bool? forceRestart = default(bool?), string upgradeReplicaSetCheckTimeout = default(string), string healthCheckWaitDuration = default(string), string healthCheckStableDuration = default(string), string healthCheckRetryTimeout = default(string), string upgradeTimeout = default(string), string upgradeDomainTimeout = default(string), ClusterUpgradeHealthPolicy healthPolicy = default(ClusterUpgradeHealthPolicy), ClusterUpgradeDeltaHealthPolicy deltaHealthPolicy = default(ClusterUpgradeDeltaHealthPolicy)) + /// Use the user defined + /// upgrade policy or not + /// Force node to restart or not + /// Delta health policy + public ClusterUpgradePolicy(string upgradeReplicaSetCheckTimeout, string healthCheckWaitDuration, string healthCheckStableDuration, string healthCheckRetryTimeout, string upgradeTimeout, string upgradeDomainTimeout, ClusterHealthPolicy healthPolicy, bool? overrideUserUpgradePolicy = default(bool?), bool? forceRestart = default(bool?), ClusterUpgradeDeltaHealthPolicy deltaHealthPolicy = default(ClusterUpgradeDeltaHealthPolicy)) { OverrideUserUpgradePolicy = overrideUserUpgradePolicy; ForceRestart = forceRestart; @@ -52,8 +59,14 @@ public ClusterUpgradePolicy() { } UpgradeDomainTimeout = upgradeDomainTimeout; HealthPolicy = healthPolicy; DeltaHealthPolicy = deltaHealthPolicy; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets use the user defined upgrade policy or not /// @@ -67,40 +80,42 @@ public ClusterUpgradePolicy() { } public bool? ForceRestart { get; set; } /// - /// Gets or sets timeout for replica set upgrade to complete + /// Gets or sets timeout for replica set upgrade to complete,it + /// represents .Net TimeSpan /// [JsonProperty(PropertyName = "upgradeReplicaSetCheckTimeout")] public string UpgradeReplicaSetCheckTimeout { get; set; } /// /// Gets or sets the length of time to wait after completing an upgrade - /// domain before performing health checks. + /// domain before performing health checks, it represents .Net TimeSpan /// [JsonProperty(PropertyName = "healthCheckWaitDuration")] public string HealthCheckWaitDuration { get; set; } /// /// Gets or sets the length of time that health checks must pass - /// continuously. + /// continuously,it represents .Net TimeSpan /// [JsonProperty(PropertyName = "healthCheckStableDuration")] public string HealthCheckStableDuration { get; set; } /// /// Gets or sets the length of time that health checks can fail - /// continuously + /// continuously,it represents .Net TimeSpan /// [JsonProperty(PropertyName = "healthCheckRetryTimeout")] public string HealthCheckRetryTimeout { get; set; } /// - /// Gets or sets the upgrade timeout. + /// Gets or sets the upgrade timeout,it represents .Net TimeSpan /// [JsonProperty(PropertyName = "upgradeTimeout")] public string UpgradeTimeout { get; set; } /// - /// Gets or sets the timeout for any upgrade domain. + /// Gets or sets the timeout for any upgrade domain,it represents .Net + /// TimeSpan /// [JsonProperty(PropertyName = "upgradeDomainTimeout")] public string UpgradeDomainTimeout { get; set; } @@ -109,13 +124,58 @@ public ClusterUpgradePolicy() { } /// Gets or sets cluster health Policy /// [JsonProperty(PropertyName = "healthPolicy")] - public ClusterUpgradeHealthPolicy HealthPolicy { get; set; } + public ClusterHealthPolicy HealthPolicy { get; set; } /// - /// Gets or sets delta health policy + /// Gets or sets delta health policy /// [JsonProperty(PropertyName = "deltaHealthPolicy")] public ClusterUpgradeDeltaHealthPolicy DeltaHealthPolicy { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (UpgradeReplicaSetCheckTimeout == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "UpgradeReplicaSetCheckTimeout"); + } + if (HealthCheckWaitDuration == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "HealthCheckWaitDuration"); + } + if (HealthCheckStableDuration == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "HealthCheckStableDuration"); + } + if (HealthCheckRetryTimeout == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "HealthCheckRetryTimeout"); + } + if (UpgradeTimeout == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "UpgradeTimeout"); + } + if (UpgradeDomainTimeout == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "UpgradeDomainTimeout"); + } + if (HealthPolicy == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "HealthPolicy"); + } + if (HealthPolicy != null) + { + HealthPolicy.Validate(); + } + if (DeltaHealthPolicy != null) + { + DeltaHealthPolicy.Validate(); + } + } } } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterVersionDetails.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterVersionDetails.cs index b301502c4dd7..82c611a4f1ed 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterVersionDetails.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ClusterVersionDetails.cs @@ -11,45 +11,55 @@ namespace Microsoft.Azure.Management.ServiceFabric.Models using System.Linq; /// - /// Fabric version details + /// The detail of the ServiceFabric runtime version result /// public partial class ClusterVersionDetails { /// /// Initializes a new instance of the ClusterVersionDetails class. /// - public ClusterVersionDetails() { } + public ClusterVersionDetails() + { + CustomInit(); + } /// /// Initializes a new instance of the ClusterVersionDetails class. /// - /// Fabric code version - /// The date of expiry of the above + /// The ServiceFabric runtime version of the + /// cluster + /// The date of expiry of support of the /// version /// Cluster operating system. Possible values - /// include: 'Default', 'Windows', 'Linux' + /// include: 'Windows', 'Linux' public ClusterVersionDetails(string codeVersion = default(string), string supportExpiryUtc = default(string), string environment = default(string)) { CodeVersion = codeVersion; SupportExpiryUtc = supportExpiryUtc; Environment = environment; + CustomInit(); } /// - /// Gets or sets fabric code version + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the ServiceFabric runtime version of the cluster /// [JsonProperty(PropertyName = "codeVersion")] public string CodeVersion { get; set; } /// - /// Gets or sets the date of expiry of the above version + /// Gets or sets the date of expiry of support of the version /// [JsonProperty(PropertyName = "supportExpiryUtc")] public string SupportExpiryUtc { get; set; } /// /// Gets or sets cluster operating system. Possible values include: - /// 'Default', 'Windows', 'Linux' + /// 'Windows', 'Linux' /// [JsonProperty(PropertyName = "environment")] public string Environment { get; set; } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/DiagnosticsStorageAccountConfig.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/DiagnosticsStorageAccountConfig.cs index 473216aec402..e324cb093b9f 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/DiagnosticsStorageAccountConfig.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/DiagnosticsStorageAccountConfig.cs @@ -7,6 +7,7 @@ namespace Microsoft.Azure.Management.ServiceFabric.Models using Microsoft.Azure; using Microsoft.Azure.Management; using Microsoft.Azure.Management.ServiceFabric; + using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; @@ -19,7 +20,10 @@ public partial class DiagnosticsStorageAccountConfig /// Initializes a new instance of the DiagnosticsStorageAccountConfig /// class. /// - public DiagnosticsStorageAccountConfig() { } + public DiagnosticsStorageAccountConfig() + { + CustomInit(); + } /// /// Initializes a new instance of the DiagnosticsStorageAccountConfig @@ -27,10 +31,6 @@ public DiagnosticsStorageAccountConfig() { } /// /// Diagnostics storage account /// name - /// Primary key for the Azure - /// Storage - /// Secondary key for the Azure - /// Storage /// Protected Diagnostics storage /// key name /// Diagnostics storage account blob @@ -39,34 +39,26 @@ public DiagnosticsStorageAccountConfig() { } /// endpoint /// Diagnostics storage account table /// endpoint - public DiagnosticsStorageAccountConfig(string storageAccountName = default(string), string primaryAccessKey = default(string), string secondaryAccessKey = default(string), string protectedAccountKeyName = default(string), string blobEndpoint = default(string), string queueEndpoint = default(string), string tableEndpoint = default(string)) + public DiagnosticsStorageAccountConfig(string storageAccountName, string protectedAccountKeyName, string blobEndpoint, string queueEndpoint, string tableEndpoint) { StorageAccountName = storageAccountName; - PrimaryAccessKey = primaryAccessKey; - SecondaryAccessKey = secondaryAccessKey; ProtectedAccountKeyName = protectedAccountKeyName; BlobEndpoint = blobEndpoint; QueueEndpoint = queueEndpoint; TableEndpoint = tableEndpoint; + CustomInit(); } /// - /// Gets or sets diagnostics storage account name - /// - [JsonProperty(PropertyName = "storageAccountName")] - public string StorageAccountName { get; set; } - - /// - /// Gets or sets primary key for the Azure Storage + /// An initialization method that performs custom operations like setting defaults /// - [JsonProperty(PropertyName = "primaryAccessKey")] - public string PrimaryAccessKey { get; set; } + partial void CustomInit(); /// - /// Gets or sets secondary key for the Azure Storage + /// Gets or sets diagnostics storage account name /// - [JsonProperty(PropertyName = "secondaryAccessKey")] - public string SecondaryAccessKey { get; set; } + [JsonProperty(PropertyName = "storageAccountName")] + public string StorageAccountName { get; set; } /// /// Gets or sets protected Diagnostics storage key name @@ -92,5 +84,34 @@ public DiagnosticsStorageAccountConfig() { } [JsonProperty(PropertyName = "tableEndpoint")] public string TableEndpoint { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (StorageAccountName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "StorageAccountName"); + } + if (ProtectedAccountKeyName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ProtectedAccountKeyName"); + } + if (BlobEndpoint == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "BlobEndpoint"); + } + if (QueueEndpoint == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "QueueEndpoint"); + } + if (TableEndpoint == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "TableEndpoint"); + } + } } } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/EndpointRangeDescription.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/EndpointRangeDescription.cs index b4587a9a7f3d..85f5deae85cb 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/EndpointRangeDescription.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/EndpointRangeDescription.cs @@ -18,30 +18,49 @@ public partial class EndpointRangeDescription /// /// Initializes a new instance of the EndpointRangeDescription class. /// - public EndpointRangeDescription() { } + public EndpointRangeDescription() + { + CustomInit(); + } /// /// Initializes a new instance of the EndpointRangeDescription class. /// /// Starting port of a range of ports /// End port of a range of ports - public EndpointRangeDescription(int? startPort = default(int?), int? endPort = default(int?)) + public EndpointRangeDescription(int startPort, int endPort) { StartPort = startPort; EndPort = endPort; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets starting port of a range of ports /// [JsonProperty(PropertyName = "startPort")] - public int? StartPort { get; set; } + public int StartPort { get; set; } /// /// Gets or sets end port of a range of ports /// [JsonProperty(PropertyName = "endPort")] - public int? EndPort { get; set; } + public int EndPort { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + //Nothing to validate + } } } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModel.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModel.cs index 087f6e71e2fe..099b2f1a3982 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModel.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModel.cs @@ -18,7 +18,10 @@ public partial class ErrorModel /// /// Initializes a new instance of the ErrorModel class. /// - public ErrorModel() { } + public ErrorModel() + { + CustomInit(); + } /// /// Initializes a new instance of the ErrorModel class. @@ -27,8 +30,14 @@ public ErrorModel() { } public ErrorModel(ErrorModelError error = default(ErrorModelError)) { Error = error; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the error detail /// diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModelError.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModelError.cs index 1d7b6b9bf6ce..76cda93952c8 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModelError.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ErrorModelError.cs @@ -18,7 +18,10 @@ public partial class ErrorModelError /// /// Initializes a new instance of the ErrorModelError class. /// - public ErrorModelError() { } + public ErrorModelError() + { + CustomInit(); + } /// /// Initializes a new instance of the ErrorModelError class. @@ -29,8 +32,14 @@ public ErrorModelError() { } { Code = code; Message = message; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the error code /// diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/NodeTypeDescription.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/NodeTypeDescription.cs index 37d31e59013a..28268e3a34d0 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/NodeTypeDescription.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/NodeTypeDescription.cs @@ -7,41 +7,51 @@ namespace Microsoft.Azure.Management.ServiceFabric.Models using Microsoft.Azure; using Microsoft.Azure.Management; using Microsoft.Azure.Management.ServiceFabric; + using Microsoft.Rest; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; using System.Linq; /// - /// NodeType details + /// Describes a node type in the cluster, each node type represents sub set + /// of nodes in the cluster /// public partial class NodeTypeDescription { /// /// Initializes a new instance of the NodeTypeDescription class. /// - public NodeTypeDescription() { } + public NodeTypeDescription() + { + CustomInit(); + } /// /// Initializes a new instance of the NodeTypeDescription class. /// - /// Name of NodeType - /// Placement property key - /// Capacity property key - /// TCP gateway endpoint - /// port - /// Http gateway endpoint - /// port + /// Name of the node type + /// The TCP cluster + /// management endpoint port + /// The HTTP cluster management + /// endpoint port + /// Mark this as the primary node type + /// The number of node instances in the + /// node type + /// The placement tags applied to + /// nodes in the node type, which can be used to indicate where certain + /// services (workload) should run + /// The capacity tags applied to the nodes in + /// the node type, the cluster resource manager uses these tags to + /// understand how much of a resource a node has /// Nodetype durability Level. Possible - /// values include: 'Bronze', 'Silver', 'Gold', 'Platimun' + /// values include: 'Bronze', 'Silver', 'Gold' /// Ports used by applications /// System assgined application /// ports - /// Mark this node as primay - /// VMSS instance count /// Endpoint used by reverse /// proxy - public NodeTypeDescription(string name = default(string), IDictionary placementProperties = default(IDictionary), IDictionary capacities = default(IDictionary), int? clientConnectionEndpointPort = default(int?), int? httpGatewayEndpointPort = default(int?), string durabilityLevel = default(string), EndpointRangeDescription applicationPorts = default(EndpointRangeDescription), EndpointRangeDescription ephemeralPorts = default(EndpointRangeDescription), bool? isPrimary = default(bool?), int? vmInstanceCount = default(int?), int? reverseProxyEndpointPort = default(int?)) + public NodeTypeDescription(string name, int clientConnectionEndpointPort, int httpGatewayEndpointPort, bool isPrimary, int vmInstanceCount, IDictionary placementProperties = default(IDictionary), IDictionary capacities = default(IDictionary), string durabilityLevel = default(string), EndpointRangeDescription applicationPorts = default(EndpointRangeDescription), EndpointRangeDescription ephemeralPorts = default(EndpointRangeDescription), int? reverseProxyEndpointPort = default(int?)) { Name = name; PlacementProperties = placementProperties; @@ -54,41 +64,51 @@ public NodeTypeDescription() { } IsPrimary = isPrimary; VmInstanceCount = vmInstanceCount; ReverseProxyEndpointPort = reverseProxyEndpointPort; + CustomInit(); } /// - /// Gets or sets name of NodeType + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets name of the node type /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// - /// Gets or sets placement property key + /// Gets or sets the placement tags applied to nodes in the node type, + /// which can be used to indicate where certain services (workload) + /// should run /// [JsonProperty(PropertyName = "placementProperties")] public IDictionary PlacementProperties { get; set; } /// - /// Gets or sets capacity property key + /// Gets or sets the capacity tags applied to the nodes in the node + /// type, the cluster resource manager uses these tags to understand + /// how much of a resource a node has /// [JsonProperty(PropertyName = "capacities")] public IDictionary Capacities { get; set; } /// - /// Gets or sets TCP gateway endpoint port + /// Gets or sets the TCP cluster management endpoint port /// [JsonProperty(PropertyName = "clientConnectionEndpointPort")] - public int? ClientConnectionEndpointPort { get; set; } + public int ClientConnectionEndpointPort { get; set; } /// - /// Gets or sets http gateway endpoint port + /// Gets or sets the HTTP cluster management endpoint port /// [JsonProperty(PropertyName = "httpGatewayEndpointPort")] - public int? HttpGatewayEndpointPort { get; set; } + public int HttpGatewayEndpointPort { get; set; } /// /// Gets or sets nodetype durability Level. Possible values include: - /// 'Bronze', 'Silver', 'Gold', 'Platimun' + /// 'Bronze', 'Silver', 'Gold' /// [JsonProperty(PropertyName = "durabilityLevel")] public string DurabilityLevel { get; set; } @@ -106,16 +126,16 @@ public NodeTypeDescription() { } public EndpointRangeDescription EphemeralPorts { get; set; } /// - /// Gets or sets mark this node as primay + /// Gets or sets mark this as the primary node type /// [JsonProperty(PropertyName = "isPrimary")] - public bool? IsPrimary { get; set; } + public bool IsPrimary { get; set; } /// - /// Gets or sets VMSS instance count + /// Gets or sets the number of node instances in the node type /// [JsonProperty(PropertyName = "vmInstanceCount")] - public int? VmInstanceCount { get; set; } + public int VmInstanceCount { get; set; } /// /// Gets or sets endpoint used by reverse proxy @@ -123,5 +143,34 @@ public NodeTypeDescription() { } [JsonProperty(PropertyName = "reverseProxyEndpointPort")] public int? ReverseProxyEndpointPort { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Name"); + } + if (ApplicationPorts != null) + { + ApplicationPorts.Validate(); + } + if (EphemeralPorts != null) + { + EphemeralPorts.Validate(); + } + if (VmInstanceCount > 2147483647) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "VmInstanceCount", 2147483647); + } + if (VmInstanceCount < 1) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "VmInstanceCount", 1); + } + } } } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/OperationResult.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/OperationResult.cs index 2efab41205ee..447e4b2d5600 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/OperationResult.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/OperationResult.cs @@ -18,12 +18,16 @@ public partial class OperationResult /// /// Initializes a new instance of the OperationResult class. /// - public OperationResult() { } + public OperationResult() + { + CustomInit(); + } /// /// Initializes a new instance of the OperationResult class. /// /// Result name + /// Dispaly of the result /// Origin result /// The URL to use for getting the next set of /// results. @@ -33,8 +37,14 @@ public OperationResult() { } Display = display; Origin = origin; NextLink = nextLink; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets result name /// @@ -42,6 +52,7 @@ public OperationResult() { } public string Name { get; set; } /// + /// Gets or sets dispaly of the result /// [JsonProperty(PropertyName = "display")] public AvailableOperationDisplay Display { get; set; } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ProvisioningState.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ProvisioningState.cs index 5a132bc8ed3d..141b2e7678bc 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ProvisioningState.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ProvisioningState.cs @@ -13,7 +13,6 @@ namespace Microsoft.Azure.Management.ServiceFabric.Models /// public static class ProvisioningState { - public const string Default = "Default"; public const string Updating = "Updating"; public const string Succeeded = "Succeeded"; public const string Failed = "Failed"; diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Resource.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Resource.cs index f26dca5fe074..980368d20ee8 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Resource.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/Resource.cs @@ -22,7 +22,10 @@ public partial class Resource : IResource /// /// Initializes a new instance of the Resource class. /// - public Resource() { } + public Resource() + { + CustomInit(); + } /// /// Initializes a new instance of the Resource class. @@ -39,8 +42,14 @@ public Resource() { } Type = type; Location = location; Tags = tags; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets resource ID. /// diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ServiceTypeDeltaHealthPolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ServiceTypeDeltaHealthPolicy.cs index 7313bdf4bdd3..79114a347aaf 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ServiceTypeDeltaHealthPolicy.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ServiceTypeDeltaHealthPolicy.cs @@ -7,6 +7,7 @@ namespace Microsoft.Azure.Management.ServiceFabric.Models using Microsoft.Azure; using Microsoft.Azure.Management; using Microsoft.Azure.Management.ServiceFabric; + using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; @@ -19,24 +20,50 @@ public partial class ServiceTypeDeltaHealthPolicy /// Initializes a new instance of the ServiceTypeDeltaHealthPolicy /// class. /// - public ServiceTypeDeltaHealthPolicy() { } + public ServiceTypeDeltaHealthPolicy() + { + CustomInit(); + } /// /// Initializes a new instance of the ServiceTypeDeltaHealthPolicy /// class. /// - /// Max percent of - /// additional unhealthy services + /// Maximum percentage + /// of unhealthy services in cluster public ServiceTypeDeltaHealthPolicy(int? maxPercentDeltaUnhealthyServices = default(int?)) { MaxPercentDeltaUnhealthyServices = maxPercentDeltaUnhealthyServices; + CustomInit(); } /// - /// Gets or sets max percent of additional unhealthy services + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets maximum percentage of unhealthy services in cluster /// [JsonProperty(PropertyName = "maxPercentDeltaUnhealthyServices")] public int? MaxPercentDeltaUnhealthyServices { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (MaxPercentDeltaUnhealthyServices > 100) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "MaxPercentDeltaUnhealthyServices", 100); + } + if (MaxPercentDeltaUnhealthyServices < 0) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "MaxPercentDeltaUnhealthyServices", 0); + } + } } } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ServiceTypeHealthPolicy.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ServiceTypeHealthPolicy.cs index 410e2563f44d..e2271138e907 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ServiceTypeHealthPolicy.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/ServiceTypeHealthPolicy.cs @@ -7,34 +7,64 @@ namespace Microsoft.Azure.Management.ServiceFabric.Models using Microsoft.Azure; using Microsoft.Azure.Management; using Microsoft.Azure.Management.ServiceFabric; + using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; /// - /// Cluster health policy + /// Represents the health policy used to evaluate the health of services + /// belonging to a service type. /// public partial class ServiceTypeHealthPolicy { /// /// Initializes a new instance of the ServiceTypeHealthPolicy class. /// - public ServiceTypeHealthPolicy() { } + public ServiceTypeHealthPolicy() + { + CustomInit(); + } /// /// Initializes a new instance of the ServiceTypeHealthPolicy class. /// - /// Max percent of unhealthy - /// services + /// The maximum maximum + /// allowed percentage of unhealthy services. Allowed values are Byte + /// values from zero to 100. public ServiceTypeHealthPolicy(int? maxPercentUnhealthyServices = default(int?)) { MaxPercentUnhealthyServices = maxPercentUnhealthyServices; + CustomInit(); } /// - /// Gets or sets max percent of unhealthy services + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the maximum maximum allowed percentage of unhealthy + /// services. Allowed values are Byte values from zero to 100. /// [JsonProperty(PropertyName = "maxPercentUnhealthyServices")] public int? MaxPercentUnhealthyServices { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (MaxPercentUnhealthyServices > 100) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "MaxPercentUnhealthyServices", 100); + } + if (MaxPercentUnhealthyServices < 0) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "MaxPercentUnhealthyServices", 0); + } + } } } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsParameterDescription.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsParameterDescription.cs index 6d9a27e4a6c7..5584ea6b9328 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsParameterDescription.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsParameterDescription.cs @@ -7,6 +7,7 @@ namespace Microsoft.Azure.Management.ServiceFabric.Models using Microsoft.Azure; using Microsoft.Azure.Management; using Microsoft.Azure.Management.ServiceFabric; + using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; @@ -19,7 +20,10 @@ public partial class SettingsParameterDescription /// Initializes a new instance of the SettingsParameterDescription /// class. /// - public SettingsParameterDescription() { } + public SettingsParameterDescription() + { + CustomInit(); + } /// /// Initializes a new instance of the SettingsParameterDescription @@ -27,12 +31,18 @@ public SettingsParameterDescription() { } /// /// The name of settings property /// The value of the property - public SettingsParameterDescription(string name = default(string), string value = default(string)) + public SettingsParameterDescription(string name, string value) { Name = name; Value = value; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of settings property /// @@ -45,5 +55,22 @@ public SettingsParameterDescription() { } [JsonProperty(PropertyName = "value")] public string Value { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Name"); + } + if (Value == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Value"); + } + } } } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsSectionDescription.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsSectionDescription.cs index 8600c0f875bf..bebb66613d57 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsSectionDescription.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Models/SettingsSectionDescription.cs @@ -7,6 +7,7 @@ namespace Microsoft.Azure.Management.ServiceFabric.Models using Microsoft.Azure; using Microsoft.Azure.Management; using Microsoft.Azure.Management.ServiceFabric; + using Microsoft.Rest; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -20,19 +21,30 @@ public partial class SettingsSectionDescription /// /// Initializes a new instance of the SettingsSectionDescription class. /// - public SettingsSectionDescription() { } + public SettingsSectionDescription() + { + CustomInit(); + } /// /// Initializes a new instance of the SettingsSectionDescription class. /// /// The name of settings section - /// Settings parameter value - public SettingsSectionDescription(string name = default(string), IList parameters = default(IList)) + /// Collection of settings in the section, + /// each setting is a tuple consisting of setting name and + /// value + public SettingsSectionDescription(string name, IList parameters) { Name = name; Parameters = parameters; + CustomInit(); } + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + /// /// Gets or sets the name of settings section /// @@ -40,10 +52,38 @@ public SettingsSectionDescription() { } public string Name { get; set; } /// - /// Gets or sets settings parameter value + /// Gets or sets collection of settings in the section, each setting is + /// a tuple consisting of setting name and value /// [JsonProperty(PropertyName = "parameters")] public IList Parameters { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Name"); + } + if (Parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Parameters"); + } + if (Parameters != null) + { + foreach (var element in Parameters) + { + if (element != null) + { + element.Validate(); + } + } + } + } } } diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Operations.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Operations.cs index 1fb59ec1d6c6..a513cd522d2f 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Operations.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/Operations.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Management.ServiceFabric /// /// Operations operations. /// - internal partial class Operations : IServiceOperations, IOperations + internal partial class Operations : IServiceOperations, IOperations { /// /// Initializes a new instance of the Operations class. @@ -32,7 +32,7 @@ internal partial class Operations : IServiceOperations, IOp /// /// Thrown when a required parameter is null /// - internal Operations(ServiceFabricClient client) + internal Operations(ServiceFabricManagementClient client) { if (client == null) { @@ -42,9 +42,9 @@ internal Operations(ServiceFabricClient client) } /// - /// Gets a reference to the ServiceFabricClient + /// Gets a reference to the ServiceFabricManagementClient /// - public ServiceFabricClient Client { get; private set; } + public ServiceFabricManagementClient Client { get; private set; } /// /// Lists all of the available ServiceFabric REST API operations. diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ServiceFabricClient.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ServiceFabricManagementClient.cs similarity index 82% rename from src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ServiceFabricClient.cs rename to src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ServiceFabricManagementClient.cs index 1fedff44fcb1..c53b83c2e68a 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ServiceFabricClient.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Generated/ServiceFabricManagementClient.cs @@ -17,7 +17,7 @@ namespace Microsoft.Azure.Management.ServiceFabric using System.Net; using System.Net.Http; - public partial class ServiceFabricClient : ServiceClient, IServiceFabricClient, IAzureClient + public partial class ServiceFabricManagementClient : ServiceClient, IServiceFabricManagementClient, IAzureClient { /// /// The base URI of the service. @@ -71,24 +71,29 @@ public partial class ServiceFabricClient : ServiceClient, I /// public virtual IClustersOperations Clusters { get; private set; } + /// + /// Gets the IClusterVersionsOperations. + /// + public virtual IClusterVersionsOperations ClusterVersions { get; private set; } + /// /// Gets the IOperations. /// public virtual IOperations Operations { get; private set; } /// - /// Initializes a new instance of the ServiceFabricClient class. + /// Initializes a new instance of the ServiceFabricManagementClient class. /// /// /// Optional. The delegating handlers to add to the http client pipeline. /// - protected ServiceFabricClient(params DelegatingHandler[] handlers) : base(handlers) + protected ServiceFabricManagementClient(params DelegatingHandler[] handlers) : base(handlers) { Initialize(); } /// - /// Initializes a new instance of the ServiceFabricClient class. + /// Initializes a new instance of the ServiceFabricManagementClient class. /// /// /// Optional. The http client handler used to handle http transport. @@ -96,13 +101,13 @@ protected ServiceFabricClient(params DelegatingHandler[] handlers) : base(handle /// /// Optional. The delegating handlers to add to the http client pipeline. /// - protected ServiceFabricClient(HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : base(rootHandler, handlers) + protected ServiceFabricManagementClient(HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : base(rootHandler, handlers) { Initialize(); } /// - /// Initializes a new instance of the ServiceFabricClient class. + /// Initializes a new instance of the ServiceFabricManagementClient class. /// /// /// Optional. The base URI of the service. @@ -113,7 +118,7 @@ protected ServiceFabricClient(HttpClientHandler rootHandler, params DelegatingHa /// /// Thrown when a required parameter is null /// - protected ServiceFabricClient(System.Uri baseUri, params DelegatingHandler[] handlers) : this(handlers) + protected ServiceFabricManagementClient(System.Uri baseUri, params DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { @@ -123,7 +128,7 @@ protected ServiceFabricClient(System.Uri baseUri, params DelegatingHandler[] han } /// - /// Initializes a new instance of the ServiceFabricClient class. + /// Initializes a new instance of the ServiceFabricManagementClient class. /// /// /// Optional. The base URI of the service. @@ -137,7 +142,7 @@ protected ServiceFabricClient(System.Uri baseUri, params DelegatingHandler[] han /// /// Thrown when a required parameter is null /// - protected ServiceFabricClient(System.Uri baseUri, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) + protected ServiceFabricManagementClient(System.Uri baseUri, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { @@ -147,7 +152,7 @@ protected ServiceFabricClient(System.Uri baseUri, HttpClientHandler rootHandler, } /// - /// Initializes a new instance of the ServiceFabricClient class. + /// Initializes a new instance of the ServiceFabricManagementClient class. /// /// /// Required. Credentials needed for the client to connect to Azure. @@ -158,7 +163,7 @@ protected ServiceFabricClient(System.Uri baseUri, HttpClientHandler rootHandler, /// /// Thrown when a required parameter is null /// - public ServiceFabricClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + public ServiceFabricManagementClient(ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (credentials == null) { @@ -172,7 +177,7 @@ public ServiceFabricClient(ServiceClientCredentials credentials, params Delegati } /// - /// Initializes a new instance of the ServiceFabricClient class. + /// Initializes a new instance of the ServiceFabricManagementClient class. /// /// /// Required. Credentials needed for the client to connect to Azure. @@ -186,7 +191,7 @@ public ServiceFabricClient(ServiceClientCredentials credentials, params Delegati /// /// Thrown when a required parameter is null /// - public ServiceFabricClient(ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) + public ServiceFabricManagementClient(ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (credentials == null) { @@ -200,7 +205,7 @@ public ServiceFabricClient(ServiceClientCredentials credentials, HttpClientHandl } /// - /// Initializes a new instance of the ServiceFabricClient class. + /// Initializes a new instance of the ServiceFabricManagementClient class. /// /// /// Optional. The base URI of the service. @@ -214,7 +219,7 @@ public ServiceFabricClient(ServiceClientCredentials credentials, HttpClientHandl /// /// Thrown when a required parameter is null /// - public ServiceFabricClient(System.Uri baseUri, ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) + public ServiceFabricManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, params DelegatingHandler[] handlers) : this(handlers) { if (baseUri == null) { @@ -233,7 +238,7 @@ public ServiceFabricClient(System.Uri baseUri, ServiceClientCredentials credenti } /// - /// Initializes a new instance of the ServiceFabricClient class. + /// Initializes a new instance of the ServiceFabricManagementClient class. /// /// /// Optional. The base URI of the service. @@ -250,7 +255,7 @@ public ServiceFabricClient(System.Uri baseUri, ServiceClientCredentials credenti /// /// Thrown when a required parameter is null /// - public ServiceFabricClient(System.Uri baseUri, ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) + public ServiceFabricManagementClient(System.Uri baseUri, ServiceClientCredentials credentials, HttpClientHandler rootHandler, params DelegatingHandler[] handlers) : this(rootHandler, handlers) { if (baseUri == null) { @@ -278,6 +283,7 @@ public ServiceFabricClient(System.Uri baseUri, ServiceClientCredentials credenti private void Initialize() { Clusters = new ClustersOperations(this); + ClusterVersions = new ClusterVersionsOperations(this); Operations = new Operations(this); BaseUri = new System.Uri("https://management.azure.com"); ApiVersion = "2016-09-01"; diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Properties/AssemblyInfo.cs b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Properties/AssemblyInfo.cs index d9bdbe94054c..fe3660fa7f25 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/Properties/AssemblyInfo.cs @@ -25,5 +25,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("0.1.0.0")] -[assembly: AssemblyFileVersion("0.1.0.0")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/project.json b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/project.json index 6c35400fd1ef..44110fae18c3 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/project.json +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/project.json @@ -1,5 +1,5 @@ { - "version": "1.0.0", + "version": "1.0.0-preview", "description": "Microsoft Azure Management ServiceFabric Library", "authors": [ "Microsoft" diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestCreateClusterResource/TestCreate.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestCreateClusterResource/TestCreate.json index ddd597980bf5..6dcf820b51d6 100644 --- a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestCreateClusterResource/TestCreate.json +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestCreateClusterResource/TestCreate.json @@ -7,17 +7,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ec505baf-ec7d-41c0-9786-40af31fc2ada" + "aaa936c1-2c5e-4022-b276-922034bac911" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636256223355177783\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"a6b6316e-24c6-4a20-bffc-7cc5065e92bc\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/a6b6316e-24c6-4a20-bffc-7cc5065e92bc\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636258957273157045\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9525f566-2a5e-488f-8b69-4b41f6562c78\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/9525f566-2a5e-488f-8b69-4b41f6562c78\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 16:40:46 GMT" + "Sat, 01 Apr 2017 14:22:15 GMT" ], "Pragma": [ "no-cache" @@ -51,16 +51,16 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14833" + "14982" ], "x-ms-request-id": [ - "0cf22315-ee81-4b8a-81b8-f57c61ede51f" + "c7ea21b6-95b8-45ef-9caf-64d7d637b50f" ], "x-ms-correlation-request-id": [ - "0cf22315-ee81-4b8a-81b8-f57c61ede51f" + "c7ea21b6-95b8-45ef-9caf-64d7d637b50f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T164047Z:0cf22315-ee81-4b8a-81b8-f57c61ede51f" + "WESTUS2:20170401T142216Z:c7ea21b6-95b8-45ef-9caf-64d7d637b50f" ] }, "StatusCode": 200 @@ -72,17 +72,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67ce34ad-651e-4631-9a31-51757e18f54a" + "2ae56b71-dd42-4c4f-83d7-d6bfe4a1a379" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636256248609783505\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"78eb0991-7917-48ec-af39-50680e6aa3bb\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/78eb0991-7917-48ec-af39-50680e6aa3bb\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636266533494387491\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8c0d53d2-fe48-48b7-9e76-65ac1a5de496\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8c0d53d2-fe48-48b7-9e76-65ac1a5de496\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -94,7 +94,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 16:41:02 GMT" + "Sat, 01 Apr 2017 14:22:29 GMT" ], "Pragma": [ "no-cache" @@ -116,16 +116,16 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14981" ], "x-ms-request-id": [ - "569f5255-8279-4420-980c-2af1e2609673" + "0929bde3-b137-4cec-a3ea-8b1f57dd577a" ], "x-ms-correlation-request-id": [ - "569f5255-8279-4420-980c-2af1e2609673" + "0929bde3-b137-4cec-a3ea-8b1f57dd577a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T164102Z:569f5255-8279-4420-980c-2af1e2609673" + "WESTUS2:20170401T142230Z:0929bde3-b137-4cec-a3ea-8b1f57dd577a" ] }, "StatusCode": 200 @@ -137,17 +137,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d50ae33-7cd2-4827-929c-00a3bab28b38" + "a7f05faa-5cac-46a2-abe4-22e33a1cc366" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636256248609783505\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"78eb0991-7917-48ec-af39-50680e6aa3bb\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/78eb0991-7917-48ec-af39-50680e6aa3bb\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636266533494387491\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8c0d53d2-fe48-48b7-9e76-65ac1a5de496\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8c0d53d2-fe48-48b7-9e76-65ac1a5de496\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -159,7 +159,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 16:41:02 GMT" + "Sat, 01 Apr 2017 14:22:29 GMT" ], "Pragma": [ "no-cache" @@ -181,16 +181,16 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14980" ], "x-ms-request-id": [ - "33838c34-336b-4338-a1cc-afba6d73a3a3" + "0301d3e9-0201-4dd4-a95f-51368f0acfb4" ], "x-ms-correlation-request-id": [ - "33838c34-336b-4338-a1cc-afba6d73a3a3" + "0301d3e9-0201-4dd4-a95f-51368f0acfb4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T164102Z:33838c34-336b-4338-a1cc-afba6d73a3a3" + "WESTUS2:20170401T142230Z:0301d3e9-0201-4dd4-a95f-51368f0acfb4" ] }, "StatusCode": 200 @@ -202,14 +202,14 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d9d6066b-92b1-4e0c-94d3-a6e108f5b6bd" + "93a23704-8bc8-4774-bfa1-fa2bb29fc1ad" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -224,7 +224,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 16:40:47 GMT" + "Sat, 01 Apr 2017 14:22:17 GMT" ], "Pragma": [ "no-cache" @@ -242,13 +242,13 @@ "1199" ], "x-ms-request-id": [ - "57a2bcc3-ac61-4f43-a450-523b33622d61" + "c02dc2d6-7b75-4556-82b7-fa0f21108652" ], "x-ms-correlation-request-id": [ - "57a2bcc3-ac61-4f43-a450-523b33622d61" + "c02dc2d6-7b75-4556-82b7-fa0f21108652" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T164048Z:57a2bcc3-ac61-4f43-a450-523b33622d61" + "WESTUS2:20170401T142217Z:c02dc2d6-7b75-4556-82b7-fa0f21108652" ] }, "StatusCode": 200 @@ -266,7 +266,7 @@ "38" ], "x-ms-client-request-id": [ - "e2632587-3a77-4c57-b483-9f4fa1d30bf5" + "5dea6b39-c00c-4c1d-b00c-50528c2bc2fb" ], "accept-language": [ "en-US" @@ -288,7 +288,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 16:41:00 GMT" + "Sat, 01 Apr 2017 14:22:28 GMT" ], "Pragma": [ "no-cache" @@ -303,13 +303,13 @@ "1199" ], "x-ms-request-id": [ - "c662c921-097b-458e-8e8a-e9d0bb3f6940" + "712cf5fa-7ab8-4229-92ae-6d3253987038" ], "x-ms-correlation-request-id": [ - "c662c921-097b-458e-8e8a-e9d0bb3f6940" + "712cf5fa-7ab8-4229-92ae-6d3253987038" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T164100Z:c662c921-097b-458e-8e8a-e9d0bb3f6940" + "WESTUS2:20170401T142229Z:712cf5fa-7ab8-4229-92ae-6d3253987038" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -321,26 +321,26 @@ "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2?api-version=2016-09-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL1Rlc3RSRzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL3Rlc3RDcmVhdGVDbHVzdGVyMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"durabilityLevel\": \"Bronze\",\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5\r\n }\r\n ],\r\n \"vmImage\": \"Windows\"\r\n },\r\n \"location\": \"South Central US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"reliabilityLevel\": \"Silver\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"durabilityLevel\": \"Bronze\",\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5\r\n }\r\n ],\r\n \"vmImage\": \"Windows\"\r\n },\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "700" + "667" ], "x-ms-client-request-id": [ - "c661b3a5-fc9c-4f29-aaaa-7697709f80af" + "2d052e9b-247e-4f6a-a7a2-4d826f117d44" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636256248609783505\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"78eb0991-7917-48ec-af39-50680e6aa3bb\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/78eb0991-7917-48ec-af39-50680e6aa3bb\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636266533494387491\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8c0d53d2-fe48-48b7-9e76-65ac1a5de496\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8c0d53d2-fe48-48b7-9e76-65ac1a5de496\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -352,7 +352,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 16:41:02 GMT" + "Sat, 01 Apr 2017 14:22:29 GMT" ], "Pragma": [ "no-cache" @@ -376,13 +376,13 @@ "1198" ], "x-ms-request-id": [ - "4ca2cb85-2293-46a6-acdc-ff7a5db7c356" + "370834b5-6c14-400c-a4fd-62106baaac7d" ], "x-ms-correlation-request-id": [ - "4ca2cb85-2293-46a6-acdc-ff7a5db7c356" + "370834b5-6c14-400c-a4fd-62106baaac7d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T164102Z:4ca2cb85-2293-46a6-acdc-ff7a5db7c356" + "WESTUS2:20170401T142230Z:370834b5-6c14-400c-a4fd-62106baaac7d" ] }, "StatusCode": 200 diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestDeleteClusterResource/TestDelete.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestDeleteClusterResource/TestDelete.json index f4b213e5e09f..37fd91d7f263 100644 --- a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestDeleteClusterResource/TestDelete.json +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestDeleteClusterResource/TestDelete.json @@ -13,7 +13,7 @@ "38" ], "x-ms-client-request-id": [ - "0f7e9f3e-6350-4c0d-af6b-c93fb9eea396" + "f0b2beb2-bfe0-4968-bd25-c5c02a85ed80" ], "accept-language": [ "en-US" @@ -38,22 +38,22 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 17:24:51 GMT" + "Sat, 01 Apr 2017 14:21:57 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-request-id": [ - "2a2cdad0-c27f-4a7c-b11f-6de04702b577" + "2e8bb922-3186-40b0-9a8c-67ac43666ee6" ], "x-ms-correlation-request-id": [ - "2a2cdad0-c27f-4a7c-b11f-6de04702b577" + "2e8bb922-3186-40b0-9a8c-67ac43666ee6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T172452Z:2a2cdad0-c27f-4a7c-b11f-6de04702b577" + "CENTRALUS:20170401T142158Z:2e8bb922-3186-40b0-9a8c-67ac43666ee6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -65,26 +65,26 @@ "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster?api-version=2016-09-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL3Rlc3REZWxldGVyZy9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvdGVzdERlbGV0ZUNsdXN0ZXI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"durabilityLevel\": \"Bronze\",\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5\r\n }\r\n ],\r\n \"vmImage\": \"Windows\"\r\n },\r\n \"location\": \"South Central US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"reliabilityLevel\": \"Silver\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"durabilityLevel\": \"Bronze\",\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5\r\n }\r\n ],\r\n \"vmImage\": \"Windows\"\r\n },\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "700" + "667" ], "x-ms-client-request-id": [ - "d7db1c43-254e-4df5-9e29-d1a99c00ebdf" + "e401193e-3cad-40eb-ab2a-183eb157e8f8" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster\",\r\n \"name\": \"testDeleteCluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636256274925331960\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"0274194d-0899-4a6a-8206-7a02fcdff1c5\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0274194d-0899-4a6a-8206-7a02fcdff1c5\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster\",\r\n \"name\": \"testDeleteCluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636266533197099868\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"ec67ff99-9971-4c27-94d0-fc32dae8884c\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/ec67ff99-9971-4c27-94d0-fc32dae8884c\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -96,7 +96,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 17:24:54 GMT" + "Sat, 01 Apr 2017 14:22:00 GMT" ], "Pragma": [ "no-cache" @@ -117,16 +117,16 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "b1b6a511-3529-4531-aaf8-52496e052a51" + "74ccd43e-0f59-4b80-b0d6-065f29105a93" ], "x-ms-correlation-request-id": [ - "b1b6a511-3529-4531-aaf8-52496e052a51" + "74ccd43e-0f59-4b80-b0d6-065f29105a93" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T172454Z:b1b6a511-3529-4531-aaf8-52496e052a51" + "CENTRALUS:20170401T142200Z:74ccd43e-0f59-4b80-b0d6-065f29105a93" ] }, "StatusCode": 200 @@ -138,17 +138,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65d977eb-c7d6-41f1-af38-d2cfcdf557c9" + "223a535b-91b9-4417-a7a6-3dbf22b9fbae" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster\",\r\n \"name\": \"testDeleteCluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636256274925331960\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"0274194d-0899-4a6a-8206-7a02fcdff1c5\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0274194d-0899-4a6a-8206-7a02fcdff1c5\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster\",\r\n \"name\": \"testDeleteCluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636266533197099868\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"ec67ff99-9971-4c27-94d0-fc32dae8884c\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/ec67ff99-9971-4c27-94d0-fc32dae8884c\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -160,7 +160,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 17:24:54 GMT" + "Sat, 01 Apr 2017 14:22:00 GMT" ], "Pragma": [ "no-cache" @@ -182,16 +182,16 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14993" ], "x-ms-request-id": [ - "e8f5abdd-e495-45b0-9fa8-a8afafb453e2" + "960d1dc3-6f7c-4229-8c7c-a47ff6d5bb15" ], "x-ms-correlation-request-id": [ - "e8f5abdd-e495-45b0-9fa8-a8afafb453e2" + "960d1dc3-6f7c-4229-8c7c-a47ff6d5bb15" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T172454Z:e8f5abdd-e495-45b0-9fa8-a8afafb453e2" + "CENTRALUS:20170401T142200Z:960d1dc3-6f7c-4229-8c7c-a47ff6d5bb15" ] }, "StatusCode": 200 @@ -203,17 +203,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f5b284f-e269-4db4-93e5-edcf0ea645e8" + "29d7098b-60a1-44e7-861b-b246a396997c" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster\",\r\n \"name\": \"testDeleteCluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636256274925331960\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"0274194d-0899-4a6a-8206-7a02fcdff1c5\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0274194d-0899-4a6a-8206-7a02fcdff1c5\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testDeleterg/providers/Microsoft.ServiceFabric/clusters/testDeleteCluster\",\r\n \"name\": \"testDeleteCluster\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636266533197099868\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"ec67ff99-9971-4c27-94d0-fc32dae8884c\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/ec67ff99-9971-4c27-94d0-fc32dae8884c\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -225,7 +225,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 17:24:54 GMT" + "Sat, 01 Apr 2017 14:22:00 GMT" ], "Pragma": [ "no-cache" @@ -247,16 +247,16 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14992" ], "x-ms-request-id": [ - "d0ad5bf9-fd09-45a7-bd2a-1ab8e1261975" + "dc8a0c10-708e-42fc-a44d-45c2007910ad" ], "x-ms-correlation-request-id": [ - "d0ad5bf9-fd09-45a7-bd2a-1ab8e1261975" + "dc8a0c10-708e-42fc-a44d-45c2007910ad" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T172454Z:d0ad5bf9-fd09-45a7-bd2a-1ab8e1261975" + "CENTRALUS:20170401T142200Z:dc8a0c10-708e-42fc-a44d-45c2007910ad" ] }, "StatusCode": 200 @@ -268,14 +268,14 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55bc2c90-9923-4d4d-a9df-737a50c7dd5b" + "2df1cae1-68a2-406e-85be-48f0fc151d33" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" ] }, "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.ServiceFabric/clusters/testDeleteCluster' under resource group 'testDeleterg' was not found.\"\r\n }\r\n}", @@ -293,7 +293,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 17:24:55 GMT" + "Sat, 01 Apr 2017 14:22:01 GMT" ], "Pragma": [ "no-cache" @@ -302,13 +302,13 @@ "gateway" ], "x-ms-request-id": [ - "fb28ed61-b2ad-4fc1-8362-1478ada74b82" + "eefc261b-d4ee-4c9c-8a5a-b44d02aee6f8" ], "x-ms-correlation-request-id": [ - "fb28ed61-b2ad-4fc1-8362-1478ada74b82" + "eefc261b-d4ee-4c9c-8a5a-b44d02aee6f8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T172455Z:fb28ed61-b2ad-4fc1-8362-1478ada74b82" + "CENTRALUS:20170401T142201Z:eefc261b-d4ee-4c9c-8a5a-b44d02aee6f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -323,14 +323,14 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73d6bb40-a8ee-40f0-9ac2-fff8aabbfae0" + "4ef7d0a4-f991-4b20-8dd3-c83592455452" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -345,7 +345,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 17:24:55 GMT" + "Sat, 01 Apr 2017 14:22:01 GMT" ], "Pragma": [ "no-cache" @@ -360,16 +360,16 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-request-id": [ - "13a3aeb1-7e04-463a-8acd-6f01627052fc" + "2f3becab-f478-4655-b4ea-95442f4be129" ], "x-ms-correlation-request-id": [ - "13a3aeb1-7e04-463a-8acd-6f01627052fc" + "2f3becab-f478-4655-b4ea-95442f4be129" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T172455Z:13a3aeb1-7e04-463a-8acd-6f01627052fc" + "CENTRALUS:20170401T142201Z:2f3becab-f478-4655-b4ea-95442f4be129" ] }, "StatusCode": 200 @@ -381,14 +381,14 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f1c6b6d-6102-4673-9f05-de95dd33fe60" + "e2c40526-49af-448d-a1b0-1577ffd9efa7" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" ] }, "ResponseBody": "", @@ -400,22 +400,22 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 17:24:55 GMT" + "Sat, 01 Apr 2017 14:22:01 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-request-id": [ - "cf6ca5ba-c2f8-4c8d-92ac-9d251b63df7c" + "ef4e4753-9ab3-482a-acb6-209e563f76a8" ], "x-ms-correlation-request-id": [ - "cf6ca5ba-c2f8-4c8d-92ac-9d251b63df7c" + "ef4e4753-9ab3-482a-acb6-209e563f76a8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T172455Z:cf6ca5ba-c2f8-4c8d-92ac-9d251b63df7c" + "CENTRALUS:20170401T142202Z:ef4e4753-9ab3-482a-acb6-209e563f76a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestGetClusterResource/TestGet.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestGetClusterResource/TestGet.json index ac144b8bbc19..8ed2559daa3c 100644 --- a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestGetClusterResource/TestGet.json +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestGetClusterResource/TestGet.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "374ac39b-8d8b-4f48-943b-6f7d3c895fb1" + "8802f3bc-dbfd-449e-8b35-7cca1e6a3b77" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaym-test-20170318-194608\",\r\n \"name\": \"abhaym-test-20170318-194608\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703100151\",\r\n \"name\": \"abhaymtest1703100151\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703131739\",\r\n \"name\": \"abhaymtest1703131739\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703140846\",\r\n \"name\": \"abhaymtest1703140846\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703142040\",\r\n \"name\": \"abhaymtest1703142040\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703152214\",\r\n \"name\": \"abhaymtest1703152214\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703160653\",\r\n \"name\": \"abhaymtest1703160653\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703162329\",\r\n \"name\": \"abhaymtest1703162329\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703162340\",\r\n \"name\": \"abhaymtest1703162340\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703170025\",\r\n \"name\": \"abhaymtest1703170025\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703170037\",\r\n \"name\": \"abhaymtest1703170037\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182049\",\r\n \"name\": \"abhaymtest1703182049\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182157\",\r\n \"name\": \"abhaymtest1703182157\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182207\",\r\n \"name\": \"abhaymtest1703182207\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest06\",\r\n \"name\": \"abhaytest06\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/Default-ServiceBus-9653\",\r\n \"name\": \"Default-ServiceBus-9653\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/deployertest\",\r\n \"name\": \"deployertest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykeyvaultrg1\",\r\n \"name\": \"mykeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newkeyvaultrg1\",\r\n \"name\": \"newkeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newkeyvaultrg3\",\r\n \"name\": \"newkeyvaultrg3\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same1rg\",\r\n \"name\": \"same1rg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same2rg\",\r\n \"name\": \"same2rg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same2rgg\",\r\n \"name\": \"same2rgg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklinuxtest01\",\r\n \"name\": \"sdklinuxtest01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklusterrg\",\r\n \"name\": \"sdklusterrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestkeyvaultrg\",\r\n \"name\": \"sdktestkeyvaultrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestrg2\",\r\n \"name\": \"sdktestrg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/SecureBaseImage\",\r\n \"name\": \"SecureBaseImage\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfrpkeyvaultrg1\",\r\n \"name\": \"sfrpkeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sftestkeyvaultrg\",\r\n \"name\": \"sftestkeyvaultrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sftestkkrg1\",\r\n \"name\": \"sftestkkrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1\",\r\n \"name\": \"testCreaterg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg\",\r\n \"name\": \"testDeleterg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1\",\r\n \"name\": \"TestRG1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testrg111\",\r\n \"name\": \"testrg111\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testsdkdnetrestrg\",\r\n \"name\": \"testsdkdnetrestrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/VmExtnAppInsightTest\",\r\n \"name\": \"VmExtnAppInsightTest\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161115-012828172-v2\",\r\n \"name\": \"wftsvc-bm-20161115-012828172-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161116-012248545-v2\",\r\n \"name\": \"wftsvc-bm-20161116-012248545-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161117-013025621-v2\",\r\n \"name\": \"wftsvc-bm-20161117-013025621-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161118-162552118-v2\",\r\n \"name\": \"wftsvc-bm-20161118-162552118-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161119-020853683-v2\",\r\n \"name\": \"wftsvc-bm-20161119-020853683-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161120-015112327-v2\",\r\n \"name\": \"wftsvc-bm-20161120-015112327-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161121-013411054-v2\",\r\n \"name\": \"wftsvc-bm-20161121-013411054-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161122-014033729-v2\",\r\n \"name\": \"wftsvc-bm-20161122-014033729-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161123-020328423-v2\",\r\n \"name\": \"wftsvc-bm-20161123-020328423-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161124-013118943-v2\",\r\n \"name\": \"wftsvc-bm-20161124-013118943-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161125-012512715-v2\",\r\n \"name\": \"wftsvc-bm-20161125-012512715-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161126-012537693-v2\",\r\n \"name\": \"wftsvc-bm-20161126-012537693-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161127-012554430-v2\",\r\n \"name\": \"wftsvc-bm-20161127-012554430-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161128-012517911-v2\",\r\n \"name\": \"wftsvc-bm-20161128-012517911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161129-012602111-v2\",\r\n \"name\": \"wftsvc-bm-20161129-012602111-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161130-022145798-v2\",\r\n \"name\": \"wftsvc-bm-20161130-022145798-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161201-014317317-v2\",\r\n \"name\": \"wftsvc-bm-20161201-014317317-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161202-012812276-v2\",\r\n \"name\": \"wftsvc-bm-20161202-012812276-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161203-012713277-v2\",\r\n \"name\": \"wftsvc-bm-20161203-012713277-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161206-025602238-v2\",\r\n \"name\": \"wftsvc-bm-20161206-025602238-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161207-012657615-v2\",\r\n \"name\": \"wftsvc-bm-20161207-012657615-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161208-024401245-v2\",\r\n \"name\": \"wftsvc-bm-20161208-024401245-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161209-012721060-v2\",\r\n \"name\": \"wftsvc-bm-20161209-012721060-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161210-012529259-v2\",\r\n \"name\": \"wftsvc-bm-20161210-012529259-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161211-012543460-v2\",\r\n \"name\": \"wftsvc-bm-20161211-012543460-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161212-012643580-v2\",\r\n \"name\": \"wftsvc-bm-20161212-012643580-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161213-135747390-v2\",\r\n \"name\": \"wftsvc-bm-20161213-135747390-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161214-020204911-v2\",\r\n \"name\": \"wftsvc-bm-20161214-020204911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161215-012912635-v2\",\r\n \"name\": \"wftsvc-bm-20161215-012912635-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161216-014118622-v2\",\r\n \"name\": \"wftsvc-bm-20161216-014118622-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161217-013027250-v2\",\r\n \"name\": \"wftsvc-bm-20161217-013027250-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161218-042923602-v2\",\r\n \"name\": \"wftsvc-bm-20161218-042923602-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161219-024910832-v2\",\r\n \"name\": \"wftsvc-bm-20161219-024910832-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161220-021526028-v2\",\r\n \"name\": \"wftsvc-bm-20161220-021526028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161221-014332493-v2\",\r\n \"name\": \"wftsvc-bm-20161221-014332493-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161222-190424958-v2\",\r\n \"name\": \"wftsvc-bm-20161222-190424958-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161223-020219887-v2\",\r\n \"name\": \"wftsvc-bm-20161223-020219887-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161224-012754028-v2\",\r\n \"name\": \"wftsvc-bm-20161224-012754028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161225-012413900-v2\",\r\n \"name\": \"wftsvc-bm-20161225-012413900-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161226-012537497-v2\",\r\n \"name\": \"wftsvc-bm-20161226-012537497-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161227-012619489-v2\",\r\n \"name\": \"wftsvc-bm-20161227-012619489-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161228-012627978-v2\",\r\n \"name\": \"wftsvc-bm-20161228-012627978-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161229-013147614-v2\",\r\n \"name\": \"wftsvc-bm-20161229-013147614-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161230-012714627-v2\",\r\n \"name\": \"wftsvc-bm-20161230-012714627-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-mwh-20161203-012707281-v2\",\r\n \"name\": \"wftsvc-mwh-20161203-012707281-v2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault1\",\r\n \"name\": \"wftsvcKeyVault1\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault2\",\r\n \"name\": \"wftsvcKeyVault2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault3\",\r\n \"name\": \"wftsvcKeyVault3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault4\",\r\n \"name\": \"wftsvcKeyVault4\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault5\",\r\n \"name\": \"wftsvcKeyVault5\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault6\",\r\n \"name\": \"wftsvcKeyVault6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVaultAM\",\r\n \"name\": \"wftsvcKeyVaultAM\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/xunlu-test-20170318-205509\",\r\n \"name\": \"xunlu-test-20170318-205509\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/xunlustore\",\r\n \"name\": \"xunlustore\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/xunlutest1703182056\",\r\n \"name\": \"xunlutest1703182056\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016snrg\",\r\n \"name\": \"zikaiwtest10122016snrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaarg\",\r\n \"name\": \"aaaaarg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaym-test-20170318-194608\",\r\n \"name\": \"abhaym-test-20170318-194608\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703142040\",\r\n \"name\": \"abhaymtest1703142040\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703152214\",\r\n \"name\": \"abhaymtest1703152214\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703160653\",\r\n \"name\": \"abhaymtest1703160653\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703162329\",\r\n \"name\": \"abhaymtest1703162329\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703162340\",\r\n \"name\": \"abhaymtest1703162340\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703170025\",\r\n \"name\": \"abhaymtest1703170025\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703170037\",\r\n \"name\": \"abhaymtest1703170037\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182049\",\r\n \"name\": \"abhaymtest1703182049\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182157\",\r\n \"name\": \"abhaymtest1703182157\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182207\",\r\n \"name\": \"abhaymtest1703182207\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703201843\",\r\n \"name\": \"abhaymtest1703201843\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703201944\",\r\n \"name\": \"abhaymtest1703201944\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703202006\",\r\n \"name\": \"abhaymtest1703202006\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703210414\",\r\n \"name\": \"abhaymtest1703210414\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703210416\",\r\n \"name\": \"abhaymtest1703210416\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703212351\",\r\n \"name\": \"abhaymtest1703212351\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703220723\",\r\n \"name\": \"abhaymtest1703220723\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703220724\",\r\n \"name\": \"abhaymtest1703220724\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703230444\",\r\n \"name\": \"abhaymtest1703230444\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703230456\",\r\n \"name\": \"abhaymtest1703230456\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703230505\",\r\n \"name\": \"abhaymtest1703230505\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703230549\",\r\n \"name\": \"abhaymtest1703230549\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703290002\",\r\n \"name\": \"abhaymtest1703290002\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703290020\",\r\n \"name\": \"abhaymtest1703290020\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703290021\",\r\n \"name\": \"abhaymtest1703290021\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703291956\",\r\n \"name\": \"abhaymtest1703291956\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest06\",\r\n \"name\": \"abhaytest06\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest07\",\r\n \"name\": \"abhaytest07\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest10\",\r\n \"name\": \"abhaytest10\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest11\",\r\n \"name\": \"abhaytest11\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/Default-ServiceBus-9653\",\r\n \"name\": \"Default-ServiceBus-9653\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/deployertest\",\r\n \"name\": \"deployertest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykeyvaultrg1\",\r\n \"name\": \"mykeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykvrg1\",\r\n \"name\": \"mykvrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykvvrg1\",\r\n \"name\": \"mykvvrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykvvrg2\",\r\n \"name\": \"mykvvrg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykvvrgg2\",\r\n \"name\": \"mykvvrgg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newkeyvaultrg1\",\r\n \"name\": \"newkeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newkeyvaultrg3\",\r\n \"name\": \"newkeyvaultrg3\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newrecordclusterrg1\",\r\n \"name\": \"newrecordclusterrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newsftestrg1\",\r\n \"name\": \"newsftestrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newsftestrg3\",\r\n \"name\": \"newsftestrg3\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newtestresourcegroup1\",\r\n \"name\": \"newtestresourcegroup1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same1rg\",\r\n \"name\": \"same1rg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same2rg\",\r\n \"name\": \"same2rg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same2rgg\",\r\n \"name\": \"same2rgg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklinuxtest01\",\r\n \"name\": \"sdklinuxtest01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklusterrg\",\r\n \"name\": \"sdklusterrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestkeyvaultrg\",\r\n \"name\": \"sdktestkeyvaultrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestrg2\",\r\n \"name\": \"sdktestrg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/SecureBaseImage\",\r\n \"name\": \"SecureBaseImage\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfrpkeyvaultrg1\",\r\n \"name\": \"sfrpkeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sftestkeyvaultrg\",\r\n \"name\": \"sftestkeyvaultrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sftestkkrg1\",\r\n \"name\": \"sftestkkrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1\",\r\n \"name\": \"testCreaterg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testpowershellclusterrg1\",\r\n \"name\": \"testpowershellclusterrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1\",\r\n \"name\": \"TestRG1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testrg111\",\r\n \"name\": \"testrg111\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testsdkdnetrestrg\",\r\n \"name\": \"testsdkdnetrestrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/VmExtnAppInsightTest\",\r\n \"name\": \"VmExtnAppInsightTest\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-mwh-20161203-012707281-v2\",\r\n \"name\": \"wftsvc-mwh-20161203-012707281-v2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault1\",\r\n \"name\": \"wftsvcKeyVault1\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault2\",\r\n \"name\": \"wftsvcKeyVault2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault3\",\r\n \"name\": \"wftsvcKeyVault3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault4\",\r\n \"name\": \"wftsvcKeyVault4\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault5\",\r\n \"name\": \"wftsvcKeyVault5\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault6\",\r\n \"name\": \"wftsvcKeyVault6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVaultAM\",\r\n \"name\": \"wftsvcKeyVaultAM\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/xunlustore\",\r\n \"name\": \"xunlustore\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016snrg\",\r\n \"name\": \"zikaiwtest10122016snrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 15:23:37 GMT" + "Sat, 01 Apr 2017 14:21:40 GMT" ], "Pragma": [ "no-cache" @@ -38,16 +38,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14939" + "14991" ], "x-ms-request-id": [ - "8a0d1dbd-ecf8-4e10-a382-f88a7c4c4ea0" + "957ea6dd-02b0-4187-8080-6adfa61f7ecc" ], "x-ms-correlation-request-id": [ - "8a0d1dbd-ecf8-4e10-a382-f88a7c4c4ea0" + "957ea6dd-02b0-4187-8080-6adfa61f7ecc" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T152337Z:8a0d1dbd-ecf8-4e10-a382-f88a7c4c4ea0" + "CENTRALUS:20170401T142141Z:957ea6dd-02b0-4187-8080-6adfa61f7ecc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -56,13 +56,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaym-test-20170318-194608/resources?$filter=resourceType%20eq%20'Microsoft.ServiceFabric%2Fclusters'&api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FiaGF5bS10ZXN0LTIwMTcwMzE4LTE5NDYwOC9yZXNvdXJjZXM/JGZpbHRlcj1yZXNvdXJjZVR5cGUlMjBlcSUyMCdNaWNyb3NvZnQuU2VydmljZUZhYnJpYyUyRmNsdXN0ZXJzJyZhcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaarg/resources?$filter=resourceType%20eq%20'Microsoft.ServiceFabric%2Fclusters'&api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FhYWFhcmcvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMlMkZjbHVzdGVycycmYXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa2bea48-a666-48b0-86e5-a5d3062f0445" + "c366b616-5608-4ad0-8dba-2dd54dbd5443" ], "accept-language": [ "en-US" @@ -72,7 +72,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaa\",\r\n \"name\": \"aaaaa\",\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaa\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +84,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 15:23:38 GMT" + "Sat, 01 Apr 2017 14:21:43 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +93,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14903" + "14986" ], "x-ms-request-id": [ - "377a5d58-aa0e-4122-9caf-da6bab36f8c1" + "8562d380-2106-4b83-99d9-c56b8e0677cc" ], "x-ms-correlation-request-id": [ - "377a5d58-aa0e-4122-9caf-da6bab36f8c1" + "8562d380-2106-4b83-99d9-c56b8e0677cc" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T152339Z:377a5d58-aa0e-4122-9caf-da6bab36f8c1" + "CENTRALUS:20170401T142143Z:8562d380-2106-4b83-99d9-c56b8e0677cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,26 +111,91 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaym-test-20170318-194608/providers/Microsoft.ServiceFabric/clusters/donotexisting?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FiaGF5bS10ZXN0LTIwMTcwMzE4LTE5NDYwOC9wcm92aWRlcnMvTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMvY2x1c3RlcnMvZG9ub3RleGlzdGluZz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaa?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FhYWFhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL2FhYWFhP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb976456-03a0-4252-b4cf-479b821b2c4d" + "99269232-ea62-497b-9890-39704a836b26" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.ServiceFabric/clusters/donotexisting' under resource group 'abhaym-test-20170318-194608' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaa\",\r\n \"name\": \"aaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636256214302176420\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": true,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaa6039\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaa6039.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaa6039.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaa6039.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 01 Apr 2017 14:21:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14980" + ], + "x-ms-request-id": [ + "e95ce259-ce37-4037-8b1f-0743de1d370d" + ], + "x-ms-correlation-request-id": [ + "e95ce259-ce37-4037-8b1f-0743de1d370d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170401T142144Z:e95ce259-ce37-4037-8b1f-0743de1d370d" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters/donotexisting?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FhYWFhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzL2Rvbm90ZXhpc3Rpbmc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9671c943-ec00-475d-be03-a1d4b781dae3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.ServiceFabric/clusters/donotexisting' under resource group 'aaaaarg' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "177" + "157" ], "Content-Type": [ "application/json; charset=utf-8" @@ -142,7 +207,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 15:23:39 GMT" + "Sat, 01 Apr 2017 14:21:44 GMT" ], "Pragma": [ "no-cache" @@ -151,13 +216,13 @@ "gateway" ], "x-ms-request-id": [ - "548769f9-fe8c-409b-8045-420d32ae0d4f" + "c71378b8-39ed-48e2-9641-b79e1ca3c986" ], "x-ms-correlation-request-id": [ - "548769f9-fe8c-409b-8045-420d32ae0d4f" + "c71378b8-39ed-48e2-9641-b79e1ca3c986" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T152339Z:548769f9-fe8c-409b-8045-420d32ae0d4f" + "CENTRALUS:20170401T142144Z:c71378b8-39ed-48e2-9641-b79e1ca3c986" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestList.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestList.json index eeb933cadc0e..08ff544db434 100644 --- a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestList.json +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestList.json @@ -7,17 +7,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0211120b-911f-49e7-afb7-043142f8ba27" + "5ea49bc6-54c5-4794-823e-f3ffec1dde93" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/deployertest/providers/Microsoft.ServiceFabric/clusters/deployertest\",\r\n \"name\": \"deployertest\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"deployertest\"\r\n },\r\n \"etag\": \"W/\\\"636197629293638021\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"59e810a3-1644-47e2-86b5-a66e916c0bb8\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://deployertest.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/59e810a3-1644-47e2-86b5-a66e916c0bb8\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsdeployertest6267\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsdeployertest6267.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsdeployertest6267.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsdeployertest6267.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"deployer\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/wftsvc-mwh-20161203-012707281-v2/providers/Microsoft.ServiceFabric/clusters/wftsvc-mwh-20161203-\",\r\n \"name\": \"wftsvc-mwh-20161203-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"wftsvc-mwh-20161203-\"\r\n },\r\n \"etag\": \"W/\\\"636163252596227409\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"f7c0ff3b-0ff5-41df-8f0c-4e51f46bee79\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://wftsvc-mwh-20161203-012707281-v2.westus2.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus2.servicefabric.azure.com/runtime/clusters/f7c0ff3b-0ff5-41df-8f0c-4e51f46bee79\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagmwh20161203012707\",\r\n \"primaryAccessKey\": \"2+20fZYSmdfT8KUPCUu5UKXvHeLKTuFwqm3UBJCkmX42iKPqq9qLxc09cVx0Uolaw6s6HRUtIOm83uHMPSKEdg==\",\r\n \"secondaryAccessKey\": \"Mn8li9IXuNnQgfdTlFKR8eGW+HHKopQa7tSgKF4WlYemA2xWxbZCSV/toP4142FzQEg72HEH7q0AhTXDzDXHKg==\",\r\n \"blobEndpoint\": \"https://diagmwh20161203012707.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagmwh20161203012707.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagmwh20161203012707.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703100151/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703100151\",\r\n \"name\": \"abhaymtest1703100151\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703100151\"\r\n },\r\n \"etag\": \"W/\\\"636247075411015809\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"89b0771c-c0d5-4a85-a9fb-c885b40ab838\",\r\n \"clusterCodeVersion\": \"5.5.201.0\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"http://abhaymtest1703100151.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/89b0771c-c0d5-4a85-a9fb-c885b40ab838\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"qnp4zdsvldwko2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://qnp4zdsvldwko2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://qnp4zdsvldwko2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://qnp4zdsvldwko2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703131739/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703131739\",\r\n \"name\": \"abhaymtest1703131739\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703131739\"\r\n },\r\n \"etag\": \"W/\\\"636250236104319049\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"4f8ad527-8e40-495f-bf68-d7d0febccc04\",\r\n \"clusterCodeVersion\": \"5.5.201.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703131739.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/4f8ad527-8e40-495f-bf68-d7d0febccc04\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"gsuc32mrgh5n22\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://gsuc32mrgh5n22.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://gsuc32mrgh5n22.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://gsuc32mrgh5n22.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703140846/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703140846\",\r\n \"name\": \"abhaymtest1703140846\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703140846\"\r\n },\r\n \"etag\": \"W/\\\"636250780358172093\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"c29d4d75-d9a7-4fed-a695-bb114e7661a2\",\r\n \"clusterCodeVersion\": \"5.5.201.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703140846.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/c29d4d75-d9a7-4fed-a695-bb114e7661a2\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"f75xkjt4t2qwg2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://f75xkjt4t2qwg2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://f75xkjt4t2qwg2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://f75xkjt4t2qwg2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703142040/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703142040\",\r\n \"name\": \"abhaymtest1703142040\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703142040\"\r\n },\r\n \"etag\": \"W/\\\"636251208498220241\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"0710c294-b648-430e-a8c0-07dec65ddaaf\",\r\n \"clusterCodeVersion\": \"5.5.201.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703142040.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0710c294-b648-430e-a8c0-07dec65ddaaf\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"kfu5abfrzua2u2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://kfu5abfrzua2u2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://kfu5abfrzua2u2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://kfu5abfrzua2u2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703152214/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703152214\",\r\n \"name\": \"abhaymtest1703152214\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703152214\"\r\n },\r\n \"etag\": \"W/\\\"636252191098056200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"d6926106-806e-4838-9011-6f2d83369b46\",\r\n \"clusterCodeVersion\": \"5.5.201.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703152214.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/d6926106-806e-4838-9011-6f2d83369b46\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"irsjpl3rjsmpk2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://irsjpl3rjsmpk2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://irsjpl3rjsmpk2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://irsjpl3rjsmpk2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703160653/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703160653\",\r\n \"name\": \"abhaymtest1703160653\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703160653\"\r\n },\r\n \"etag\": \"W/\\\"636252441405373694\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"05993e81-f074-4a75-aa0e-be74340b35e0\",\r\n \"clusterCodeVersion\": \"5.5.201.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703160653.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/05993e81-f074-4a75-aa0e-be74340b35e0\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"ot75v2adi5eho2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://ot75v2adi5eho2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://ot75v2adi5eho2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://ot75v2adi5eho2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703162329/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703162329\",\r\n \"name\": \"abhaymtest1703162329\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703162329\"\r\n },\r\n \"etag\": \"W/\\\"636253038124659648\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"c0c53e28-8549-4584-9f5d-fdb077cae3d2\",\r\n \"clusterCodeVersion\": \"5.6.134.9494\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"http://abhaymtest1703162329.westcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/c0c53e28-8549-4584-9f5d-fdb077cae3d2\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"fgyzih33ttzpm2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://fgyzih33ttzpm2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://fgyzih33ttzpm2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://fgyzih33ttzpm2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703162340/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703162340\",\r\n \"name\": \"abhaymtest1703162340\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703162340\"\r\n },\r\n \"etag\": \"W/\\\"636253046173461141\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"c1406cb6-e459-48e2-b485-f8bc45e92fd2\",\r\n \"clusterCodeVersion\": \"5.5.221.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703162340.westcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/c1406cb6-e459-48e2-b485-f8bc45e92fd2\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"4ir6ckcxu47ho2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://4ir6ckcxu47ho2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://4ir6ckcxu47ho2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://4ir6ckcxu47ho2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703170025/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703170025\",\r\n \"name\": \"abhaymtest1703170025\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703170025\"\r\n },\r\n \"etag\": \"W/\\\"636253072032261700\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"df7aa3e8-ebeb-43c6-8114-f0c7b9c91ff0\",\r\n \"clusterCodeVersion\": \"5.5.221.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703170025.westcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/df7aa3e8-ebeb-43c6-8114-f0c7b9c91ff0\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"innh4jgb7eu7a2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://innh4jgb7eu7a2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://innh4jgb7eu7a2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://innh4jgb7eu7a2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703170037/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703170037\",\r\n \"name\": \"abhaymtest1703170037\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703170037\"\r\n },\r\n \"etag\": \"W/\\\"636253079366086660\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"a6ef2e2a-c792-4dd2-8a5a-fcdcb6e7be9a\",\r\n \"clusterCodeVersion\": \"5.6.133.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703170037.westcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/a6ef2e2a-c792-4dd2-8a5a-fcdcb6e7be9a\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"mazzsekewyiwc2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://mazzsekewyiwc2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://mazzsekewyiwc2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://mazzsekewyiwc2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703182049/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703182049\",\r\n \"name\": \"abhaymtest1703182049\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703182049\"\r\n },\r\n \"etag\": \"W/\\\"636254670316380586\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"f3de6f6d-cf9e-4e97-8529-1c7f6649971d\",\r\n \"clusterCodeVersion\": \"5.6.134.9494\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"http://abhaymtest1703182049.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/f3de6f6d-cf9e-4e97-8529-1c7f6649971d\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"e2i5ab3jkypoe2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://e2i5ab3jkypoe2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://e2i5ab3jkypoe2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://e2i5ab3jkypoe2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703182157/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703182157\",\r\n \"name\": \"abhaymtest1703182157\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703182157\"\r\n },\r\n \"etag\": \"W/\\\"636254711071756618\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"03c5e366-3deb-4ade-b539-6357690341ec\",\r\n \"clusterCodeVersion\": \"5.6.134.9494\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"http://abhaymtest1703182157.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/03c5e366-3deb-4ade-b539-6357690341ec\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"5iaifyl4gk3u42\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://5iaifyl4gk3u42.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://5iaifyl4gk3u42.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://5iaifyl4gk3u42.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703182207/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703182207\",\r\n \"name\": \"abhaymtest1703182207\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703182207\"\r\n },\r\n \"etag\": \"W/\\\"636254717000562216\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8c49af0a-7f51-4a13-b32c-61e511231330\",\r\n \"clusterCodeVersion\": \"5.6.134.9494\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"http://abhaymtest1703182207.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8c49af0a-7f51-4a13-b32c-61e511231330\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"yg2mi2cg4n5c42\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://yg2mi2cg4n5c42.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://yg2mi2cg4n5c42.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://yg2mi2cg4n5c42.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaytest06/providers/Microsoft.ServiceFabric/clusters/abhaytest06\",\r\n \"name\": \"abhaytest06\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaytest06\"\r\n },\r\n \"etag\": \"W/\\\"636247797680333363\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"4f6e2c10-6dc5-492f-89d0-d860b40e2ced\",\r\n \"clusterCodeVersion\": \"5.5.219.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaytest06.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/4f6e2c10-6dc5-492f-89d0-d860b40e2ced\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsabhaytest069203\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsabhaytest069203.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsabhaytest069203.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsabhaytest069203.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/same2rgg/providers/Microsoft.ServiceFabric/clusters/same2\",\r\n \"name\": \"same2\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"same2\"\r\n },\r\n \"etag\": \"W/\\\"636247051842039642\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"c00a7df6-2de0-4f1b-a3a3-208e46cd7650\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"https://same2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/c00a7df6-2de0-4f1b-a3a3-208e46cd7650\",\r\n \"certificate\": {\r\n \"thumbprint\": \"9D0362B4D09B8CC2078728C5E1BD5215FEB786FD\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogssame23881\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogssame23881.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogssame23881.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogssame23881.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sdktestrg2/providers/Microsoft.ServiceFabric/clusters/sdktest\",\r\n \"name\": \"sdktest\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636244182147134148\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8d566293-3508-4d62-ba7b-056fa710c3c9\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8d566293-3508-4d62-ba7b-056fa710c3c9\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": true,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogssdktest5486\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogssdktest5486.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogssdktest5486.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogssdktest5486.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"reverseProxyEndpointPort\": 9998,\r\n \"durabilityLevel\": \"Silver\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/xunlutest1703182056/providers/Microsoft.ServiceFabric/clusters/xunlutest1703182056\",\r\n \"name\": \"xunlutest1703182056\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"xunlutest1703182056\"\r\n },\r\n \"etag\": \"W/\\\"636254674533128320\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"7868f6a1-9163-4d15-a249-0f38b89ee871\",\r\n \"clusterCodeVersion\": \"5.6.133.9494\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"http://xunlutest1703182056.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/7868f6a1-9163-4d15-a249-0f38b89ee871\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"h5nkenc66m7bo2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://h5nkenc66m7bo2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://h5nkenc66m7bo2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://h5nkenc66m7bo2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636256200795185190\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"181e8c5c-09d4-42f4-a0c5-857bd79a493f\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/181e8c5c-09d4-42f4-a0c5-857bd79a493f\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/deployertest/providers/Microsoft.ServiceFabric/clusters/deployertest\",\r\n \"name\": \"deployertest\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"deployertest\"\r\n },\r\n \"etag\": \"W/\\\"636197629293638021\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"59e810a3-1644-47e2-86b5-a66e916c0bb8\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://deployertest.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/59e810a3-1644-47e2-86b5-a66e916c0bb8\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsdeployertest6267\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsdeployertest6267.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsdeployertest6267.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsdeployertest6267.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"deployer\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westus2\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/wftsvc-mwh-20161203-012707281-v2/providers/Microsoft.ServiceFabric/clusters/wftsvc-mwh-20161203-\",\r\n \"name\": \"wftsvc-mwh-20161203-\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"wftsvc-mwh-20161203-\"\r\n },\r\n \"etag\": \"W/\\\"636163252596227409\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"f7c0ff3b-0ff5-41df-8f0c-4e51f46bee79\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://wftsvc-mwh-20161203-012707281-v2.westus2.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westus2.servicefabric.azure.com/runtime/clusters/f7c0ff3b-0ff5-41df-8f0c-4e51f46bee79\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"diagmwh20161203012707\",\r\n \"primaryAccessKey\": \"2+20fZYSmdfT8KUPCUu5UKXvHeLKTuFwqm3UBJCkmX42iKPqq9qLxc09cVx0Uolaw6s6HRUtIOm83uHMPSKEdg==\",\r\n \"secondaryAccessKey\": \"Mn8li9IXuNnQgfdTlFKR8eGW+HHKopQa7tSgKF4WlYemA2xWxbZCSV/toP4142FzQEg72HEH7q0AhTXDzDXHKg==\",\r\n \"blobEndpoint\": \"https://diagmwh20161203012707.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://diagmwh20161203012707.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://diagmwh20161203012707.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"VM2\",\r\n \"placementProperties\": {\r\n \"nodeColor\": \"Red\"\r\n },\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"westeurope\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaytest10/providers/Microsoft.ServiceFabric/clusters/abhaytest10\",\r\n \"name\": \"abhaytest10\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaytest10\"\r\n },\r\n \"etag\": \"W/\\\"636259742203563222\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"c1df46cf-2d8c-4326-a7fc-68a9f7f02a18\",\r\n \"clusterCodeVersion\": \"5.4.145.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaytest10.westeurope.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://westeurope.servicefabric.azure.com/runtime/clusters/c1df46cf-2d8c-4326-a7fc-68a9f7f02a18\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsabhaytest104765\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsabhaytest104765.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsabhaytest104765.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsabhaytest104765.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"brazilsouth\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaytest07/providers/Microsoft.ServiceFabric/clusters/abhaytest07\",\r\n \"name\": \"abhaytest07\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaytest07\"\r\n },\r\n \"etag\": \"W/\\\"636258461606589559\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"ed4cfd15-ba90-4f6b-93a0-1b01676502e4\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaytest07.brazilsouth.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://southbrazil.servicefabric.azure.com/runtime/clusters/ed4cfd15-ba90-4f6b-93a0-1b01676502e4\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsabhaytest071622\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsabhaytest071622.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsabhaytest071622.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsabhaytest071622.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"bt\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"brazilsouth\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaytest11/providers/Microsoft.ServiceFabric/clusters/abhaytest11\",\r\n \"name\": \"abhaytest11\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaytest11\"\r\n },\r\n \"etag\": \"W/\\\"636259743810711551\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"a1b5c572-6c59-44f8-98a9-ea8372b69350\",\r\n \"clusterCodeVersion\": \"5.4.164.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaytest11.brazilsouth.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://southbrazil.servicefabric.azure.com/runtime/clusters/a1b5c572-6c59-44f8-98a9-ea8372b69350\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsabhaytest112249\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsabhaytest112249.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsabhaytest112249.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsabhaytest112249.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"bt1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaa\",\r\n \"name\": \"aaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636256214302176421\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": true,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaa6039\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaa6039.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaa6039.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaa6039.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703142040/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703142040\",\r\n \"name\": \"abhaymtest1703142040\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703142040\"\r\n },\r\n \"etag\": \"W/\\\"636251208498220241\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"0710c294-b648-430e-a8c0-07dec65ddaaf\",\r\n \"clusterCodeVersion\": \"5.5.201.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703142040.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0710c294-b648-430e-a8c0-07dec65ddaaf\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"kfu5abfrzua2u2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://kfu5abfrzua2u2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://kfu5abfrzua2u2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://kfu5abfrzua2u2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703152214/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703152214\",\r\n \"name\": \"abhaymtest1703152214\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703152214\"\r\n },\r\n \"etag\": \"W/\\\"636252191098056200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"d6926106-806e-4838-9011-6f2d83369b46\",\r\n \"clusterCodeVersion\": \"5.5.201.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703152214.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/d6926106-806e-4838-9011-6f2d83369b46\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"irsjpl3rjsmpk2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://irsjpl3rjsmpk2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://irsjpl3rjsmpk2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://irsjpl3rjsmpk2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703160653/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703160653\",\r\n \"name\": \"abhaymtest1703160653\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703160653\"\r\n },\r\n \"etag\": \"W/\\\"636252441405373694\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"05993e81-f074-4a75-aa0e-be74340b35e0\",\r\n \"clusterCodeVersion\": \"5.5.201.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703160653.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/05993e81-f074-4a75-aa0e-be74340b35e0\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"ot75v2adi5eho2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://ot75v2adi5eho2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://ot75v2adi5eho2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://ot75v2adi5eho2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703162329/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703162329\",\r\n \"name\": \"abhaymtest1703162329\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703162329\"\r\n },\r\n \"etag\": \"W/\\\"636253038124659648\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"c0c53e28-8549-4584-9f5d-fdb077cae3d2\",\r\n \"clusterCodeVersion\": \"5.6.134.9494\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"http://abhaymtest1703162329.westcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/c0c53e28-8549-4584-9f5d-fdb077cae3d2\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"fgyzih33ttzpm2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://fgyzih33ttzpm2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://fgyzih33ttzpm2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://fgyzih33ttzpm2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703162340/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703162340\",\r\n \"name\": \"abhaymtest1703162340\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703162340\"\r\n },\r\n \"etag\": \"W/\\\"636253046173461141\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"c1406cb6-e459-48e2-b485-f8bc45e92fd2\",\r\n \"clusterCodeVersion\": \"5.5.221.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703162340.westcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/c1406cb6-e459-48e2-b485-f8bc45e92fd2\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"4ir6ckcxu47ho2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://4ir6ckcxu47ho2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://4ir6ckcxu47ho2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://4ir6ckcxu47ho2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703170025/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703170025\",\r\n \"name\": \"abhaymtest1703170025\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703170025\"\r\n },\r\n \"etag\": \"W/\\\"636253072032261700\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"df7aa3e8-ebeb-43c6-8114-f0c7b9c91ff0\",\r\n \"clusterCodeVersion\": \"5.5.221.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703170025.westcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/df7aa3e8-ebeb-43c6-8114-f0c7b9c91ff0\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"innh4jgb7eu7a2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://innh4jgb7eu7a2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://innh4jgb7eu7a2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://innh4jgb7eu7a2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703170037/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703170037\",\r\n \"name\": \"abhaymtest1703170037\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703170037\"\r\n },\r\n \"etag\": \"W/\\\"636253079366086660\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"a6ef2e2a-c792-4dd2-8a5a-fcdcb6e7be9a\",\r\n \"clusterCodeVersion\": \"5.6.133.9494\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703170037.westcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/a6ef2e2a-c792-4dd2-8a5a-fcdcb6e7be9a\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"mazzsekewyiwc2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://mazzsekewyiwc2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://mazzsekewyiwc2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://mazzsekewyiwc2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703182049/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703182049\",\r\n \"name\": \"abhaymtest1703182049\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703182049\"\r\n },\r\n \"etag\": \"W/\\\"636254670316380586\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"f3de6f6d-cf9e-4e97-8529-1c7f6649971d\",\r\n \"clusterCodeVersion\": \"5.6.134.9494\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"http://abhaymtest1703182049.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/f3de6f6d-cf9e-4e97-8529-1c7f6649971d\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"e2i5ab3jkypoe2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://e2i5ab3jkypoe2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://e2i5ab3jkypoe2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://e2i5ab3jkypoe2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703182157/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703182157\",\r\n \"name\": \"abhaymtest1703182157\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703182157\"\r\n },\r\n \"etag\": \"W/\\\"636254711071756618\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"03c5e366-3deb-4ade-b539-6357690341ec\",\r\n \"clusterCodeVersion\": \"5.6.134.9494\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"http://abhaymtest1703182157.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/03c5e366-3deb-4ade-b539-6357690341ec\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"5iaifyl4gk3u42\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://5iaifyl4gk3u42.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://5iaifyl4gk3u42.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://5iaifyl4gk3u42.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703182207/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703182207\",\r\n \"name\": \"abhaymtest1703182207\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703182207\"\r\n },\r\n \"etag\": \"W/\\\"636254717000562216\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8c49af0a-7f51-4a13-b32c-61e511231330\",\r\n \"clusterCodeVersion\": \"5.6.134.9494\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"http://abhaymtest1703182207.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8c49af0a-7f51-4a13-b32c-61e511231330\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"yg2mi2cg4n5c42\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://yg2mi2cg4n5c42.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://yg2mi2cg4n5c42.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://yg2mi2cg4n5c42.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703201843/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703201843\",\r\n \"name\": \"abhaymtest1703201843\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703201843\"\r\n },\r\n \"etag\": \"W/\\\"636256322519870931\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"4ef3183b-0fa8-4c4d-9ee5-9a34f80000eb\",\r\n \"clusterCodeVersion\": \"5.6.143.9494\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"http://abhaymtest1703201843.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/4ef3183b-0fa8-4c4d-9ee5-9a34f80000eb\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"tqfkeugsxpq5c2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://tqfkeugsxpq5c2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://tqfkeugsxpq5c2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://tqfkeugsxpq5c2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703201944/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703201944\",\r\n \"name\": \"abhaymtest1703201944\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703201944\"\r\n },\r\n \"etag\": \"W/\\\"636256359447254927\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8180f474-9fad-4db4-b9c1-9b03a6eef427\",\r\n \"clusterCodeVersion\": \"5.6.142.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703201944.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8180f474-9fad-4db4-b9c1-9b03a6eef427\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"62lr5rwrjypym2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://62lr5rwrjypym2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://62lr5rwrjypym2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://62lr5rwrjypym2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703202006/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703202006\",\r\n \"name\": \"abhaymtest1703202006\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703202006\"\r\n },\r\n \"etag\": \"W/\\\"636256372160219776\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"e619e5e4-a16d-4c62-a4d5-34ca4a5faf12\",\r\n \"clusterCodeVersion\": \"5.6.143.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703202006.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/e619e5e4-a16d-4c62-a4d5-34ca4a5faf12\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"edgr7mnf5dfmc2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://edgr7mnf5dfmc2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://edgr7mnf5dfmc2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://edgr7mnf5dfmc2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703210416/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703210416\",\r\n \"name\": \"abhaymtest1703210416\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703210416\"\r\n },\r\n \"etag\": \"W/\\\"636256666267146000\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"99bb7010-08b5-4b35-ad59-ad8c5d866eee\",\r\n \"clusterCodeVersion\": \"5.6.142.9494\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703210416.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/99bb7010-08b5-4b35-ad59-ad8c5d866eee\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"2ayg4z4veqsko2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://2ayg4z4veqsko2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://2ayg4z4veqsko2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://2ayg4z4veqsko2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703212351/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703212351\",\r\n \"name\": \"abhaymtest1703212351\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703212351\"\r\n },\r\n \"etag\": \"W/\\\"636257371413375804\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Failed\",\r\n \"clusterId\": \"d903d1f1-4d2b-4e3c-a24a-91050462db6d\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://abhaymtest1703212351.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/d903d1f1-4d2b-4e3c-a24a-91050462db6d\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A13273F20693D4F64DF0A95F3CC2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"hqsthf4zpysdk2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://hqsthf4zpysdk2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://hqsthf4zpysdk2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://hqsthf4zpysdk2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703220723/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703220723\",\r\n \"name\": \"abhaymtest1703220723\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703220723\"\r\n },\r\n \"etag\": \"W/\\\"636257642836946793\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"50161db7-f841-4da4-957d-9f59a01a9f93\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://abhaymtest1703220723.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/50161db7-f841-4da4-957d-9f59a01a9f93\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A13273F20693D4F64DF0A95F3CC2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"nhgf2s44nhoew2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://nhgf2s44nhoew2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://nhgf2s44nhoew2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://nhgf2s44nhoew2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703220724/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703220724\",\r\n \"name\": \"abhaymtest1703220724\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703220724\"\r\n },\r\n \"etag\": \"W/\\\"636257643365813449\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9470401e-4b1e-43fe-81d2-6d80e290f69d\",\r\n \"clusterCodeVersion\": \"5.6.142.9494\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703220724.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/9470401e-4b1e-43fe-81d2-6d80e290f69d\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"m2g7atv2da7qm2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://m2g7atv2da7qm2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://m2g7atv2da7qm2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://m2g7atv2da7qm2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703230444/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703230444\",\r\n \"name\": \"abhaymtest1703230444\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703230444\"\r\n },\r\n \"etag\": \"W/\\\"636258411338377214\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"80cacce2-0b48-4419-9791-190c4a212633\",\r\n \"clusterCodeVersion\": \"5.6.142.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703230444.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/80cacce2-0b48-4419-9791-190c4a212633\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"dju4bjbw7xrvq2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://dju4bjbw7xrvq2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://dju4bjbw7xrvq2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://dju4bjbw7xrvq2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703230456/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703230456\",\r\n \"name\": \"abhaymtest1703230456\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703230456\"\r\n },\r\n \"etag\": \"W/\\\"636258418207176135\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"f40bb2fc-7618-4a5a-b72c-11134b7b23b8\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://abhaymtest1703230456.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/f40bb2fc-7618-4a5a-b72c-11134b7b23b8\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A13273F20693D4F64DF0A95F3CC2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"4oxwyjavui2sa2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://4oxwyjavui2sa2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://4oxwyjavui2sa2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://4oxwyjavui2sa2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703230505/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703230505\",\r\n \"name\": \"abhaymtest1703230505\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703230505\"\r\n },\r\n \"etag\": \"W/\\\"636258423533875493\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"141205fa-86b9-44f1-8d71-dff5a641eac0\",\r\n \"clusterCodeVersion\": \"5.6.143.9494\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703230505.canadacentral.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/141205fa-86b9-44f1-8d71-dff5a641eac0\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"6ovvhzkxhdei62\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://6ovvhzkxhdei62.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://6ovvhzkxhdei62.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://6ovvhzkxhdei62.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703230549/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703230549\",\r\n \"name\": \"abhaymtest1703230549\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703230549\"\r\n },\r\n \"etag\": \"W/\\\"636258450450830685\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"06a5d762-802e-46cc-91a2-c35bc1113549\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://abhaymtest1703230549.eastasia.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/06a5d762-802e-46cc-91a2-c35bc1113549\",\r\n \"certificate\": {\r\n \"thumbprint\": \"A13273F20693D4F64DF0A95F3CC2601A0C84C29D\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"psumi2csefzei2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://psumi2csefzei2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://psumi2csefzei2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://psumi2csefzei2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 3,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Bronze\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703290021/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703290021\",\r\n \"name\": \"abhaymtest1703290021\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703290021\"\r\n },\r\n \"etag\": \"W/\\\"636263437539100159\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"e2cc2597-f4f7-432a-b682-ddb65e07f1f9\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://abhaymtest1703290021.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/e2cc2597-f4f7-432a-b682-ddb65e07f1f9\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"cqthjylk2vqrq2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://cqthjylk2vqrq2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://cqthjylk2vqrq2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://cqthjylk2vqrq2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"nt2vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"vmInstanceCount\": 1,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703291956/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703291956\",\r\n \"name\": \"abhaymtest1703291956\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703291956\"\r\n },\r\n \"etag\": \"W/\\\"636264142286359388\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"3ab812a4-a896-4e16-abb1-7bb4b8333d7c\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaymtest1703291956.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/3ab812a4-a896-4e16-abb1-7bb4b8333d7c\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"6iul7jvqaerqi2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://6iul7jvqaerqi2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://6iul7jvqaerqi2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://6iul7jvqaerqi2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n },\r\n {\r\n \"name\": \"nt2vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"vmInstanceCount\": 1,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaytest06/providers/Microsoft.ServiceFabric/clusters/abhaytest06\",\r\n \"name\": \"abhaytest06\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaytest06\"\r\n },\r\n \"etag\": \"W/\\\"636247797680333363\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"4f6e2c10-6dc5-492f-89d0-d860b40e2ced\",\r\n \"clusterCodeVersion\": \"5.5.219.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://abhaytest06.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/4f6e2c10-6dc5-492f-89d0-d860b40e2ced\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsabhaytest069203\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsabhaytest069203.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsabhaytest069203.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsabhaytest069203.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/newrecordclusterrg1/providers/Microsoft.ServiceFabric/clusters/newrecordcluster2\",\r\n \"name\": \"newrecordcluster2\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"newrecordcluster2\"\r\n },\r\n \"etag\": \"W/\\\"636259670531083681\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"c098ef7e-b993-454d-8cc1-71115ce4d175\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://newrecordcluster2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/c098ef7e-b993-454d-8cc1-71115ce4d175\",\r\n \"certificate\": {\r\n \"thumbprint\": \"8D777BF5A6C9E192688E8E1156E6C62E18C6AEC9\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"ux7ws4v7x3jso2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://ux7ws4v7x3jso2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://ux7ws4v7x3jso2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://ux7ws4v7x3jso2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/newsftestrg1/providers/Microsoft.ServiceFabric/clusters/testpowershellcluster1\",\r\n \"name\": \"testpowershellcluster1\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"testpowershellcluster1\"\r\n },\r\n \"etag\": \"W/\\\"636259309720451603\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"298d9d28-ede5-4ba8-80da-145ca8fdda91\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://testpowershellcluster1.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/298d9d28-ede5-4ba8-80da-145ca8fdda91\",\r\n \"certificate\": {\r\n \"thumbprint\": \"8D777BF5A6C9E192688E8E1156E6C62E18C6AEC9\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": true,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"aaujveyll53zy2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://aaujveyll53zy2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://aaujveyll53zy2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://aaujveyll53zy2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Silver\"\r\n },\r\n {\r\n \"name\": \"ntn3\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": false,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/newsftestrg3/providers/Microsoft.ServiceFabric/clusters/newrecordcluster1\",\r\n \"name\": \"newrecordcluster1\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"newrecordcluster1\"\r\n },\r\n \"etag\": \"W/\\\"636259637686378619\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"3fa4d0e0-9b84-4577-9200-8f7e16fc5ba4\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"https://newrecordcluster1.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/3fa4d0e0-9b84-4577-9200-8f7e16fc5ba4\",\r\n \"certificate\": {\r\n \"thumbprint\": \"8D777BF5A6C9E192688E8E1156E6C62E18C6AEC9\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"557jtwuooinek2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://557jtwuooinek2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://557jtwuooinek2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://557jtwuooinek2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/newtestresourcegroup1/providers/Microsoft.ServiceFabric/clusters/newrecordcluster2\",\r\n \"name\": \"newrecordcluster2\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"newrecordcluster2\"\r\n },\r\n \"etag\": \"W/\\\"636259643816156960\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"a07feb71-a75c-4777-89d3-15680fb1a345\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"managementEndpoint\": \"https://newrecordcluster2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/a07feb71-a75c-4777-89d3-15680fb1a345\",\r\n \"certificate\": {\r\n \"thumbprint\": \"8D777BF5A6C9E192688E8E1156E6C62E18C6AEC9\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"qlntlhz3veeyq2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://qlntlhz3veeyq2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://qlntlhz3veeyq2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://qlntlhz3veeyq2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/sdktestrg2/providers/Microsoft.ServiceFabric/clusters/sdktest\",\r\n \"name\": \"sdktest\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636244182147134148\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"8d566293-3508-4d62-ba7b-056fa710c3c9\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"UpgradeServiceUnreachable\",\r\n \"managementEndpoint\": \"http://sdktest.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/8d566293-3508-4d62-ba7b-056fa710c3c9\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": true,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogssdktest5486\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogssdktest5486.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogssdktest5486.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogssdktest5486.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"reverseProxyEndpointPort\": 9998,\r\n \"durabilityLevel\": \"Silver\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/testpowershellclusterrg1/providers/Microsoft.ServiceFabric/clusters/newrecordcluster2\",\r\n \"name\": \"newrecordcluster2\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"newrecordcluster2\"\r\n },\r\n \"etag\": \"W/\\\"636259659198426387\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"0d67939f-8a21-4a67-8fdc-e008a01542e9\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"https://newrecordcluster2.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0d67939f-8a21-4a67-8fdc-e008a01542e9\",\r\n \"certificate\": {\r\n \"thumbprint\": \"8D777BF5A6C9E192688E8E1156E6C62E18C6AEC9\",\r\n \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"hp2bioq5yplhu2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://hp2bioq5yplhu2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://hp2bioq5yplhu2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://hp2bioq5yplhu2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"South Central US\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/TestRG1/providers/Microsoft.ServiceFabric/clusters/testCreateCluster2\",\r\n \"name\": \"testCreateCluster2\",\r\n \"tags\": {},\r\n \"etag\": \"W/\\\"636258957273157045\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9525f566-2a5e-488f-8b69-4b41f6562c78\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"WaitingForNodes\",\r\n \"managementEndpoint\": \"http://testCluster.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/9525f566-2a5e-488f-8b69-4b41f6562c78\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 1234,\r\n \"endPort\": 4321\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 3456,\r\n \"endPort\": 6543\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 15:23:59 GMT" + "Sat, 01 Apr 2017 14:22:12 GMT" ], "Pragma": [ "no-cache" @@ -38,21 +38,23 @@ "Accept-Encoding" ], "x-ms-original-request-ids": [ + "", + "", "", "", "" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14820" + "14988" ], "x-ms-request-id": [ - "a60ed755-332f-4679-aacb-3fe7c27f5faa" + "f58a0446-fdbe-4dac-b5c7-04b67c7d6d96" ], "x-ms-correlation-request-id": [ - "a60ed755-332f-4679-aacb-3fe7c27f5faa" + "f58a0446-fdbe-4dac-b5c7-04b67c7d6d96" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T152359Z:a60ed755-332f-4679-aacb-3fe7c27f5faa" + "CENTRALUS:20170401T142213Z:f58a0446-fdbe-4dac-b5c7-04b67c7d6d96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestListByResourceGroup.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestListByResourceGroup.json index a2dabc6b2752..0dc7d2bc22e8 100644 --- a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestListByResourceGroup.json +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterResource/TestListByResourceGroup.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "761a6fa3-465e-4d44-a3a2-ccbb9920199b" + "f7b004d4-4a7e-4ca0-8c05-3191284b324d" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaym-test-20170318-194608\",\r\n \"name\": \"abhaym-test-20170318-194608\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703100151\",\r\n \"name\": \"abhaymtest1703100151\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703131739\",\r\n \"name\": \"abhaymtest1703131739\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703140846\",\r\n \"name\": \"abhaymtest1703140846\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703142040\",\r\n \"name\": \"abhaymtest1703142040\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703152214\",\r\n \"name\": \"abhaymtest1703152214\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703160653\",\r\n \"name\": \"abhaymtest1703160653\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703162329\",\r\n \"name\": \"abhaymtest1703162329\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703162340\",\r\n \"name\": \"abhaymtest1703162340\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703170025\",\r\n \"name\": \"abhaymtest1703170025\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703170037\",\r\n \"name\": \"abhaymtest1703170037\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182049\",\r\n \"name\": \"abhaymtest1703182049\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182157\",\r\n \"name\": \"abhaymtest1703182157\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182207\",\r\n \"name\": \"abhaymtest1703182207\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest06\",\r\n \"name\": \"abhaytest06\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/Default-ServiceBus-9653\",\r\n \"name\": \"Default-ServiceBus-9653\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/deployertest\",\r\n \"name\": \"deployertest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykeyvaultrg1\",\r\n \"name\": \"mykeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newkeyvaultrg1\",\r\n \"name\": \"newkeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newkeyvaultrg3\",\r\n \"name\": \"newkeyvaultrg3\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same1rg\",\r\n \"name\": \"same1rg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same2rg\",\r\n \"name\": \"same2rg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same2rgg\",\r\n \"name\": \"same2rgg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklinuxtest01\",\r\n \"name\": \"sdklinuxtest01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklusterrg\",\r\n \"name\": \"sdklusterrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestkeyvaultrg\",\r\n \"name\": \"sdktestkeyvaultrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestrg2\",\r\n \"name\": \"sdktestrg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/SecureBaseImage\",\r\n \"name\": \"SecureBaseImage\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfrpkeyvaultrg1\",\r\n \"name\": \"sfrpkeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sftestkeyvaultrg\",\r\n \"name\": \"sftestkeyvaultrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sftestkkrg1\",\r\n \"name\": \"sftestkkrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1\",\r\n \"name\": \"testCreaterg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1\",\r\n \"name\": \"TestRG1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testrg111\",\r\n \"name\": \"testrg111\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testsdkdnetrestrg\",\r\n \"name\": \"testsdkdnetrestrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/VmExtnAppInsightTest\",\r\n \"name\": \"VmExtnAppInsightTest\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161115-012828172-v2\",\r\n \"name\": \"wftsvc-bm-20161115-012828172-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161116-012248545-v2\",\r\n \"name\": \"wftsvc-bm-20161116-012248545-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161117-013025621-v2\",\r\n \"name\": \"wftsvc-bm-20161117-013025621-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161118-162552118-v2\",\r\n \"name\": \"wftsvc-bm-20161118-162552118-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161119-020853683-v2\",\r\n \"name\": \"wftsvc-bm-20161119-020853683-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161120-015112327-v2\",\r\n \"name\": \"wftsvc-bm-20161120-015112327-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161121-013411054-v2\",\r\n \"name\": \"wftsvc-bm-20161121-013411054-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161122-014033729-v2\",\r\n \"name\": \"wftsvc-bm-20161122-014033729-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161123-020328423-v2\",\r\n \"name\": \"wftsvc-bm-20161123-020328423-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161124-013118943-v2\",\r\n \"name\": \"wftsvc-bm-20161124-013118943-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161125-012512715-v2\",\r\n \"name\": \"wftsvc-bm-20161125-012512715-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161126-012537693-v2\",\r\n \"name\": \"wftsvc-bm-20161126-012537693-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161127-012554430-v2\",\r\n \"name\": \"wftsvc-bm-20161127-012554430-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161128-012517911-v2\",\r\n \"name\": \"wftsvc-bm-20161128-012517911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161129-012602111-v2\",\r\n \"name\": \"wftsvc-bm-20161129-012602111-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161130-022145798-v2\",\r\n \"name\": \"wftsvc-bm-20161130-022145798-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161201-014317317-v2\",\r\n \"name\": \"wftsvc-bm-20161201-014317317-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161202-012812276-v2\",\r\n \"name\": \"wftsvc-bm-20161202-012812276-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161203-012713277-v2\",\r\n \"name\": \"wftsvc-bm-20161203-012713277-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161206-025602238-v2\",\r\n \"name\": \"wftsvc-bm-20161206-025602238-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161207-012657615-v2\",\r\n \"name\": \"wftsvc-bm-20161207-012657615-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161208-024401245-v2\",\r\n \"name\": \"wftsvc-bm-20161208-024401245-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161209-012721060-v2\",\r\n \"name\": \"wftsvc-bm-20161209-012721060-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161210-012529259-v2\",\r\n \"name\": \"wftsvc-bm-20161210-012529259-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161211-012543460-v2\",\r\n \"name\": \"wftsvc-bm-20161211-012543460-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161212-012643580-v2\",\r\n \"name\": \"wftsvc-bm-20161212-012643580-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161213-135747390-v2\",\r\n \"name\": \"wftsvc-bm-20161213-135747390-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161214-020204911-v2\",\r\n \"name\": \"wftsvc-bm-20161214-020204911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161215-012912635-v2\",\r\n \"name\": \"wftsvc-bm-20161215-012912635-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161216-014118622-v2\",\r\n \"name\": \"wftsvc-bm-20161216-014118622-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161217-013027250-v2\",\r\n \"name\": \"wftsvc-bm-20161217-013027250-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161218-042923602-v2\",\r\n \"name\": \"wftsvc-bm-20161218-042923602-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161219-024910832-v2\",\r\n \"name\": \"wftsvc-bm-20161219-024910832-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161220-021526028-v2\",\r\n \"name\": \"wftsvc-bm-20161220-021526028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161221-014332493-v2\",\r\n \"name\": \"wftsvc-bm-20161221-014332493-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161222-190424958-v2\",\r\n \"name\": \"wftsvc-bm-20161222-190424958-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161223-020219887-v2\",\r\n \"name\": \"wftsvc-bm-20161223-020219887-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161224-012754028-v2\",\r\n \"name\": \"wftsvc-bm-20161224-012754028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161225-012413900-v2\",\r\n \"name\": \"wftsvc-bm-20161225-012413900-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161226-012537497-v2\",\r\n \"name\": \"wftsvc-bm-20161226-012537497-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161227-012619489-v2\",\r\n \"name\": \"wftsvc-bm-20161227-012619489-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161228-012627978-v2\",\r\n \"name\": \"wftsvc-bm-20161228-012627978-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161229-013147614-v2\",\r\n \"name\": \"wftsvc-bm-20161229-013147614-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161230-012714627-v2\",\r\n \"name\": \"wftsvc-bm-20161230-012714627-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-mwh-20161203-012707281-v2\",\r\n \"name\": \"wftsvc-mwh-20161203-012707281-v2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault1\",\r\n \"name\": \"wftsvcKeyVault1\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault2\",\r\n \"name\": \"wftsvcKeyVault2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault3\",\r\n \"name\": \"wftsvcKeyVault3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault4\",\r\n \"name\": \"wftsvcKeyVault4\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault5\",\r\n \"name\": \"wftsvcKeyVault5\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault6\",\r\n \"name\": \"wftsvcKeyVault6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVaultAM\",\r\n \"name\": \"wftsvcKeyVaultAM\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/xunlu-test-20170318-205509\",\r\n \"name\": \"xunlu-test-20170318-205509\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/xunlustore\",\r\n \"name\": \"xunlustore\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/xunlutest1703182056\",\r\n \"name\": \"xunlutest1703182056\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016snrg\",\r\n \"name\": \"zikaiwtest10122016snrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaarg\",\r\n \"name\": \"aaaaarg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaym-test-20170318-194608\",\r\n \"name\": \"abhaym-test-20170318-194608\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703142040\",\r\n \"name\": \"abhaymtest1703142040\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703152214\",\r\n \"name\": \"abhaymtest1703152214\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703160653\",\r\n \"name\": \"abhaymtest1703160653\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703162329\",\r\n \"name\": \"abhaymtest1703162329\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703162340\",\r\n \"name\": \"abhaymtest1703162340\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703170025\",\r\n \"name\": \"abhaymtest1703170025\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703170037\",\r\n \"name\": \"abhaymtest1703170037\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182049\",\r\n \"name\": \"abhaymtest1703182049\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182157\",\r\n \"name\": \"abhaymtest1703182157\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182207\",\r\n \"name\": \"abhaymtest1703182207\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703201843\",\r\n \"name\": \"abhaymtest1703201843\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703201944\",\r\n \"name\": \"abhaymtest1703201944\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703202006\",\r\n \"name\": \"abhaymtest1703202006\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703210414\",\r\n \"name\": \"abhaymtest1703210414\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703210416\",\r\n \"name\": \"abhaymtest1703210416\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703212351\",\r\n \"name\": \"abhaymtest1703212351\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703220723\",\r\n \"name\": \"abhaymtest1703220723\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703220724\",\r\n \"name\": \"abhaymtest1703220724\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703230444\",\r\n \"name\": \"abhaymtest1703230444\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703230456\",\r\n \"name\": \"abhaymtest1703230456\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703230505\",\r\n \"name\": \"abhaymtest1703230505\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703230549\",\r\n \"name\": \"abhaymtest1703230549\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703290002\",\r\n \"name\": \"abhaymtest1703290002\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703290020\",\r\n \"name\": \"abhaymtest1703290020\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703290021\",\r\n \"name\": \"abhaymtest1703290021\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703291956\",\r\n \"name\": \"abhaymtest1703291956\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest06\",\r\n \"name\": \"abhaytest06\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest07\",\r\n \"name\": \"abhaytest07\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest10\",\r\n \"name\": \"abhaytest10\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest11\",\r\n \"name\": \"abhaytest11\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/Default-ServiceBus-9653\",\r\n \"name\": \"Default-ServiceBus-9653\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/deployertest\",\r\n \"name\": \"deployertest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykeyvaultrg1\",\r\n \"name\": \"mykeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykvrg1\",\r\n \"name\": \"mykvrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykvvrg1\",\r\n \"name\": \"mykvvrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykvvrg2\",\r\n \"name\": \"mykvvrg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykvvrgg2\",\r\n \"name\": \"mykvvrgg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newkeyvaultrg1\",\r\n \"name\": \"newkeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newkeyvaultrg3\",\r\n \"name\": \"newkeyvaultrg3\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newrecordclusterrg1\",\r\n \"name\": \"newrecordclusterrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newsftestrg1\",\r\n \"name\": \"newsftestrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newsftestrg3\",\r\n \"name\": \"newsftestrg3\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newtestresourcegroup1\",\r\n \"name\": \"newtestresourcegroup1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same1rg\",\r\n \"name\": \"same1rg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same2rg\",\r\n \"name\": \"same2rg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same2rgg\",\r\n \"name\": \"same2rgg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklinuxtest01\",\r\n \"name\": \"sdklinuxtest01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklusterrg\",\r\n \"name\": \"sdklusterrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestkeyvaultrg\",\r\n \"name\": \"sdktestkeyvaultrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestrg2\",\r\n \"name\": \"sdktestrg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/SecureBaseImage\",\r\n \"name\": \"SecureBaseImage\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfrpkeyvaultrg1\",\r\n \"name\": \"sfrpkeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sftestkeyvaultrg\",\r\n \"name\": \"sftestkeyvaultrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sftestkkrg1\",\r\n \"name\": \"sftestkkrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1\",\r\n \"name\": \"testCreaterg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testDeleterg\",\r\n \"name\": \"testDeleterg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testpowershellclusterrg1\",\r\n \"name\": \"testpowershellclusterrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1\",\r\n \"name\": \"TestRG1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testrg111\",\r\n \"name\": \"testrg111\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testsdkdnetrestrg\",\r\n \"name\": \"testsdkdnetrestrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/VmExtnAppInsightTest\",\r\n \"name\": \"VmExtnAppInsightTest\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-mwh-20161203-012707281-v2\",\r\n \"name\": \"wftsvc-mwh-20161203-012707281-v2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault1\",\r\n \"name\": \"wftsvcKeyVault1\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault2\",\r\n \"name\": \"wftsvcKeyVault2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault3\",\r\n \"name\": \"wftsvcKeyVault3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault4\",\r\n \"name\": \"wftsvcKeyVault4\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault5\",\r\n \"name\": \"wftsvcKeyVault5\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault6\",\r\n \"name\": \"wftsvcKeyVault6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVaultAM\",\r\n \"name\": \"wftsvcKeyVaultAM\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/xunlustore\",\r\n \"name\": \"xunlustore\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016snrg\",\r\n \"name\": \"zikaiwtest10122016snrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 15:24:10 GMT" + "Sat, 01 Apr 2017 14:22:06 GMT" ], "Pragma": [ "no-cache" @@ -38,16 +38,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14938" + "14978" ], "x-ms-request-id": [ - "34842af2-2b18-4ff3-b2c6-cd76af699800" + "f80a85f6-614b-48c7-a5aa-332b5c061a82" ], "x-ms-correlation-request-id": [ - "34842af2-2b18-4ff3-b2c6-cd76af699800" + "f80a85f6-614b-48c7-a5aa-332b5c061a82" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T152410Z:34842af2-2b18-4ff3-b2c6-cd76af699800" + "CENTRALUS:20170401T142207Z:f80a85f6-614b-48c7-a5aa-332b5c061a82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -56,13 +56,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaym-test-20170318-194608/resources?$filter=resourceType%20eq%20'Microsoft.ServiceFabric%2Fclusters'&api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FiaGF5bS10ZXN0LTIwMTcwMzE4LTE5NDYwOC9yZXNvdXJjZXM/JGZpbHRlcj1yZXNvdXJjZVR5cGUlMjBlcSUyMCdNaWNyb3NvZnQuU2VydmljZUZhYnJpYyUyRmNsdXN0ZXJzJyZhcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaarg/resources?$filter=resourceType%20eq%20'Microsoft.ServiceFabric%2Fclusters'&api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FhYWFhcmcvcmVzb3VyY2VzPyRmaWx0ZXI9cmVzb3VyY2VUeXBlJTIwZXElMjAnTWljcm9zb2Z0LlNlcnZpY2VGYWJyaWMlMkZjbHVzdGVycycmYXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e1518a23-1c48-460e-9af2-99554f117ed4" + "2811b677-6489-4664-aa03-bc7d2c5066fd" ], "accept-language": [ "en-US" @@ -72,7 +72,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaa\",\r\n \"name\": \"aaaaa\",\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaa\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -84,7 +84,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 15:24:11 GMT" + "Sat, 01 Apr 2017 14:22:09 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +93,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14902" + "14987" ], "x-ms-request-id": [ - "aa04704b-fd50-43f5-b7e1-ca7e2f2b6564" + "256abb22-40f6-47de-9764-893f886022eb" ], "x-ms-correlation-request-id": [ - "aa04704b-fd50-43f5-b7e1-ca7e2f2b6564" + "256abb22-40f6-47de-9764-893f886022eb" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T152411Z:aa04704b-fd50-43f5-b7e1-ca7e2f2b6564" + "CENTRALUS:20170401T142209Z:256abb22-40f6-47de-9764-893f886022eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,78 +111,23 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703100151/resources?$filter=resourceType%20eq%20'Microsoft.ServiceFabric%2Fclusters'&api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlR3JvdXBzL2FiaGF5bXRlc3QxNzAzMTAwMTUxL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5TZXJ2aWNlRmFicmljJTJGY2x1c3RlcnMnJmFwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzL2FhYWFhcmcvcHJvdmlkZXJzL01pY3Jvc29mdC5TZXJ2aWNlRmFicmljL2NsdXN0ZXJzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7c85e99-1ace-438d-9b33-c8d1c8ece1ef" + "41324347-0f3f-4ab5-b9fd-61d9a3b3abc0" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703100151/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703100151\",\r\n \"name\": \"abhaymtest1703100151\",\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703100151\"\r\n }\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Mon, 20 Mar 2017 15:24:12 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" - ], - "x-ms-request-id": [ - "f7c097c4-0c80-4e5a-b3a9-fd64d77c63ec" - ], - "x-ms-correlation-request-id": [ - "f7c097c4-0c80-4e5a-b3a9-fd64d77c63ec" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170320T152413Z:f7c097c4-0c80-4e5a-b3a9-fd64d77c63ec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703100151/providers/Microsoft.ServiceFabric/clusters?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Jlc291cmNlZ3JvdXBzL2FiaGF5bXRlc3QxNzAzMTAwMTUxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9jbHVzdGVycz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7d34337d-5261-454c-bd2c-a7a755a4a398" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/abhaymtest1703100151/providers/Microsoft.ServiceFabric/clusters/abhaymtest1703100151\",\r\n \"name\": \"abhaymtest1703100151\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"abhaymtest1703100151\"\r\n },\r\n \"etag\": \"W/\\\"636247075411015809\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"89b0771c-c0d5-4a85-a9fb-c885b40ab838\",\r\n \"clusterCodeVersion\": \"5.5.201.0\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": \"http://abhaymtest1703100151.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/89b0771c-c0d5-4a85-a9fb-c885b40ab838\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:05:00\",\r\n \"healthCheckStableDuration\": \"00:05:00\",\r\n \"healthCheckRetryTimeout\": \"00:45:00\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"qnp4zdsvldwko2\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://qnp4zdsvldwko2.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://qnp4zdsvldwko2.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://qnp4zdsvldwko2.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Manual\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaa\",\r\n \"name\": \"aaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636256214302176421\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": true,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaa6039\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaa6039.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaa6039.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaa6039.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -194,7 +139,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 15:24:12 GMT" + "Sat, 01 Apr 2017 14:22:10 GMT" ], "Pragma": [ "no-cache" @@ -219,13 +164,13 @@ "14979" ], "x-ms-request-id": [ - "2ff30af4-12db-4107-b5ae-71dec45b2d56" + "2728800d-d1cc-40af-bff8-e0af681dcd63" ], "x-ms-correlation-request-id": [ - "2ff30af4-12db-4107-b5ae-71dec45b2d56" + "2728800d-d1cc-40af-bff8-e0af681dcd63" ], "x-ms-routing-request-id": [ - "WESTUS2:20170320T152413Z:2ff30af4-12db-4107-b5ae-71dec45b2d56" + "CENTRALUS:20170401T142210Z:2728800d-d1cc-40af-bff8-e0af681dcd63" ] }, "StatusCode": 200 diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterVersions/TestList.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterVersions/TestList.json new file mode 100644 index 000000000000..efb193a9b182 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestListClusterVersions/TestList.json @@ -0,0 +1,138 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/environments/Windows/clusterVersions?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvZW52aXJvbm1lbnRzL1dpbmRvd3MvY2x1c3RlclZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "abe48efb-69bf-4415-b1b5-57aa5d2203b6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/environments/Windows/clusterVersions/5.4.145.9494\",\r\n \"name\": \"5.4.145.9494\",\r\n \"type\": \"Microsoft.ServiceFabric/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/environments/Windows/clusterVersions/5.4.164.9494\",\r\n \"name\": \"5.4.164.9494\",\r\n \"type\": \"Microsoft.ServiceFabric/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/environments/Windows/clusterVersions/5.5.216.0\",\r\n \"name\": \"5.5.216.0\",\r\n \"type\": \"Microsoft.ServiceFabric/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/environments/Windows/clusterVersions/5.5.219.0\",\r\n \"name\": \"5.5.219.0\",\r\n \"type\": \"Microsoft.ServiceFabric/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 01 Apr 2017 14:28:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14979" + ], + "x-ms-request-id": [ + "0f51eac4-6049-48b2-8510-cf3a85474bac" + ], + "x-ms-correlation-request-id": [ + "0f51eac4-6049-48b2-8510-cf3a85474bac" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170401T142808Z:0f51eac4-6049-48b2-8510-cf3a85474bac" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/locations/southcentralus/environments/default/clusterVersions?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjM2Y2RmNDYtYjc1ZC00ZGMyLTlmZTEtMTI5NmVlOGM2MjNkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VydmljZUZhYnJpYy9sb2NhdGlvbnMvc291dGhjZW50cmFsdXMvZW52aXJvbm1lbnRzL2RlZmF1bHQvY2x1c3RlclZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "38feb45f-0713-4787-aa70-1841da6bbbe3" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/environments/Windows/clusterVersions/5.4.145.9494\",\r\n \"name\": \"5.4.145.9494\",\r\n \"type\": \"Microsoft.ServiceFabric/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/environments/Windows/clusterVersions/5.4.164.9494\",\r\n \"name\": \"5.4.164.9494\",\r\n \"type\": \"Microsoft.ServiceFabric/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/environments/Windows/clusterVersions/5.5.216.0\",\r\n \"name\": \"5.5.216.0\",\r\n \"type\": \"Microsoft.ServiceFabric/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/environments/Windows/clusterVersions/5.5.219.0\",\r\n \"name\": \"5.5.219.0\",\r\n \"type\": \"Microsoft.ServiceFabric/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/environments/Windows/clusterVersions/5.3.0.0\",\r\n \"name\": \"5.3.0.0\",\r\n \"type\": \"Microsoft.ServiceFabric/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"5.3.0.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Linux\"\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/environments/Windows/clusterVersions/5.3.0.3\",\r\n \"name\": \"5.3.0.3\",\r\n \"type\": \"Microsoft.ServiceFabric/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"5.3.0.3\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Linux\"\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/environments/Windows/clusterVersions/5.4.0.0\",\r\n \"name\": \"5.4.0.0\",\r\n \"type\": \"Microsoft.ServiceFabric/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"5.4.0.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Linux\"\r\n }\r\n },\r\n {\r\n \"id\": \"subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/providers/Microsoft.ServiceFabric/environments/Windows/clusterVersions/5.5.0.2\",\r\n \"name\": \"5.5.0.2\",\r\n \"type\": \"Microsoft.ServiceFabric/environments/clusterVersions\",\r\n \"properties\": {\r\n \"codeVersion\": \"5.5.0.2\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Linux\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 01 Apr 2017 14:28:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14978" + ], + "x-ms-request-id": [ + "81aae445-3fc9-405b-beaf-029d46fd49b7" + ], + "x-ms-correlation-request-id": [ + "81aae445-3fc9-405b-beaf-029d46fd49b7" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170401T142809Z:81aae445-3fc9-405b-beaf-029d46fd49b7" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "b36cdf46-b75d-4dc2-9fe1-1296ee8c623d" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestUpdateClusterResource/TestUpdate.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestUpdateClusterResource/TestUpdate.json index e0dce0d52c03..60e58e844213 100644 --- a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestUpdateClusterResource/TestUpdate.json +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/SessionRecords/ServiceFabric.Tests.Tests.TestUpdateClusterResource/TestUpdate.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c66b5df9-5a68-4212-98d8-6af84255f965" + "ca496866-fa00-430c-ae89-a2456fcd876c" ], "accept-language": [ "en-US" @@ -17,7 +17,7 @@ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaarg\",\r\n \"name\": \"aaaaarg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaym-test-20170318-194608\",\r\n \"name\": \"abhaym-test-20170318-194608\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703100151\",\r\n \"name\": \"abhaymtest1703100151\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703131739\",\r\n \"name\": \"abhaymtest1703131739\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703140846\",\r\n \"name\": \"abhaymtest1703140846\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703142040\",\r\n \"name\": \"abhaymtest1703142040\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703152214\",\r\n \"name\": \"abhaymtest1703152214\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703160653\",\r\n \"name\": \"abhaymtest1703160653\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703162329\",\r\n \"name\": \"abhaymtest1703162329\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703162340\",\r\n \"name\": \"abhaymtest1703162340\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703170025\",\r\n \"name\": \"abhaymtest1703170025\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703170037\",\r\n \"name\": \"abhaymtest1703170037\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182049\",\r\n \"name\": \"abhaymtest1703182049\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182157\",\r\n \"name\": \"abhaymtest1703182157\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182207\",\r\n \"name\": \"abhaymtest1703182207\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest06\",\r\n \"name\": \"abhaytest06\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/Default-ServiceBus-9653\",\r\n \"name\": \"Default-ServiceBus-9653\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/deployertest\",\r\n \"name\": \"deployertest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykeyvaultrg1\",\r\n \"name\": \"mykeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newkeyvaultrg1\",\r\n \"name\": \"newkeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newkeyvaultrg3\",\r\n \"name\": \"newkeyvaultrg3\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same1rg\",\r\n \"name\": \"same1rg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same2rg\",\r\n \"name\": \"same2rg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same2rgg\",\r\n \"name\": \"same2rgg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklinuxtest01\",\r\n \"name\": \"sdklinuxtest01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklusterrg\",\r\n \"name\": \"sdklusterrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestkeyvaultrg\",\r\n \"name\": \"sdktestkeyvaultrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestrg2\",\r\n \"name\": \"sdktestrg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/SecureBaseImage\",\r\n \"name\": \"SecureBaseImage\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfrpkeyvaultrg1\",\r\n \"name\": \"sfrpkeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sftestkeyvaultrg\",\r\n \"name\": \"sftestkeyvaultrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sftestkkrg1\",\r\n \"name\": \"sftestkkrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1\",\r\n \"name\": \"testCreaterg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1\",\r\n \"name\": \"TestRG1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testrg111\",\r\n \"name\": \"testrg111\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testsdkdnetrestrg\",\r\n \"name\": \"testsdkdnetrestrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/VmExtnAppInsightTest\",\r\n \"name\": \"VmExtnAppInsightTest\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161115-012828172-v2\",\r\n \"name\": \"wftsvc-bm-20161115-012828172-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161116-012248545-v2\",\r\n \"name\": \"wftsvc-bm-20161116-012248545-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161117-013025621-v2\",\r\n \"name\": \"wftsvc-bm-20161117-013025621-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161118-162552118-v2\",\r\n \"name\": \"wftsvc-bm-20161118-162552118-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161119-020853683-v2\",\r\n \"name\": \"wftsvc-bm-20161119-020853683-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161120-015112327-v2\",\r\n \"name\": \"wftsvc-bm-20161120-015112327-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161121-013411054-v2\",\r\n \"name\": \"wftsvc-bm-20161121-013411054-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161122-014033729-v2\",\r\n \"name\": \"wftsvc-bm-20161122-014033729-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161123-020328423-v2\",\r\n \"name\": \"wftsvc-bm-20161123-020328423-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161124-013118943-v2\",\r\n \"name\": \"wftsvc-bm-20161124-013118943-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161125-012512715-v2\",\r\n \"name\": \"wftsvc-bm-20161125-012512715-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161126-012537693-v2\",\r\n \"name\": \"wftsvc-bm-20161126-012537693-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161127-012554430-v2\",\r\n \"name\": \"wftsvc-bm-20161127-012554430-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161128-012517911-v2\",\r\n \"name\": \"wftsvc-bm-20161128-012517911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161129-012602111-v2\",\r\n \"name\": \"wftsvc-bm-20161129-012602111-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161130-022145798-v2\",\r\n \"name\": \"wftsvc-bm-20161130-022145798-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161201-014317317-v2\",\r\n \"name\": \"wftsvc-bm-20161201-014317317-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161202-012812276-v2\",\r\n \"name\": \"wftsvc-bm-20161202-012812276-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161203-012713277-v2\",\r\n \"name\": \"wftsvc-bm-20161203-012713277-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161206-025602238-v2\",\r\n \"name\": \"wftsvc-bm-20161206-025602238-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161207-012657615-v2\",\r\n \"name\": \"wftsvc-bm-20161207-012657615-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161208-024401245-v2\",\r\n \"name\": \"wftsvc-bm-20161208-024401245-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161209-012721060-v2\",\r\n \"name\": \"wftsvc-bm-20161209-012721060-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161210-012529259-v2\",\r\n \"name\": \"wftsvc-bm-20161210-012529259-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161211-012543460-v2\",\r\n \"name\": \"wftsvc-bm-20161211-012543460-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161212-012643580-v2\",\r\n \"name\": \"wftsvc-bm-20161212-012643580-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161213-135747390-v2\",\r\n \"name\": \"wftsvc-bm-20161213-135747390-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161214-020204911-v2\",\r\n \"name\": \"wftsvc-bm-20161214-020204911-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161215-012912635-v2\",\r\n \"name\": \"wftsvc-bm-20161215-012912635-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161216-014118622-v2\",\r\n \"name\": \"wftsvc-bm-20161216-014118622-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161217-013027250-v2\",\r\n \"name\": \"wftsvc-bm-20161217-013027250-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161218-042923602-v2\",\r\n \"name\": \"wftsvc-bm-20161218-042923602-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161219-024910832-v2\",\r\n \"name\": \"wftsvc-bm-20161219-024910832-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161220-021526028-v2\",\r\n \"name\": \"wftsvc-bm-20161220-021526028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161221-014332493-v2\",\r\n \"name\": \"wftsvc-bm-20161221-014332493-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161222-190424958-v2\",\r\n \"name\": \"wftsvc-bm-20161222-190424958-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161223-020219887-v2\",\r\n \"name\": \"wftsvc-bm-20161223-020219887-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161224-012754028-v2\",\r\n \"name\": \"wftsvc-bm-20161224-012754028-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161225-012413900-v2\",\r\n \"name\": \"wftsvc-bm-20161225-012413900-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161226-012537497-v2\",\r\n \"name\": \"wftsvc-bm-20161226-012537497-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161227-012619489-v2\",\r\n \"name\": \"wftsvc-bm-20161227-012619489-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161228-012627978-v2\",\r\n \"name\": \"wftsvc-bm-20161228-012627978-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161229-013147614-v2\",\r\n \"name\": \"wftsvc-bm-20161229-013147614-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-bm-20161230-012714627-v2\",\r\n \"name\": \"wftsvc-bm-20161230-012714627-v2\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-mwh-20161203-012707281-v2\",\r\n \"name\": \"wftsvc-mwh-20161203-012707281-v2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault1\",\r\n \"name\": \"wftsvcKeyVault1\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault2\",\r\n \"name\": \"wftsvcKeyVault2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault3\",\r\n \"name\": \"wftsvcKeyVault3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault4\",\r\n \"name\": \"wftsvcKeyVault4\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault5\",\r\n \"name\": \"wftsvcKeyVault5\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault6\",\r\n \"name\": \"wftsvcKeyVault6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVaultAM\",\r\n \"name\": \"wftsvcKeyVaultAM\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/xunlu-test-20170318-205509\",\r\n \"name\": \"xunlu-test-20170318-205509\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/xunlustore\",\r\n \"name\": \"xunlustore\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/xunlutest1703182056\",\r\n \"name\": \"xunlutest1703182056\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016snrg\",\r\n \"name\": \"zikaiwtest10122016snrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/aaaaarg\",\r\n \"name\": \"aaaaarg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaym-test-20170318-194608\",\r\n \"name\": \"abhaym-test-20170318-194608\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703142040\",\r\n \"name\": \"abhaymtest1703142040\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703152214\",\r\n \"name\": \"abhaymtest1703152214\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703160653\",\r\n \"name\": \"abhaymtest1703160653\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703162329\",\r\n \"name\": \"abhaymtest1703162329\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703162340\",\r\n \"name\": \"abhaymtest1703162340\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703170025\",\r\n \"name\": \"abhaymtest1703170025\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703170037\",\r\n \"name\": \"abhaymtest1703170037\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182049\",\r\n \"name\": \"abhaymtest1703182049\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182157\",\r\n \"name\": \"abhaymtest1703182157\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703182207\",\r\n \"name\": \"abhaymtest1703182207\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703201843\",\r\n \"name\": \"abhaymtest1703201843\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703201944\",\r\n \"name\": \"abhaymtest1703201944\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703202006\",\r\n \"name\": \"abhaymtest1703202006\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703210414\",\r\n \"name\": \"abhaymtest1703210414\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703210416\",\r\n \"name\": \"abhaymtest1703210416\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703212351\",\r\n \"name\": \"abhaymtest1703212351\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703220723\",\r\n \"name\": \"abhaymtest1703220723\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703220724\",\r\n \"name\": \"abhaymtest1703220724\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703230444\",\r\n \"name\": \"abhaymtest1703230444\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703230456\",\r\n \"name\": \"abhaymtest1703230456\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703230505\",\r\n \"name\": \"abhaymtest1703230505\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703230549\",\r\n \"name\": \"abhaymtest1703230549\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703290002\",\r\n \"name\": \"abhaymtest1703290002\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703290020\",\r\n \"name\": \"abhaymtest1703290020\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703290021\",\r\n \"name\": \"abhaymtest1703290021\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaymtest1703291956\",\r\n \"name\": \"abhaymtest1703291956\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest06\",\r\n \"name\": \"abhaytest06\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest07\",\r\n \"name\": \"abhaytest07\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest10\",\r\n \"name\": \"abhaytest10\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/abhaytest11\",\r\n \"name\": \"abhaytest11\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/Default-ServiceBus-9653\",\r\n \"name\": \"Default-ServiceBus-9653\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/deployertest\",\r\n \"name\": \"deployertest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykeyvaultrg1\",\r\n \"name\": \"mykeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykvrg1\",\r\n \"name\": \"mykvrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykvvrg1\",\r\n \"name\": \"mykvvrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykvvrg2\",\r\n \"name\": \"mykvvrg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/mykvvrgg2\",\r\n \"name\": \"mykvvrgg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newkeyvaultrg1\",\r\n \"name\": \"newkeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newkeyvaultrg3\",\r\n \"name\": \"newkeyvaultrg3\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newrecordclusterrg1\",\r\n \"name\": \"newrecordclusterrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newsftestrg1\",\r\n \"name\": \"newsftestrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newsftestrg3\",\r\n \"name\": \"newsftestrg3\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/newtestresourcegroup1\",\r\n \"name\": \"newtestresourcegroup1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same1rg\",\r\n \"name\": \"same1rg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same2rg\",\r\n \"name\": \"same2rg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/same2rgg\",\r\n \"name\": \"same2rgg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklinuxtest01\",\r\n \"name\": \"sdklinuxtest01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdklusterrg\",\r\n \"name\": \"sdklusterrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestkeyvaultrg\",\r\n \"name\": \"sdktestkeyvaultrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sdktestrg2\",\r\n \"name\": \"sdktestrg2\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/SecureBaseImage\",\r\n \"name\": \"SecureBaseImage\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sfrpkeyvaultrg1\",\r\n \"name\": \"sfrpkeyvaultrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sftestkeyvaultrg\",\r\n \"name\": \"sftestkeyvaultrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/sftestkkrg1\",\r\n \"name\": \"sftestkkrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testCreaterg1\",\r\n \"name\": \"testCreaterg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testpowershellclusterrg1\",\r\n \"name\": \"testpowershellclusterrg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/TestRG1\",\r\n \"name\": \"TestRG1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testrg111\",\r\n \"name\": \"testrg111\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/testsdkdnetrestrg\",\r\n \"name\": \"testsdkdnetrestrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/VmExtnAppInsightTest\",\r\n \"name\": \"VmExtnAppInsightTest\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvc-mwh-20161203-012707281-v2\",\r\n \"name\": \"wftsvc-mwh-20161203-012707281-v2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault1\",\r\n \"name\": \"wftsvcKeyVault1\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault2\",\r\n \"name\": \"wftsvcKeyVault2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault3\",\r\n \"name\": \"wftsvcKeyVault3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault4\",\r\n \"name\": \"wftsvcKeyVault4\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault5\",\r\n \"name\": \"wftsvcKeyVault5\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVault6\",\r\n \"name\": \"wftsvcKeyVault6\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/wftsvcKeyVaultAM\",\r\n \"name\": \"wftsvcKeyVaultAM\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/xunlustore\",\r\n \"name\": \"xunlustore\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourceGroups/zikaiwtest10122016snrg\",\r\n \"name\": \"zikaiwtest10122016snrg\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -29,7 +29,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 16:51:12 GMT" + "Sat, 01 Apr 2017 14:23:19 GMT" ], "Pragma": [ "no-cache" @@ -38,16 +38,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14976" ], "x-ms-request-id": [ - "be79648e-bd6e-4327-b53b-df6da9b7c90d" + "15c7563d-98cf-4e0e-93c4-a4e655f7a51e" ], "x-ms-correlation-request-id": [ - "be79648e-bd6e-4327-b53b-df6da9b7c90d" + "15c7563d-98cf-4e0e-93c4-a4e655f7a51e" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170320T165113Z:be79648e-bd6e-4327-b53b-df6da9b7c90d" + "WESTUS2:20170401T142319Z:15c7563d-98cf-4e0e-93c4-a4e655f7a51e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -62,7 +62,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94d67f02-1e93-4198-9d95-e3e48f98f278" + "177d3bd7-1053-4c6f-bf8b-68516d963799" ], "accept-language": [ "en-US" @@ -84,7 +84,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 16:51:15 GMT" + "Sat, 01 Apr 2017 14:23:20 GMT" ], "Pragma": [ "no-cache" @@ -93,16 +93,16 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14986" ], "x-ms-request-id": [ - "fb75a300-441e-4579-8898-fddfddfd3709" + "575e244d-a161-4d0a-a8f9-897e70e8d51f" ], "x-ms-correlation-request-id": [ - "fb75a300-441e-4579-8898-fddfddfd3709" + "575e244d-a161-4d0a-a8f9-897e70e8d51f" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170320T165115Z:fb75a300-441e-4579-8898-fddfddfd3709" + "WESTUS2:20170401T142320Z:575e244d-a161-4d0a-a8f9-897e70e8d51f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -117,17 +117,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63df2731-7c17-410b-9fd2-8ee78f56fc14" + "1a353450-ddfe-4cab-82c9-1197e82ee1e9" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaa\",\r\n \"name\": \"aaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636256214302176419\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaa6039\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaa6039.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaa6039.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaa6039.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaa\",\r\n \"name\": \"aaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636256214302176421\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": true,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaa6039\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaa6039.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaa6039.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaa6039.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -139,7 +139,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 16:51:15 GMT" + "Sat, 01 Apr 2017 14:23:20 GMT" ], "Pragma": [ "no-cache" @@ -161,16 +161,16 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14971" ], "x-ms-request-id": [ - "63eb3d5b-2895-4859-8173-3044cf046739" + "7b90cf8f-5b1d-4e50-8bc6-d94036f2ae70" ], "x-ms-correlation-request-id": [ - "63eb3d5b-2895-4859-8173-3044cf046739" + "7b90cf8f-5b1d-4e50-8bc6-d94036f2ae70" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170320T165116Z:63eb3d5b-2895-4859-8173-3044cf046739" + "WESTUS2:20170401T142321Z:7b90cf8f-5b1d-4e50-8bc6-d94036f2ae70" ] }, "StatusCode": 200 @@ -182,17 +182,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7eb4561a-a1a7-45b5-baa6-ef330fd8efd6" + "4448a61e-4fa9-4dc5-bad7-eae8d9e69bad" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaa\",\r\n \"name\": \"aaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636256214302176420\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaa6039\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaa6039.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaa6039.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaa6039.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaa\",\r\n \"name\": \"aaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636256214302176422\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": true,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaa6039\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaa6039.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaa6039.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaa6039.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -204,7 +204,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 16:51:16 GMT" + "Sat, 01 Apr 2017 14:23:20 GMT" ], "Pragma": [ "no-cache" @@ -226,16 +226,16 @@ "nosniff" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14970" ], "x-ms-request-id": [ - "589e53a6-2aab-40ef-a9af-a0ce0fe6fe02" + "9f569d9e-59d1-4ec1-9702-52c24d6baa43" ], "x-ms-correlation-request-id": [ - "589e53a6-2aab-40ef-a9af-a0ce0fe6fe02" + "9f569d9e-59d1-4ec1-9702-52c24d6baa43" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170320T165117Z:589e53a6-2aab-40ef-a9af-a0ce0fe6fe02" + "WESTUS2:20170401T142321Z:9f569d9e-59d1-4ec1-9702-52c24d6baa43" ] }, "StatusCode": 200 @@ -253,17 +253,17 @@ "247" ], "x-ms-client-request-id": [ - "121a84f1-bc6e-46c0-8991-2d12be2028f2" + "d49e9e12-0473-4947-9e80-9aaeac900d11" ], "accept-language": [ "en-US" ], "User-Agent": [ "FxVersion/4.6.24410.01", - "Microsoft.Azure.Management.ServiceFabric.ServiceFabricClient/1.0.0" + "Microsoft.Azure.Management.ServiceFabric.ServiceFabricManagementClient/1.0.0-preview" ] }, - "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaa\",\r\n \"name\": \"aaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636256214302176420\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": false,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaa6039\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaa6039.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaa6039.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaa6039.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": \"southcentralus\",\r\n \"id\": \"/subscriptions/b36cdf46-b75d-4dc2-9fe1-1296ee8c623d/resourcegroups/aaaaarg/providers/Microsoft.ServiceFabric/clusters/aaaaa\",\r\n \"name\": \"aaaaa\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"aaaaa\"\r\n },\r\n \"etag\": \"W/\\\"636256214302176422\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterId\": \"9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clusterCodeVersion\": \"5.5.216.0\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"http://aaaaa.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/9a68d9c5-ddb7-4439-b657-03540135ff20\",\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": \"1000\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"upgradeDescription\": {\r\n \"overrideUserUpgradePolicy\": false,\r\n \"forceRestart\": true,\r\n \"upgradeReplicaSetCheckTimeout\": \"10675199.02:48:05.4775807\",\r\n \"healthCheckWaitDuration\": \"00:00:01\",\r\n \"healthCheckStableDuration\": \"00:00:01\",\r\n \"healthCheckRetryTimeout\": \"00:00:01\",\r\n \"upgradeTimeout\": \"12:00:00\",\r\n \"upgradeDomainTimeout\": \"02:00:00\",\r\n \"healthPolicy\": {\r\n \"maxPercentUnhealthyNodes\": 100,\r\n \"maxPercentUnhealthyApplications\": 100\r\n },\r\n \"deltaHealthPolicy\": {\r\n \"maxPercentDeltaUnhealthyNodes\": 0,\r\n \"maxPercentUpgradeDomainDeltaUnhealthyNodes\": 0,\r\n \"maxPercentDeltaUnhealthyApplications\": 0\r\n }\r\n },\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": \"sflogsaaaaa6039\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsaaaaa6039.blob.core.windows.net/\",\r\n \"queueEndpoint\": \"https://sflogsaaaaa6039.queue.core.windows.net/\",\r\n \"tableEndpoint\": \"https://sflogsaaaaa6039.table.core.windows.net/\"\r\n },\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"n1\",\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"vmInstanceCount\": 5,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"upgradeMode\": \"Automatic\",\r\n \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": \"5.4.145.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.4.164.9494\",\r\n \"supportExpiryUtc\": \"2017-05-10T00:00:00\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.216.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n },\r\n {\r\n \"codeVersion\": \"5.5.219.0\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}", "ResponseHeaders": { "Content-Type": [ "application/json" @@ -275,7 +275,7 @@ "no-cache" ], "Date": [ - "Mon, 20 Mar 2017 16:51:16 GMT" + "Sat, 01 Apr 2017 14:23:20 GMT" ], "Pragma": [ "no-cache" @@ -299,13 +299,13 @@ "1199" ], "x-ms-request-id": [ - "dacf8d09-3a24-405f-891b-ff1f407153bb" + "921764f5-534e-496b-9546-e90711053f81" ], "x-ms-correlation-request-id": [ - "dacf8d09-3a24-405f-891b-ff1f407153bb" + "921764f5-534e-496b-9546-e90711053f81" ], "x-ms-routing-request-id": [ - "CENTRALUS:20170320T165116Z:dacf8d09-3a24-405f-891b-ff1f407153bb" + "WESTUS2:20170401T142321Z:921764f5-534e-496b-9546-e90711053f81" ] }, "StatusCode": 200 diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/ServiceFabricTestBase.cs b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/ServiceFabricTestBase.cs index 908af8995216..180b9e75f22f 100644 --- a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/ServiceFabricTestBase.cs +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/ServiceFabricTestBase.cs @@ -29,9 +29,9 @@ protected ResourceManagementClient GetResourceManagementClient(MockContext conte }); } - protected ServiceFabricClient GetServiceFabricClient(MockContext context) + protected ServiceFabricManagementClient GetServiceFabricClient(MockContext context) { - return context.GetServiceClient( + return context.GetServiceClient( handlers: new RecordedDelegatingHandler() { StatusCodeToReturn = HttpStatusCode.OK, @@ -53,9 +53,9 @@ protected IPage GetAllServiceFabricClusterResources( return resouceClient.ResourceGroups.ListResources(rg.Name, query); } - protected Cluster CreateACluster( + protected Cluster CreateCluster( ResourceManagementClient resouceClient, - ServiceFabricClient serviceFabricClient, + ServiceFabricManagementClient serviceFabricClient, string rg, string rgLocation, string clusterName) @@ -67,11 +67,10 @@ protected Cluster CreateACluster( clusterName); var newCluster = new Cluster( - rgLocation, - "Silver", - "Automatic", - "http://testCluster.southcentralus.cloudapp.azure.com:19080", - new List() + location: rgLocation, + reliabilityLevel: "Silver", + managementEndpoint: "http://testCluster.southcentralus.cloudapp.azure.com:19080", + nodeTypes: new List() { new NodeTypeDescription() { @@ -96,10 +95,10 @@ protected Cluster CreateACluster( ReverseProxyEndpointPort = null } }, - "Windows", - clusterId, - "testCluster", - "Microsoft.ServiceFabric/clusters" + clusterId: clusterId, + name: "testCluster2", + type: "Microsoft.ServiceFabric/clusters", + vmImage: "Windows" ) { }; diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestCreateClusterResource.cs b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestCreateClusterResource.cs index b14a3f171096..3ad8d74165c6 100644 --- a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestCreateClusterResource.cs +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestCreateClusterResource.cs @@ -37,9 +37,9 @@ public void TestCreate() Assert.True(e.Response.StatusCode == System.Net.HttpStatusCode.NotFound); } - System.Threading.Thread.Sleep(TimeSpan.FromSeconds(10)); + TestUtilities.Wait(TimeSpan.FromSeconds(10)); - var cluster = CreateACluster(resouceClient, serviceFabricClient, resouceGroupName, location, clusterName); + var cluster = CreateCluster(resouceClient, serviceFabricClient, resouceGroupName, location, clusterName); cluster = serviceFabricClient.Clusters.Get(resouceGroupName, clusterName); Assert.NotNull(cluster); } diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestDeleteClusterResource.cs b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestDeleteClusterResource.cs index 54eea9700b23..8d5c79e6a256 100644 --- a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestDeleteClusterResource.cs +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestDeleteClusterResource.cs @@ -27,7 +27,7 @@ public void TestDelete() var location = "South Central US"; var clusterName = "testDeleteCluster"; - var cluster = CreateACluster(resouceClient, serviceFabricClient, resouceGroupName, location, clusterName); + var cluster = CreateCluster(resouceClient, serviceFabricClient, resouceGroupName, location, clusterName); cluster = serviceFabricClient.Clusters.Get(resouceGroupName, clusterName); Assert.NotNull(cluster); diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestListClusterVersions.cs b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestListClusterVersions.cs new file mode 100644 index 000000000000..43c5252d6c82 --- /dev/null +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestListClusterVersions.cs @@ -0,0 +1,36 @@ +using Microsoft.Azure.Management.ServiceFabric; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Xunit; + +namespace ServiceFabric.Tests.Tests +{ + public class TestListClusterVersions : ServiceFabricTestBase + { + [Fact] + public void TestList() + { + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var serviceFabricClient = GetServiceFabricClient(context); + var clusterVersions = serviceFabricClient.ClusterVersions.List("southcentralus","Windows"); + + Assert.NotNull(clusterVersions); + Assert.NotNull(clusterVersions); + var versions = clusterVersions.GroupBy(c => c.Id).Select(r => r.Key.Split('/')[2]).Distinct(); + Assert.Equal(versions.Count(), 1); + + clusterVersions = serviceFabricClient.ClusterVersions.List("southcentralus", "default"); + + Assert.NotNull(clusterVersions); + Assert.NotNull(clusterVersions); + versions = clusterVersions.GroupBy(c => c.Id).Select(r => r.Key.Split('/')[2]).Distinct(); + Assert.Equal(versions.Count(), 1); + } + } + + } +} diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestUpdateClusterResource.cs b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestUpdateClusterResource.cs index e8583ff04218..a5c1cab12c51 100644 --- a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestUpdateClusterResource.cs +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/Tests/TestUpdateClusterResource.cs @@ -55,7 +55,7 @@ public void TestUpdate() while (string.Compare(cluster.ClusterState, "ready",true) != 0) { cluster = serviceFabricClient.Clusters.Get(rg.Name, res.Name); - System.Threading.Thread.Sleep(TimeSpan.FromMinutes(1)); + TestUtilities.Wait(TimeSpan.FromMinutes(1)); } var ns = cluster.FabricSettings.Where(s => s.Name == "NamingService").First(); From 7d77f79d53cf36ebfc21f779f573f6a2cb4087de Mon Sep 17 00:00:00 2001 From: Ching Chen Date: Sat, 1 Apr 2017 10:05:21 -0700 Subject: [PATCH 6/7] fix build warning --- .../ServiceFabric/ServiceFabric.Test/project.json | 6 +++--- src/ResourceManagement/ServiceFabric/ServiceFabric.sln | 6 ------ 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/project.json b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/project.json index b7e4b8f1c373..e09c77149b48 100644 --- a/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/project.json +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.Test/project.json @@ -29,13 +29,13 @@ "type": "platform", "version": "1.0.0" }, - "Microsoft.Azure.Test.HttpRecorder": "[1.6.6-preview,2.0.0)", + "Microsoft.Azure.Test.HttpRecorder": "[1.6.7-preview,2.0.0)", "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "[1.5.0-preview,2.0.0)", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)", + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.5,4.0.0)", "Microsoft.Azure.ResourceManager": "1.0.0-preview", "xunit": "2.2.0-beta2-build3300", "dotnet-test-xunit": "2.2.0-preview2-build1029", - "Microsoft.Azure.Management.ServiceFabric": "1.0.0", + "Microsoft.Azure.Management.ServiceFabric": "1.0.0-preview", "System.Linq": "4.3.0" } } \ No newline at end of file diff --git a/src/ResourceManagement/ServiceFabric/ServiceFabric.sln b/src/ResourceManagement/ServiceFabric/ServiceFabric.sln index 92db51d3a784..40e65fe31085 100644 --- a/src/ResourceManagement/ServiceFabric/ServiceFabric.sln +++ b/src/ResourceManagement/ServiceFabric/ServiceFabric.sln @@ -5,8 +5,6 @@ VisualStudioVersion = 14.0.25420.1 MinimumVisualStudioVersion = 10.0.40219.1 Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "ServiceFabric.Tests", "ServiceFabric.Test\ServiceFabric.Tests.xproj", "{F857A01A-2955-4FC9-836B-FE7FD80C6CC2}" EndProject -Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "HttpRecorder", "..\..\TestFramework\Microsoft.Azure.Test.HttpRecorder\HttpRecorder.xproj", "{5D12D45A-E55F-410E-B8AF-9DC90E81B237}" -EndProject Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Azure.Management.ServiceFabric", "Microsoft.Azure.Management.ServiceFabric\Microsoft.Azure.Management.ServiceFabric.xproj", "{624659FE-FE8F-41D2-99AB-0BA92DE15A65}" EndProject Global @@ -19,10 +17,6 @@ Global {F857A01A-2955-4FC9-836B-FE7FD80C6CC2}.Debug|Any CPU.Build.0 = Debug|Any CPU {F857A01A-2955-4FC9-836B-FE7FD80C6CC2}.Release|Any CPU.ActiveCfg = Release|Any CPU {F857A01A-2955-4FC9-836B-FE7FD80C6CC2}.Release|Any CPU.Build.0 = Release|Any CPU - {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Debug|Any CPU.Build.0 = Debug|Any CPU - {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Release|Any CPU.ActiveCfg = Release|Any CPU - {5D12D45A-E55F-410E-B8AF-9DC90E81B237}.Release|Any CPU.Build.0 = Release|Any CPU {624659FE-FE8F-41D2-99AB-0BA92DE15A65}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {624659FE-FE8F-41D2-99AB-0BA92DE15A65}.Debug|Any CPU.Build.0 = Debug|Any CPU {624659FE-FE8F-41D2-99AB-0BA92DE15A65}.Release|Any CPU.ActiveCfg = Release|Any CPU From 00e7f092420ae205e679b47ac83fa313c80fb9ab Mon Sep 17 00:00:00 2001 From: Ching Chen Date: Sat, 1 Apr 2017 10:12:50 -0700 Subject: [PATCH 7/7] fix swagger file path --- .../Microsoft.Azure.Management.ServiceFabric/generate.cmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/generate.cmd b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/generate.cmd index 9bd82eea14ad..9e6e5b1b4d13 100644 --- a/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/generate.cmd +++ b/src/ResourceManagement/ServiceFabric/Microsoft.Azure.Management.ServiceFabric/generate.cmd @@ -6,7 +6,7 @@ @echo off set autoRestVersion=1.0.0-Nightly20170202 if "%1" == "" ( - set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-servicefabric/2016-09-01/swagger/servicefabric.json" + set specFile="https://github.com/Azure/azure-rest-api-specs/blob/c683f6510a689e1629adb5d8e9e21848c68f2ca3/arm-servicefabric/2016-09-01/swagger/servicefabric.json" ) else ( set specFile="%1" )