diff --git a/eng/mgmt/mgmtmetadata/compute_resource-manager.txt b/eng/mgmt/mgmtmetadata/compute_resource-manager.txt index 95de2cb168890..cbc479aa0a6bc 100644 --- a/eng/mgmt/mgmtmetadata/compute_resource-manager.txt +++ b/eng/mgmt/mgmtmetadata/compute_resource-manager.txt @@ -4,11 +4,11 @@ Commencing code generation Generating CSharp code Executing AutoRest command cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/compute/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\azure-sdk-for-net\sdk -2021-02-17 15:04:43 UTC +2021-03-13 17:03:23 UTC Azure-rest-api-specs repository information GitHub fork: Azure Branch: master -Commit: a2a3da0d9f4a26b317fc15eb1cf34557c2a8d05a +Commit: b81a30cfeca9873872374279e8351923326cdb04 AutoRest information Requested version: v2 Bootstrapper version: autorest@2.0.4413 diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/AzSdk.RP.props b/sdk/compute/Microsoft.Azure.Management.Compute/AzSdk.RP.props index 9d930d1c10887..11f7df03de607 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/AzSdk.RP.props +++ b/sdk/compute/Microsoft.Azure.Management.Compute/AzSdk.RP.props @@ -1,7 +1,7 @@  - Compute_2020-12-01;Compute_2020-06-30;Compute_2020-05-01;Compute_2019-12-01;Compute_2019-11-01;Compute_2019-04-01; + Compute_2021-03-01;Compute_2020-12-01;Compute_2020-06-30;Compute_2020-05-01;Compute_2019-12-01;Compute_2019-11-01;Compute_2019-04-01; $(PackageTags);$(CommonTags);$(AzureApiTag); diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceOperatingSystemsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceOperatingSystemsOperations.cs new file mode 100644 index 0000000000000..cc63697f5b031 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceOperatingSystemsOperations.cs @@ -0,0 +1,1172 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + 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; + + /// + /// CloudServiceOperatingSystemsOperations operations. + /// + internal partial class CloudServiceOperatingSystemsOperations : IServiceOperations, ICloudServiceOperatingSystemsOperations + { + /// + /// Initializes a new instance of the CloudServiceOperatingSystemsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal CloudServiceOperatingSystemsOperations(ComputeManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the ComputeManagementClient + /// + public ComputeManagementClient Client { get; private set; } + + /// + /// Gets properties of a guest operating system version that can be specified + /// in the XML service configuration (.cscfg) for a cloud service. + /// + /// + /// Name of the location that the OS version pertains to. + /// + /// + /// Name of the OS version. + /// + /// + /// 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> GetOSVersionWithHttpMessagesAsync(string location, string osVersionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "location"); + } + if (osVersionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "osVersionName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2021-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("location", location); + tracingParameters.Add("osVersionName", osVersionName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetOSVersion", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/cloudServiceOsVersions/{osVersionName}").ToString(); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + _url = _url.Replace("{osVersionName}", System.Uri.EscapeDataString(osVersionName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a list of all guest operating system versions available to be + /// specified in the XML service configuration (.cscfg) for a cloud service. + /// Use nextLink property in the response to get the next page of OS versions. + /// Do this till nextLink is null to fetch all the OS versions. + /// + /// + /// Name of the location that the OS versions pertain to. + /// + /// + /// 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>> ListOSVersionsWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "location"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2021-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("location", location); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListOSVersions", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/cloudServiceOsVersions").ToString(); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets properties of a guest operating system family that can be specified in + /// the XML service configuration (.cscfg) for a cloud service. + /// + /// + /// Name of the location that the OS family pertains to. + /// + /// + /// Name of the OS family. + /// + /// + /// 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> GetOSFamilyWithHttpMessagesAsync(string location, string osFamilyName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "location"); + } + if (osFamilyName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "osFamilyName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2021-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("location", location); + tracingParameters.Add("osFamilyName", osFamilyName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetOSFamily", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/cloudServiceOsFamilies/{osFamilyName}").ToString(); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + _url = _url.Replace("{osFamilyName}", System.Uri.EscapeDataString(osFamilyName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a list of all guest operating system families available to be + /// specified in the XML service configuration (.cscfg) for a cloud service. + /// Use nextLink property in the response to get the next page of OS Families. + /// Do this till nextLink is null to fetch all the OS Families. + /// + /// + /// Name of the location that the OS families pertain to. + /// + /// + /// 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>> ListOSFamiliesWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "location"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2021-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("location", location); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListOSFamilies", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/cloudServiceOsFamilies").ToString(); + _url = _url.Replace("{location}", System.Uri.EscapeDataString(location)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a list of all guest operating system versions available to be + /// specified in the XML service configuration (.cscfg) for a cloud service. + /// Use nextLink property in the response to get the next page of OS versions. + /// Do this till nextLink is null to fetch all the OS versions. + /// + /// + /// 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>> ListOSVersionsNextWithHttpMessagesAsync(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, "ListOSVersionsNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a list of all guest operating system families available to be + /// specified in the XML service configuration (.cscfg) for a cloud service. + /// Use nextLink property in the response to get the next page of OS Families. + /// Do this till nextLink is null to fetch all the OS Families. + /// + /// + /// 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>> ListOSFamiliesNextWithHttpMessagesAsync(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, "ListOSFamiliesNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceOperatingSystemsOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceOperatingSystemsOperationsExtensions.cs new file mode 100644 index 0000000000000..524d3e1585687 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceOperatingSystemsOperationsExtensions.cs @@ -0,0 +1,269 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for CloudServiceOperatingSystemsOperations. + /// + public static partial class CloudServiceOperatingSystemsOperationsExtensions + { + /// + /// Gets properties of a guest operating system version that can be specified + /// in the XML service configuration (.cscfg) for a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the location that the OS version pertains to. + /// + /// + /// Name of the OS version. + /// + public static OSVersion GetOSVersion(this ICloudServiceOperatingSystemsOperations operations, string location, string osVersionName) + { + return operations.GetOSVersionAsync(location, osVersionName).GetAwaiter().GetResult(); + } + + /// + /// Gets properties of a guest operating system version that can be specified + /// in the XML service configuration (.cscfg) for a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the location that the OS version pertains to. + /// + /// + /// Name of the OS version. + /// + /// + /// The cancellation token. + /// + public static async Task GetOSVersionAsync(this ICloudServiceOperatingSystemsOperations operations, string location, string osVersionName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetOSVersionWithHttpMessagesAsync(location, osVersionName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a list of all guest operating system versions available to be + /// specified in the XML service configuration (.cscfg) for a cloud service. + /// Use nextLink property in the response to get the next page of OS versions. + /// Do this till nextLink is null to fetch all the OS versions. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the location that the OS versions pertain to. + /// + public static IPage ListOSVersions(this ICloudServiceOperatingSystemsOperations operations, string location) + { + return operations.ListOSVersionsAsync(location).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of all guest operating system versions available to be + /// specified in the XML service configuration (.cscfg) for a cloud service. + /// Use nextLink property in the response to get the next page of OS versions. + /// Do this till nextLink is null to fetch all the OS versions. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the location that the OS versions pertain to. + /// + /// + /// The cancellation token. + /// + public static async Task> ListOSVersionsAsync(this ICloudServiceOperatingSystemsOperations operations, string location, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListOSVersionsWithHttpMessagesAsync(location, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets properties of a guest operating system family that can be specified in + /// the XML service configuration (.cscfg) for a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the location that the OS family pertains to. + /// + /// + /// Name of the OS family. + /// + public static OSFamily GetOSFamily(this ICloudServiceOperatingSystemsOperations operations, string location, string osFamilyName) + { + return operations.GetOSFamilyAsync(location, osFamilyName).GetAwaiter().GetResult(); + } + + /// + /// Gets properties of a guest operating system family that can be specified in + /// the XML service configuration (.cscfg) for a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the location that the OS family pertains to. + /// + /// + /// Name of the OS family. + /// + /// + /// The cancellation token. + /// + public static async Task GetOSFamilyAsync(this ICloudServiceOperatingSystemsOperations operations, string location, string osFamilyName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetOSFamilyWithHttpMessagesAsync(location, osFamilyName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a list of all guest operating system families available to be + /// specified in the XML service configuration (.cscfg) for a cloud service. + /// Use nextLink property in the response to get the next page of OS Families. + /// Do this till nextLink is null to fetch all the OS Families. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the location that the OS families pertain to. + /// + public static IPage ListOSFamilies(this ICloudServiceOperatingSystemsOperations operations, string location) + { + return operations.ListOSFamiliesAsync(location).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of all guest operating system families available to be + /// specified in the XML service configuration (.cscfg) for a cloud service. + /// Use nextLink property in the response to get the next page of OS Families. + /// Do this till nextLink is null to fetch all the OS Families. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the location that the OS families pertain to. + /// + /// + /// The cancellation token. + /// + public static async Task> ListOSFamiliesAsync(this ICloudServiceOperatingSystemsOperations operations, string location, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListOSFamiliesWithHttpMessagesAsync(location, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a list of all guest operating system versions available to be + /// specified in the XML service configuration (.cscfg) for a cloud service. + /// Use nextLink property in the response to get the next page of OS versions. + /// Do this till nextLink is null to fetch all the OS versions. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListOSVersionsNext(this ICloudServiceOperatingSystemsOperations operations, string nextPageLink) + { + return operations.ListOSVersionsNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of all guest operating system versions available to be + /// specified in the XML service configuration (.cscfg) for a cloud service. + /// Use nextLink property in the response to get the next page of OS versions. + /// Do this till nextLink is null to fetch all the OS versions. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListOSVersionsNextAsync(this ICloudServiceOperatingSystemsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListOSVersionsNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a list of all guest operating system families available to be + /// specified in the XML service configuration (.cscfg) for a cloud service. + /// Use nextLink property in the response to get the next page of OS Families. + /// Do this till nextLink is null to fetch all the OS Families. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListOSFamiliesNext(this ICloudServiceOperatingSystemsOperations operations, string nextPageLink) + { + return operations.ListOSFamiliesNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of all guest operating system families available to be + /// specified in the XML service configuration (.cscfg) for a cloud service. + /// Use nextLink property in the response to get the next page of OS Families. + /// Do this till nextLink is null to fetch all the OS Families. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListOSFamiliesNextAsync(this ICloudServiceOperatingSystemsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListOSFamiliesNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRoleInstancesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRoleInstancesOperations.cs new file mode 100644 index 0000000000000..2d80b05adee46 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRoleInstancesOperations.cs @@ -0,0 +1,1855 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.IO; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// CloudServiceRoleInstancesOperations operations. + /// + internal partial class CloudServiceRoleInstancesOperations : IServiceOperations, ICloudServiceRoleInstancesOperations + { + /// + /// Initializes a new instance of the CloudServiceRoleInstancesOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal CloudServiceRoleInstancesOperations(ComputeManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the ComputeManagementClient + /// + public ComputeManagementClient Client { get; private set; } + + /// + /// Deletes a role instance from a cloud service. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets a role instance from a cloud service. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The expand expression to apply to the operation. Possible values include: + /// 'instanceView' + /// + /// + /// 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 roleInstanceName, string resourceGroupName, string cloudServiceName, InstanceViewTypes? expand = default(InstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (roleInstanceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "roleInstanceName"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2021-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("roleInstanceName", roleInstanceName); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("expand", expand); + 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.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}").ToString(); + _url = _url.Replace("{roleInstanceName}", System.Uri.EscapeDataString(roleInstanceName)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(expand, Client.SerializationSettings).Trim('"')))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + 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; + } + + /// + /// Retrieves information about the run-time state of a role instance in a + /// cloud service. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// 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> GetInstanceViewWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (roleInstanceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "roleInstanceName"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2021-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("roleInstanceName", roleInstanceName); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetInstanceView", 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.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/instanceView").ToString(); + _url = _url.Replace("{roleInstanceName}", System.Uri.EscapeDataString(roleInstanceName)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the list of all role instances in a cloud service. Use nextLink + /// property in the response to get the next page of role instances. Do this + /// till nextLink is null to fetch all the role instances. + /// + /// + /// + /// + /// + /// + /// The expand expression to apply to the operation. Possible values include: + /// 'instanceView' + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, InstanceViewTypes? expand = default(InstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2021-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("expand", expand); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (expand != null) + { + _queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(expand, Client.SerializationSettings).Trim('"')))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + 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; + } + + /// + /// The Reboot Role Instance asynchronous operation requests a reboot of a role + /// instance in the cloud service. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task RestartWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginRestartWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// The Reimage Role Instance asynchronous operation reinstalls the operating + /// system on instances of web roles or worker roles. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task ReimageWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginReimageWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// The Rebuild Role Instance asynchronous operation reinstalls the operating + /// system on instances of web roles or worker roles and initializes the + /// storage resources that are used by them. If you do not want to initialize + /// storage resources, you can use Reimage Role Instance. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task RebuildWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginRebuildWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets a remote desktop file for a role instance in a cloud service. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// 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> GetRemoteDesktopFileWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (roleInstanceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "roleInstanceName"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2021-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("roleInstanceName", roleInstanceName); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetRemoteDesktopFile", 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.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/remoteDesktopFile").ToString(); + _url = _url.Replace("{roleInstanceName}", System.Uri.EscapeDataString(roleInstanceName)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(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, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 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) + { + _result.Body = await _httpResponse.Content.ReadAsStreamAsync().ConfigureAwait(false); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deletes a role instance from a cloud service. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// 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 BeginDeleteWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (roleInstanceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "roleInstanceName"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2021-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("roleInstanceName", roleInstanceName); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", 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.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}").ToString(); + _url = _url.Replace("{roleInstanceName}", System.Uri.EscapeDataString(roleInstanceName)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(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 != 202 && (int)_statusCode != 204) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// The Reboot Role Instance asynchronous operation requests a reboot of a role + /// instance in the cloud service. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// 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 BeginRestartWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (roleInstanceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "roleInstanceName"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2021-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("roleInstanceName", roleInstanceName); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginRestart", 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.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/restart").ToString(); + _url = _url.Replace("{roleInstanceName}", System.Uri.EscapeDataString(roleInstanceName)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// The Reimage Role Instance asynchronous operation reinstalls the operating + /// system on instances of web roles or worker roles. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// 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 BeginReimageWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (roleInstanceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "roleInstanceName"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2021-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("roleInstanceName", roleInstanceName); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginReimage", 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.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/reimage").ToString(); + _url = _url.Replace("{roleInstanceName}", System.Uri.EscapeDataString(roleInstanceName)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// The Rebuild Role Instance asynchronous operation reinstalls the operating + /// system on instances of web roles or worker roles and initializes the + /// storage resources that are used by them. If you do not want to initialize + /// storage resources, you can use Reimage Role Instance. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// 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 BeginRebuildWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (roleInstanceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "roleInstanceName"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2021-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("roleInstanceName", roleInstanceName); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginRebuild", 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.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/rebuild").ToString(); + _url = _url.Replace("{roleInstanceName}", System.Uri.EscapeDataString(roleInstanceName)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the list of all role instances in a cloud service. Use nextLink + /// property in the response to get the next page of role instances. Do this + /// till nextLink is null to fetch all the role instances. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRoleInstancesOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRoleInstancesOperationsExtensions.cs new file mode 100644 index 0000000000000..b629a041cd9b8 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRoleInstancesOperationsExtensions.cs @@ -0,0 +1,579 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.IO; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for CloudServiceRoleInstancesOperations. + /// + public static partial class CloudServiceRoleInstancesOperationsExtensions + { + /// + /// Deletes a role instance from a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + public static void Delete(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) + { + operations.DeleteAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// Deletes a role instance from a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Gets a role instance from a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The expand expression to apply to the operation. Possible values include: + /// 'instanceView' + /// + public static RoleInstance Get(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, InstanceViewTypes? expand = default(InstanceViewTypes?)) + { + return operations.GetAsync(roleInstanceName, resourceGroupName, cloudServiceName, expand).GetAwaiter().GetResult(); + } + + /// + /// Gets a role instance from a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The expand expression to apply to the operation. Possible values include: + /// 'instanceView' + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, InstanceViewTypes? expand = default(InstanceViewTypes?), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, expand, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Retrieves information about the run-time state of a role instance in a + /// cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + public static RoleInstanceInstanceView GetInstanceView(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) + { + return operations.GetInstanceViewAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// Retrieves information about the run-time state of a role instance in a + /// cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The cancellation token. + /// + public static async Task GetInstanceViewAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetInstanceViewWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the list of all role instances in a cloud service. Use nextLink + /// property in the response to get the next page of role instances. Do this + /// till nextLink is null to fetch all the role instances. + /// + /// + /// The operations group for this extension method. + /// + /// + /// + /// + /// + /// + /// The expand expression to apply to the operation. Possible values include: + /// 'instanceView' + /// + public static IPage List(this ICloudServiceRoleInstancesOperations operations, string resourceGroupName, string cloudServiceName, InstanceViewTypes? expand = default(InstanceViewTypes?)) + { + return operations.ListAsync(resourceGroupName, cloudServiceName, expand).GetAwaiter().GetResult(); + } + + /// + /// Gets the list of all role instances in a cloud service. Use nextLink + /// property in the response to get the next page of role instances. Do this + /// till nextLink is null to fetch all the role instances. + /// + /// + /// The operations group for this extension method. + /// + /// + /// + /// + /// + /// + /// The expand expression to apply to the operation. Possible values include: + /// 'instanceView' + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this ICloudServiceRoleInstancesOperations operations, string resourceGroupName, string cloudServiceName, InstanceViewTypes? expand = default(InstanceViewTypes?), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, cloudServiceName, expand, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// The Reboot Role Instance asynchronous operation requests a reboot of a role + /// instance in the cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + public static void Restart(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) + { + operations.RestartAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// The Reboot Role Instance asynchronous operation requests a reboot of a role + /// instance in the cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The cancellation token. + /// + public static async Task RestartAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.RestartWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// The Reimage Role Instance asynchronous operation reinstalls the operating + /// system on instances of web roles or worker roles. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + public static void Reimage(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) + { + operations.ReimageAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// The Reimage Role Instance asynchronous operation reinstalls the operating + /// system on instances of web roles or worker roles. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The cancellation token. + /// + public static async Task ReimageAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.ReimageWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// The Rebuild Role Instance asynchronous operation reinstalls the operating + /// system on instances of web roles or worker roles and initializes the + /// storage resources that are used by them. If you do not want to initialize + /// storage resources, you can use Reimage Role Instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + public static void Rebuild(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) + { + operations.RebuildAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// The Rebuild Role Instance asynchronous operation reinstalls the operating + /// system on instances of web roles or worker roles and initializes the + /// storage resources that are used by them. If you do not want to initialize + /// storage resources, you can use Reimage Role Instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The cancellation token. + /// + public static async Task RebuildAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.RebuildWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Gets a remote desktop file for a role instance in a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + public static Stream GetRemoteDesktopFile(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) + { + return operations.GetRemoteDesktopFileAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// Gets a remote desktop file for a role instance in a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The cancellation token. + /// + public static async Task GetRemoteDesktopFileAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + var _result = await operations.GetRemoteDesktopFileWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false); + _result.Request.Dispose(); + return _result.Body; + } + + /// + /// Deletes a role instance from a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + public static void BeginDelete(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) + { + operations.BeginDeleteAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// Deletes a role instance from a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The cancellation token. + /// + public static async Task BeginDeleteAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginDeleteWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// The Reboot Role Instance asynchronous operation requests a reboot of a role + /// instance in the cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + public static void BeginRestart(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) + { + operations.BeginRestartAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// The Reboot Role Instance asynchronous operation requests a reboot of a role + /// instance in the cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The cancellation token. + /// + public static async Task BeginRestartAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginRestartWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// The Reimage Role Instance asynchronous operation reinstalls the operating + /// system on instances of web roles or worker roles. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + public static void BeginReimage(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) + { + operations.BeginReimageAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// The Reimage Role Instance asynchronous operation reinstalls the operating + /// system on instances of web roles or worker roles. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The cancellation token. + /// + public static async Task BeginReimageAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginReimageWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// The Rebuild Role Instance asynchronous operation reinstalls the operating + /// system on instances of web roles or worker roles and initializes the + /// storage resources that are used by them. If you do not want to initialize + /// storage resources, you can use Reimage Role Instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + public static void BeginRebuild(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName) + { + operations.BeginRebuildAsync(roleInstanceName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// The Rebuild Role Instance asynchronous operation reinstalls the operating + /// system on instances of web roles or worker roles and initializes the + /// storage resources that are used by them. If you do not want to initialize + /// storage resources, you can use Reimage Role Instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The cancellation token. + /// + public static async Task BeginRebuildAsync(this ICloudServiceRoleInstancesOperations operations, string roleInstanceName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginRebuildWithHttpMessagesAsync(roleInstanceName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Gets the list of all role instances in a cloud service. Use nextLink + /// property in the response to get the next page of role instances. Do this + /// till nextLink is null to fetch all the role instances. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this ICloudServiceRoleInstancesOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets the list of all role instances in a cloud service. Use nextLink + /// property in the response to get the next page of role instances. Do this + /// till nextLink is null to fetch all the role instances. + /// + /// + /// 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 ICloudServiceRoleInstancesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRolesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRolesOperations.cs new file mode 100644 index 0000000000000..5dab79d78a7b1 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRolesOperations.cs @@ -0,0 +1,624 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + 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; + + /// + /// CloudServiceRolesOperations operations. + /// + internal partial class CloudServiceRolesOperations : IServiceOperations, ICloudServiceRolesOperations + { + /// + /// Initializes a new instance of the CloudServiceRolesOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal CloudServiceRolesOperations(ComputeManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the ComputeManagementClient + /// + public ComputeManagementClient Client { get; private set; } + + /// + /// Gets a role from a cloud service. + /// + /// + /// Name of the role. + /// + /// + /// + /// + /// + /// + /// 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 roleName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (roleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "roleName"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2021-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("roleName", roleName); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + 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.Compute/cloudServices/{cloudServiceName}/roles/{roleName}").ToString(); + _url = _url.Replace("{roleName}", System.Uri.EscapeDataString(roleName)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a list of all roles in a cloud service. Use nextLink property in the + /// response to get the next page of roles. Do this till nextLink is null to + /// fetch all the roles. + /// + /// + /// + /// + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2021-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roles").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a list of all roles in a cloud service. Use nextLink property in the + /// response to get the next page of roles. Do this till nextLink is null to + /// fetch all the roles. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRolesOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRolesOperationsExtensions.cs new file mode 100644 index 0000000000000..5e85be38ce4a5 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServiceRolesOperationsExtensions.cs @@ -0,0 +1,145 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for CloudServiceRolesOperations. + /// + public static partial class CloudServiceRolesOperationsExtensions + { + /// + /// Gets a role from a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role. + /// + /// + /// + /// + /// + public static CloudServiceRole Get(this ICloudServiceRolesOperations operations, string roleName, string resourceGroupName, string cloudServiceName) + { + return operations.GetAsync(roleName, resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// Gets a role from a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the role. + /// + /// + /// + /// + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this ICloudServiceRolesOperations operations, string roleName, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(roleName, resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a list of all roles in a cloud service. Use nextLink property in the + /// response to get the next page of roles. Do this till nextLink is null to + /// fetch all the roles. + /// + /// + /// The operations group for this extension method. + /// + /// + /// + /// + /// + public static IPage List(this ICloudServiceRolesOperations operations, string resourceGroupName, string cloudServiceName) + { + return operations.ListAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of all roles in a cloud service. Use nextLink property in the + /// response to get the next page of roles. Do this till nextLink is null to + /// fetch all the roles. + /// + /// + /// The operations group for this extension method. + /// + /// + /// + /// + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this ICloudServiceRolesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a list of all roles in a cloud service. Use nextLink property in the + /// response to get the next page of roles. Do this till nextLink is null to + /// fetch all the roles. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this ICloudServiceRolesOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of all roles in a cloud service. Use nextLink property in the + /// response to get the next page of roles. Do this till nextLink is null to + /// fetch all the roles. + /// + /// + /// 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 ICloudServiceRolesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesOperations.cs new file mode 100644 index 0000000000000..000924eebe8ee --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesOperations.cs @@ -0,0 +1,3122 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + 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; + + /// + /// CloudServicesOperations operations. + /// + internal partial class CloudServicesOperations : IServiceOperations, ICloudServicesOperations + { + /// + /// Initializes a new instance of the CloudServicesOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal CloudServicesOperations(ComputeManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the ComputeManagementClient + /// + public ComputeManagementClient Client { get; private set; } + + /// + /// Create or update a cloud service. Please note some properties can be set + /// only during cloud service creation. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The cloud service object. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, CloudService parameters = default(CloudService), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, cloudServiceName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Update a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Resource tags + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, cloudServiceName, tags, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Deletes a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, cloudServiceName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Display information about a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// 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 cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2021-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + 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.Compute/cloudServices/{cloudServiceName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the status of a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// 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> GetInstanceViewWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2021-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetInstanceView", 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.Compute/cloudServices/{cloudServiceName}/instanceView").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a list of all cloud services in the subscription, regardless of the + /// associated resource group. Use nextLink property in the response to get the + /// next page of Cloud Services. Do this till nextLink is null to fetch all the + /// Cloud Services. + /// + /// + /// 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>> ListAllWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2021-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListAll", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Compute/cloudServices").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a list of all cloud services under a resource group. Use nextLink + /// property in the response to get the next page of Cloud Services. Do this + /// till nextLink is null to fetch all the Cloud Services. + /// + /// + /// Name of the resource group. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2021-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(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; + } + + /// + /// Starts the cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task StartWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginStartWithHttpMessagesAsync(resourceGroupName, cloudServiceName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Power off the cloud service. Note that resources are still attached and you + /// are getting charged for the resources. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task PowerOffWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginPowerOffWithHttpMessagesAsync(resourceGroupName, cloudServiceName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Restarts one or more role instances in a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task RestartWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginRestartWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Reimage asynchronous operation reinstalls the operating system on instances + /// of web roles or worker roles. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task ReimageWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginReimageWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Rebuild Role Instances reinstalls the operating system on instances of web + /// roles or worker roles and initializes the storage resources that are used + /// by them. If you do not want to initialize storage resources, you can use + /// Reimage Role Instances. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task RebuildWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginRebuildWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Deletes role instances in a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteInstancesWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Create or update a cloud service. Please note some properties can be set + /// only during cloud service creation. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The cloud service object. + /// + /// + /// 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> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, CloudService parameters = default(CloudService), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (parameters != null) + { + parameters.Validate(); + } + string apiVersion = "2021-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", 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.Compute/cloudServices/{cloudServiceName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(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(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 201) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _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 a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Resource tags + /// + /// + /// 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 cloudServiceName, IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2021-03-01"; + CloudServiceUpdate parameters = default(CloudServiceUpdate); + if (tags != null) + { + parameters = new CloudServiceUpdate(); + parameters.Tags = tags; + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("parameters", parameters); + 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.Compute/cloudServices/{cloudServiceName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(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(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deletes a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// 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 BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2021-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", 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.Compute/cloudServices/{cloudServiceName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(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 != 202 && (int)_statusCode != 204) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Starts the cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// 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 BeginStartWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2021-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginStart", 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.Compute/cloudServices/{cloudServiceName}/start").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Power off the cloud service. Note that resources are still attached and you + /// are getting charged for the resources. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// 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 BeginPowerOffWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2021-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginPowerOff", 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.Compute/cloudServices/{cloudServiceName}/poweroff").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Restarts one or more role instances in a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + /// + /// 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 BeginRestartWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (roleInstancesProperty == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "roleInstancesProperty"); + } + string apiVersion = "2021-03-01"; + RoleInstances parameters = default(RoleInstances); + if (roleInstancesProperty != null) + { + parameters = new RoleInstances(); + parameters.RoleInstancesProperty = roleInstancesProperty; + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginRestart", 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.Compute/cloudServices/{cloudServiceName}/restart").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Reimage asynchronous operation reinstalls the operating system on instances + /// of web roles or worker roles. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + /// + /// 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 BeginReimageWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (roleInstancesProperty == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "roleInstancesProperty"); + } + string apiVersion = "2021-03-01"; + RoleInstances parameters = default(RoleInstances); + if (roleInstancesProperty != null) + { + parameters = new RoleInstances(); + parameters.RoleInstancesProperty = roleInstancesProperty; + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginReimage", 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.Compute/cloudServices/{cloudServiceName}/reimage").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Rebuild Role Instances reinstalls the operating system on instances of web + /// roles or worker roles and initializes the storage resources that are used + /// by them. If you do not want to initialize storage resources, you can use + /// Reimage Role Instances. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + /// + /// 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 BeginRebuildWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (roleInstancesProperty == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "roleInstancesProperty"); + } + string apiVersion = "2021-03-01"; + RoleInstances parameters = default(RoleInstances); + if (roleInstancesProperty != null) + { + parameters = new RoleInstances(); + parameters.RoleInstancesProperty = roleInstancesProperty; + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginRebuild", 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.Compute/cloudServices/{cloudServiceName}/rebuild").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deletes role instances in a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + /// + /// 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 BeginDeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (roleInstancesProperty == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "roleInstancesProperty"); + } + string apiVersion = "2021-03-01"; + RoleInstances parameters = default(RoleInstances); + if (roleInstancesProperty != null) + { + parameters = new RoleInstances(); + parameters.RoleInstancesProperty = roleInstancesProperty; + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginDeleteInstances", 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.Compute/cloudServices/{cloudServiceName}/delete").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a list of all cloud services in the subscription, regardless of the + /// associated resource group. Use nextLink property in the response to get the + /// next page of Cloud Services. Do this till nextLink is null to fetch all the + /// Cloud Services. + /// + /// + /// 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>> ListAllNextWithHttpMessagesAsync(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, "ListAllNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a list of all cloud services under a resource group. Use nextLink + /// property in the response to get the next page of Cloud Services. Do this + /// till nextLink is null to fetch all the Cloud Services. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesOperationsExtensions.cs new file mode 100644 index 0000000000000..84568a13d4c19 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesOperationsExtensions.cs @@ -0,0 +1,1047 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for CloudServicesOperations. + /// + public static partial class CloudServicesOperationsExtensions + { + /// + /// Create or update a cloud service. Please note some properties can be set + /// only during cloud service creation. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The cloud service object. + /// + public static CloudService CreateOrUpdate(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CloudService parameters = default(CloudService)) + { + return operations.CreateOrUpdateAsync(resourceGroupName, cloudServiceName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Create or update a cloud service. Please note some properties can be set + /// only during cloud service creation. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The cloud service object. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CloudService parameters = default(CloudService), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, cloudServiceName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Update a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Resource tags + /// + public static CloudService Update(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IDictionary tags = default(IDictionary)) + { + return operations.UpdateAsync(resourceGroupName, cloudServiceName, tags).GetAwaiter().GetResult(); + } + + /// + /// Update a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Resource tags + /// + /// + /// The cancellation token. + /// + public static async Task UpdateAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IDictionary tags = default(IDictionary), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, cloudServiceName, tags, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + public static void Delete(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName) + { + operations.DeleteAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// Deletes a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Display information about a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + public static CloudService Get(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName) + { + return operations.GetAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// Display information about a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the status of a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + public static CloudServiceInstanceView GetInstanceView(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName) + { + return operations.GetInstanceViewAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// Gets the status of a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The cancellation token. + /// + public static async Task GetInstanceViewAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetInstanceViewWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a list of all cloud services in the subscription, regardless of the + /// associated resource group. Use nextLink property in the response to get the + /// next page of Cloud Services. Do this till nextLink is null to fetch all the + /// Cloud Services. + /// + /// + /// The operations group for this extension method. + /// + public static IPage ListAll(this ICloudServicesOperations operations) + { + return operations.ListAllAsync().GetAwaiter().GetResult(); + } + + /// + /// Gets a list of all cloud services in the subscription, regardless of the + /// associated resource group. Use nextLink property in the response to get the + /// next page of Cloud Services. Do this till nextLink is null to fetch all the + /// Cloud Services. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAllAsync(this ICloudServicesOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListAllWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a list of all cloud services under a resource group. Use nextLink + /// property in the response to get the next page of Cloud Services. Do this + /// till nextLink is null to fetch all the Cloud Services. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + public static IPage List(this ICloudServicesOperations operations, string resourceGroupName) + { + return operations.ListAsync(resourceGroupName).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of all cloud services under a resource group. Use nextLink + /// property in the response to get the next page of Cloud Services. Do this + /// till nextLink is null to fetch all the Cloud Services. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this ICloudServicesOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Starts the cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + public static void Start(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName) + { + operations.StartAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// Starts the cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The cancellation token. + /// + public static async Task StartAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.StartWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Power off the cloud service. Note that resources are still attached and you + /// are getting charged for the resources. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + public static void PowerOff(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName) + { + operations.PowerOffAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// Power off the cloud service. Note that resources are still attached and you + /// are getting charged for the resources. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The cancellation token. + /// + public static async Task PowerOffAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.PowerOffWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Restarts one or more role instances in a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + public static void Restart(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty) + { + operations.RestartAsync(resourceGroupName, cloudServiceName, roleInstancesProperty).GetAwaiter().GetResult(); + } + + /// + /// Restarts one or more role instances in a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + /// + /// The cancellation token. + /// + public static async Task RestartAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.RestartWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Reimage asynchronous operation reinstalls the operating system on instances + /// of web roles or worker roles. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + public static void Reimage(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty) + { + operations.ReimageAsync(resourceGroupName, cloudServiceName, roleInstancesProperty).GetAwaiter().GetResult(); + } + + /// + /// Reimage asynchronous operation reinstalls the operating system on instances + /// of web roles or worker roles. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + /// + /// The cancellation token. + /// + public static async Task ReimageAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.ReimageWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Rebuild Role Instances reinstalls the operating system on instances of web + /// roles or worker roles and initializes the storage resources that are used + /// by them. If you do not want to initialize storage resources, you can use + /// Reimage Role Instances. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + public static void Rebuild(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty) + { + operations.RebuildAsync(resourceGroupName, cloudServiceName, roleInstancesProperty).GetAwaiter().GetResult(); + } + + /// + /// Rebuild Role Instances reinstalls the operating system on instances of web + /// roles or worker roles and initializes the storage resources that are used + /// by them. If you do not want to initialize storage resources, you can use + /// Reimage Role Instances. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + /// + /// The cancellation token. + /// + public static async Task RebuildAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.RebuildWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Deletes role instances in a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + public static void DeleteInstances(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty) + { + operations.DeleteInstancesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty).GetAwaiter().GetResult(); + } + + /// + /// Deletes role instances in a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteInstancesAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteInstancesWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Create or update a cloud service. Please note some properties can be set + /// only during cloud service creation. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The cloud service object. + /// + public static CloudService BeginCreateOrUpdate(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CloudService parameters = default(CloudService)) + { + return operations.BeginCreateOrUpdateAsync(resourceGroupName, cloudServiceName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Create or update a cloud service. Please note some properties can be set + /// only during cloud service creation. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The cloud service object. + /// + /// + /// The cancellation token. + /// + public static async Task BeginCreateOrUpdateAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CloudService parameters = default(CloudService), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, cloudServiceName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Update a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Resource tags + /// + public static CloudService BeginUpdate(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IDictionary tags = default(IDictionary)) + { + return operations.BeginUpdateAsync(resourceGroupName, cloudServiceName, tags).GetAwaiter().GetResult(); + } + + /// + /// Update a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Resource tags + /// + /// + /// The cancellation token. + /// + public static async Task BeginUpdateAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IDictionary tags = default(IDictionary), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginUpdateWithHttpMessagesAsync(resourceGroupName, cloudServiceName, tags, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + public static void BeginDelete(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName) + { + operations.BeginDeleteAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// Deletes a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The cancellation token. + /// + public static async Task BeginDeleteAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Starts the cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + public static void BeginStart(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName) + { + operations.BeginStartAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// Starts the cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The cancellation token. + /// + public static async Task BeginStartAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginStartWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Power off the cloud service. Note that resources are still attached and you + /// are getting charged for the resources. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + public static void BeginPowerOff(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName) + { + operations.BeginPowerOffAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// Power off the cloud service. Note that resources are still attached and you + /// are getting charged for the resources. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The cancellation token. + /// + public static async Task BeginPowerOffAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginPowerOffWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Restarts one or more role instances in a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + public static void BeginRestart(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty) + { + operations.BeginRestartAsync(resourceGroupName, cloudServiceName, roleInstancesProperty).GetAwaiter().GetResult(); + } + + /// + /// Restarts one or more role instances in a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + /// + /// The cancellation token. + /// + public static async Task BeginRestartAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginRestartWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Reimage asynchronous operation reinstalls the operating system on instances + /// of web roles or worker roles. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + public static void BeginReimage(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty) + { + operations.BeginReimageAsync(resourceGroupName, cloudServiceName, roleInstancesProperty).GetAwaiter().GetResult(); + } + + /// + /// Reimage asynchronous operation reinstalls the operating system on instances + /// of web roles or worker roles. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + /// + /// The cancellation token. + /// + public static async Task BeginReimageAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginReimageWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Rebuild Role Instances reinstalls the operating system on instances of web + /// roles or worker roles and initializes the storage resources that are used + /// by them. If you do not want to initialize storage resources, you can use + /// Reimage Role Instances. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + public static void BeginRebuild(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty) + { + operations.BeginRebuildAsync(resourceGroupName, cloudServiceName, roleInstancesProperty).GetAwaiter().GetResult(); + } + + /// + /// Rebuild Role Instances reinstalls the operating system on instances of web + /// roles or worker roles and initializes the storage resources that are used + /// by them. If you do not want to initialize storage resources, you can use + /// Reimage Role Instances. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + /// + /// The cancellation token. + /// + public static async Task BeginRebuildAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginRebuildWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Deletes role instances in a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + public static void BeginDeleteInstances(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty) + { + operations.BeginDeleteInstancesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty).GetAwaiter().GetResult(); + } + + /// + /// Deletes role instances in a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will signify all + /// role instances of the cloud service. + /// + /// + /// The cancellation token. + /// + public static async Task BeginDeleteInstancesAsync(this ICloudServicesOperations operations, string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginDeleteInstancesWithHttpMessagesAsync(resourceGroupName, cloudServiceName, roleInstancesProperty, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Gets a list of all cloud services in the subscription, regardless of the + /// associated resource group. Use nextLink property in the response to get the + /// next page of Cloud Services. Do this till nextLink is null to fetch all the + /// Cloud Services. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListAllNext(this ICloudServicesOperations operations, string nextPageLink) + { + return operations.ListAllNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of all cloud services in the subscription, regardless of the + /// associated resource group. Use nextLink property in the response to get the + /// next page of Cloud Services. Do this till nextLink is null to fetch all the + /// Cloud Services. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAllNextAsync(this ICloudServicesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListAllNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a list of all cloud services under a resource group. Use nextLink + /// property in the response to get the next page of Cloud Services. Do this + /// till nextLink is null to fetch all the Cloud Services. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListNext(this ICloudServicesOperations operations, string nextPageLink) + { + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of all cloud services under a resource group. Use nextLink + /// property in the response to get the next page of Cloud Services. Do this + /// till nextLink is null to fetch all the Cloud Services. + /// + /// + /// 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 ICloudServicesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesUpdateDomainOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesUpdateDomainOperations.cs new file mode 100644 index 0000000000000..69041d5967ceb --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesUpdateDomainOperations.cs @@ -0,0 +1,839 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + 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; + + /// + /// CloudServicesUpdateDomainOperations operations. + /// + internal partial class CloudServicesUpdateDomainOperations : IServiceOperations, ICloudServicesUpdateDomainOperations + { + /// + /// Initializes a new instance of the CloudServicesUpdateDomainOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal CloudServicesUpdateDomainOperations(ComputeManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the ComputeManagementClient + /// + public ComputeManagementClient Client { get; private set; } + + /// + /// Updates the role instances in the specified update domain. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Specifies an integer value that identifies the update domain. Update + /// domains are identified with a zero-based index: the first update domain has + /// an ID of 0, the second has an ID of 1, and so on. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task WalkUpdateDomainWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, int updateDomain, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginWalkUpdateDomainWithHttpMessagesAsync(resourceGroupName, cloudServiceName, updateDomain, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets the specified update domain of a cloud service. Use nextLink property + /// in the response to get the next page of update domains. Do this till + /// nextLink is null to fetch all the update domains. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Specifies an integer value that identifies the update domain. Update + /// domains are identified with a zero-based index: the first update domain has + /// an ID of 0, the second has an ID of 1, and so on. + /// + /// + /// 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> GetUpdateDomainWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, int updateDomain, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2021-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("updateDomain", updateDomain); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetUpdateDomain", 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.Compute/cloudServices/{cloudServiceName}/updateDomains/{updateDomain}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{updateDomain}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(updateDomain, Client.SerializationSettings).Trim('"'))); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a list of all update domains in a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// 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>> ListUpdateDomainsWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2021-03-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListUpdateDomains", 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.Compute/cloudServices/{cloudServiceName}/updateDomains").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(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; + } + + /// + /// Updates the role instances in the specified update domain. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Specifies an integer value that identifies the update domain. Update + /// domains are identified with a zero-based index: the first update domain has + /// an ID of 0, the second has an ID of 1, and so on. + /// + /// + /// 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 BeginWalkUpdateDomainWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, int updateDomain, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (cloudServiceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "cloudServiceName"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2021-03-01"; + UpdateDomain parameters = default(UpdateDomain); + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("cloudServiceName", cloudServiceName); + tracingParameters.Add("updateDomain", updateDomain); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginWalkUpdateDomain", 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.Compute/cloudServices/{cloudServiceName}/updateDomains/{updateDomain}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{cloudServiceName}", System.Uri.EscapeDataString(cloudServiceName)); + _url = _url.Replace("{updateDomain}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(updateDomain, Client.SerializationSettings).Trim('"'))); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(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(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets a list of all update domains in a cloud service. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListUpdateDomainsNextWithHttpMessagesAsync(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, "ListUpdateDomainsNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesUpdateDomainOperationsExtensions.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesUpdateDomainOperationsExtensions.cs new file mode 100644 index 0000000000000..9e3226415fe15 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/CloudServicesUpdateDomainOperationsExtensions.cs @@ -0,0 +1,247 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for CloudServicesUpdateDomainOperations. + /// + public static partial class CloudServicesUpdateDomainOperationsExtensions + { + /// + /// Updates the role instances in the specified update domain. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Specifies an integer value that identifies the update domain. Update + /// domains are identified with a zero-based index: the first update domain has + /// an ID of 0, the second has an ID of 1, and so on. + /// + public static void WalkUpdateDomain(this ICloudServicesUpdateDomainOperations operations, string resourceGroupName, string cloudServiceName, int updateDomain) + { + operations.WalkUpdateDomainAsync(resourceGroupName, cloudServiceName, updateDomain).GetAwaiter().GetResult(); + } + + /// + /// Updates the role instances in the specified update domain. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Specifies an integer value that identifies the update domain. Update + /// domains are identified with a zero-based index: the first update domain has + /// an ID of 0, the second has an ID of 1, and so on. + /// + /// + /// The cancellation token. + /// + public static async Task WalkUpdateDomainAsync(this ICloudServicesUpdateDomainOperations operations, string resourceGroupName, string cloudServiceName, int updateDomain, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.WalkUpdateDomainWithHttpMessagesAsync(resourceGroupName, cloudServiceName, updateDomain, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Gets the specified update domain of a cloud service. Use nextLink property + /// in the response to get the next page of update domains. Do this till + /// nextLink is null to fetch all the update domains. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Specifies an integer value that identifies the update domain. Update + /// domains are identified with a zero-based index: the first update domain has + /// an ID of 0, the second has an ID of 1, and so on. + /// + public static UpdateDomain GetUpdateDomain(this ICloudServicesUpdateDomainOperations operations, string resourceGroupName, string cloudServiceName, int updateDomain) + { + return operations.GetUpdateDomainAsync(resourceGroupName, cloudServiceName, updateDomain).GetAwaiter().GetResult(); + } + + /// + /// Gets the specified update domain of a cloud service. Use nextLink property + /// in the response to get the next page of update domains. Do this till + /// nextLink is null to fetch all the update domains. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Specifies an integer value that identifies the update domain. Update + /// domains are identified with a zero-based index: the first update domain has + /// an ID of 0, the second has an ID of 1, and so on. + /// + /// + /// The cancellation token. + /// + public static async Task GetUpdateDomainAsync(this ICloudServicesUpdateDomainOperations operations, string resourceGroupName, string cloudServiceName, int updateDomain, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetUpdateDomainWithHttpMessagesAsync(resourceGroupName, cloudServiceName, updateDomain, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets a list of all update domains in a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + public static IPage ListUpdateDomains(this ICloudServicesUpdateDomainOperations operations, string resourceGroupName, string cloudServiceName) + { + return operations.ListUpdateDomainsAsync(resourceGroupName, cloudServiceName).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of all update domains in a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The cancellation token. + /// + public static async Task> ListUpdateDomainsAsync(this ICloudServicesUpdateDomainOperations operations, string resourceGroupName, string cloudServiceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListUpdateDomainsWithHttpMessagesAsync(resourceGroupName, cloudServiceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Updates the role instances in the specified update domain. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Specifies an integer value that identifies the update domain. Update + /// domains are identified with a zero-based index: the first update domain has + /// an ID of 0, the second has an ID of 1, and so on. + /// + public static void BeginWalkUpdateDomain(this ICloudServicesUpdateDomainOperations operations, string resourceGroupName, string cloudServiceName, int updateDomain) + { + operations.BeginWalkUpdateDomainAsync(resourceGroupName, cloudServiceName, updateDomain).GetAwaiter().GetResult(); + } + + /// + /// Updates the role instances in the specified update domain. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Specifies an integer value that identifies the update domain. Update + /// domains are identified with a zero-based index: the first update domain has + /// an ID of 0, the second has an ID of 1, and so on. + /// + /// + /// The cancellation token. + /// + public static async Task BeginWalkUpdateDomainAsync(this ICloudServicesUpdateDomainOperations operations, string resourceGroupName, string cloudServiceName, int updateDomain, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginWalkUpdateDomainWithHttpMessagesAsync(resourceGroupName, cloudServiceName, updateDomain, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Gets a list of all update domains in a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListUpdateDomainsNext(this ICloudServicesUpdateDomainOperations operations, string nextPageLink) + { + return operations.ListUpdateDomainsNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of all update domains in a cloud service. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListUpdateDomainsNextAsync(this ICloudServicesUpdateDomainOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListUpdateDomainsNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ComputeManagementClient.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ComputeManagementClient.cs index 4a35666ade964..572e439590d27 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ComputeManagementClient.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ComputeManagementClient.cs @@ -236,6 +236,31 @@ public partial class ComputeManagementClient : ServiceClient public virtual IGalleryApplicationVersionsOperations GalleryApplicationVersions { get; private set; } + /// + /// Gets the ICloudServiceRoleInstancesOperations. + /// + public virtual ICloudServiceRoleInstancesOperations CloudServiceRoleInstances { get; private set; } + + /// + /// Gets the ICloudServiceRolesOperations. + /// + public virtual ICloudServiceRolesOperations CloudServiceRoles { get; private set; } + + /// + /// Gets the ICloudServicesOperations. + /// + public virtual ICloudServicesOperations CloudServices { get; private set; } + + /// + /// Gets the ICloudServicesUpdateDomainOperations. + /// + public virtual ICloudServicesUpdateDomainOperations CloudServicesUpdateDomain { get; private set; } + + /// + /// Gets the ICloudServiceOperatingSystemsOperations. + /// + public virtual ICloudServiceOperatingSystemsOperations CloudServiceOperatingSystems { get; private set; } + /// /// Initializes a new instance of the ComputeManagementClient class. /// @@ -510,6 +535,11 @@ private void Initialize() GalleryImageVersions = new GalleryImageVersionsOperations(this); GalleryApplications = new GalleryApplicationsOperations(this); GalleryApplicationVersions = new GalleryApplicationVersionsOperations(this); + CloudServiceRoleInstances = new CloudServiceRoleInstancesOperations(this); + CloudServiceRoles = new CloudServiceRolesOperations(this); + CloudServices = new CloudServicesOperations(this); + CloudServicesUpdateDomain = new CloudServicesUpdateDomainOperations(this); + CloudServiceOperatingSystems = new CloudServiceOperatingSystemsOperations(this); BaseUri = new System.Uri("https://management.azure.com"); AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServiceOperatingSystemsOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServiceOperatingSystemsOperations.cs new file mode 100644 index 0000000000000..26e60af5d8442 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServiceOperatingSystemsOperations.cs @@ -0,0 +1,185 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// CloudServiceOperatingSystemsOperations operations. + /// + public partial interface ICloudServiceOperatingSystemsOperations + { + /// + /// Gets properties of a guest operating system version that can be + /// specified in the XML service configuration (.cscfg) for a cloud + /// service. + /// + /// + /// Name of the location that the OS version pertains to. + /// + /// + /// Name of the OS version. + /// + /// + /// 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> GetOSVersionWithHttpMessagesAsync(string location, string osVersionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of all guest operating system versions available to be + /// specified in the XML service configuration (.cscfg) for a cloud + /// service. Use nextLink property in the response to get the next page + /// of OS versions. Do this till nextLink is null to fetch all the OS + /// versions. + /// + /// + /// Name of the location that the OS versions pertain to. + /// + /// + /// 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>> ListOSVersionsWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets properties of a guest operating system family that can be + /// specified in the XML service configuration (.cscfg) for a cloud + /// service. + /// + /// + /// Name of the location that the OS family pertains to. + /// + /// + /// Name of the OS family. + /// + /// + /// 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> GetOSFamilyWithHttpMessagesAsync(string location, string osFamilyName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of all guest operating system families available to be + /// specified in the XML service configuration (.cscfg) for a cloud + /// service. Use nextLink property in the response to get the next page + /// of OS Families. Do this till nextLink is null to fetch all the OS + /// Families. + /// + /// + /// Name of the location that the OS families pertain to. + /// + /// + /// 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>> ListOSFamiliesWithHttpMessagesAsync(string location, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of all guest operating system versions available to be + /// specified in the XML service configuration (.cscfg) for a cloud + /// service. Use nextLink property in the response to get the next page + /// of OS versions. Do this till nextLink is null to fetch all the OS + /// versions. + /// + /// + /// 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>> ListOSVersionsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of all guest operating system families available to be + /// specified in the XML service configuration (.cscfg) for a cloud + /// service. Use nextLink property in the response to get the next page + /// of OS Families. Do this till nextLink is null to fetch all the OS + /// Families. + /// + /// + /// 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>> ListOSFamiliesNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServiceRoleInstancesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServiceRoleInstancesOperations.cs new file mode 100644 index 0000000000000..5d97a04e5b07a --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServiceRoleInstancesOperations.cs @@ -0,0 +1,362 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.IO; + using System.Threading; + using System.Threading.Tasks; + + /// + /// CloudServiceRoleInstancesOperations operations. + /// + public partial interface ICloudServiceRoleInstancesOperations + { + /// + /// Deletes a role instance from a cloud service. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// 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 roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a role instance from a cloud service. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// The expand expression to apply to the operation. Possible values + /// include: 'instanceView' + /// + /// + /// 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 roleInstanceName, string resourceGroupName, string cloudServiceName, InstanceViewTypes? expand = default(InstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Retrieves information about the run-time state of a role instance + /// in a cloud service. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// 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> GetInstanceViewWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the list of all role instances in a cloud service. Use + /// nextLink property in the response to get the next page of role + /// instances. Do this till nextLink is null to fetch all the role + /// instances. + /// + /// + /// + /// + /// + /// + /// The expand expression to apply to the operation. Possible values + /// include: 'instanceView' + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, InstanceViewTypes? expand = default(InstanceViewTypes?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// The Reboot Role Instance asynchronous operation requests a reboot + /// of a role instance in the cloud service. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// 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 RestartWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// The Reimage Role Instance asynchronous operation reinstalls the + /// operating system on instances of web roles or worker roles. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// 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 ReimageWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// The Rebuild Role Instance asynchronous operation reinstalls the + /// operating system on instances of web roles or worker roles and + /// initializes the storage resources that are used by them. If you do + /// not want to initialize storage resources, you can use Reimage Role + /// Instance. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// 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 RebuildWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a remote desktop file for a role instance in a cloud service. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// 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> GetRemoteDesktopFileWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes a role instance from a cloud service. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// 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 BeginDeleteWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// The Reboot Role Instance asynchronous operation requests a reboot + /// of a role instance in the cloud service. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// 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 BeginRestartWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// The Reimage Role Instance asynchronous operation reinstalls the + /// operating system on instances of web roles or worker roles. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// 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 BeginReimageWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// The Rebuild Role Instance asynchronous operation reinstalls the + /// operating system on instances of web roles or worker roles and + /// initializes the storage resources that are used by them. If you do + /// not want to initialize storage resources, you can use Reimage Role + /// Instance. + /// + /// + /// Name of the role instance. + /// + /// + /// + /// + /// + /// + /// 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 BeginRebuildWithHttpMessagesAsync(string roleInstanceName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the list of all role instances in a cloud service. Use + /// nextLink property in the response to get the next page of role + /// instances. Do this till nextLink is null to fetch all the role + /// instances. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServiceRolesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServiceRolesOperations.cs new file mode 100644 index 0000000000000..16e8d96e5c5ff --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServiceRolesOperations.cs @@ -0,0 +1,102 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// CloudServiceRolesOperations operations. + /// + public partial interface ICloudServiceRolesOperations + { + /// + /// Gets a role from a cloud service. + /// + /// + /// Name of the role. + /// + /// + /// + /// + /// + /// + /// 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 roleName, string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of all roles in a cloud service. Use nextLink property + /// in the response to get the next page of roles. Do this till + /// nextLink is null to fetch all the roles. + /// + /// + /// + /// + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of all roles in a cloud service. Use nextLink property + /// in the response to get the next page of roles. Do this till + /// nextLink is null to fetch all the roles. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServicesOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServicesOperations.cs new file mode 100644 index 0000000000000..837bdd793337c --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServicesOperations.cs @@ -0,0 +1,638 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// CloudServicesOperations operations. + /// + public partial interface ICloudServicesOperations + { + /// + /// Create or update a cloud service. Please note some properties can + /// be set only during cloud service creation. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The cloud service object. + /// + /// + /// 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> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, CloudService parameters = default(CloudService), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Update a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Resource tags + /// + /// + /// 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 cloudServiceName, IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// 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 cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Display information about a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// 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 cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the status of a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// 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> GetInstanceViewWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of all cloud services in the subscription, regardless + /// of the associated resource group. Use nextLink property in the + /// response to get the next page of Cloud Services. Do this till + /// nextLink is null to fetch all the Cloud Services. + /// + /// + /// 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>> ListAllWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of all cloud services under a resource group. Use + /// nextLink property in the response to get the next page of Cloud + /// Services. Do this till nextLink is null to fetch all the Cloud + /// Services. + /// + /// + /// Name of the resource group. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Starts the cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// 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 StartWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Power off the cloud service. Note that resources are still attached + /// and you are getting charged for the resources. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// 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 PowerOffWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Restarts one or more role instances in a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will + /// signify all role instances of the cloud service. + /// + /// + /// 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 RestartWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Reimage asynchronous operation reinstalls the operating system on + /// instances of web roles or worker roles. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will + /// signify all role instances of the cloud service. + /// + /// + /// 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 ReimageWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Rebuild Role Instances reinstalls the operating system on instances + /// of web roles or worker roles and initializes the storage resources + /// that are used by them. If you do not want to initialize storage + /// resources, you can use Reimage Role Instances. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will + /// signify all role instances of the cloud service. + /// + /// + /// 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 RebuildWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes role instances in a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will + /// signify all role instances of the cloud service. + /// + /// + /// 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 DeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Create or update a cloud service. Please note some properties can + /// be set only during cloud service creation. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// The cloud service object. + /// + /// + /// 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> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, CloudService parameters = default(CloudService), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Update a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Resource tags + /// + /// + /// 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 cloudServiceName, IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// 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 BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Starts the cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// 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 BeginStartWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Power off the cloud service. Note that resources are still attached + /// and you are getting charged for the resources. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// 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 BeginPowerOffWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Restarts one or more role instances in a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will + /// signify all role instances of the cloud service. + /// + /// + /// 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 BeginRestartWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Reimage asynchronous operation reinstalls the operating system on + /// instances of web roles or worker roles. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will + /// signify all role instances of the cloud service. + /// + /// + /// 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 BeginReimageWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Rebuild Role Instances reinstalls the operating system on instances + /// of web roles or worker roles and initializes the storage resources + /// that are used by them. If you do not want to initialize storage + /// resources, you can use Reimage Role Instances. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will + /// signify all role instances of the cloud service. + /// + /// + /// 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 BeginRebuildWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes role instances in a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// List of cloud service role instance names. Value of '*' will + /// signify all role instances of the cloud service. + /// + /// + /// 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 BeginDeleteInstancesWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, IList roleInstancesProperty, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of all cloud services in the subscription, regardless + /// of the associated resource group. Use nextLink property in the + /// response to get the next page of Cloud Services. Do this till + /// nextLink is null to fetch all the Cloud Services. + /// + /// + /// 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>> ListAllNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of all cloud services under a resource group. Use + /// nextLink property in the response to get the next page of Cloud + /// Services. Do this till nextLink is null to fetch all the Cloud + /// Services. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServicesUpdateDomainOperations.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServicesUpdateDomainOperations.cs new file mode 100644 index 0000000000000..cdac93b47a192 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/ICloudServicesUpdateDomainOperations.cs @@ -0,0 +1,160 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// CloudServicesUpdateDomainOperations operations. + /// + public partial interface ICloudServicesUpdateDomainOperations + { + /// + /// Updates the role instances in the specified update domain. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Specifies an integer value that identifies the update domain. + /// Update domains are identified with a zero-based index: the first + /// update domain has an ID of 0, the second has an ID of 1, and so on. + /// + /// + /// 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 WalkUpdateDomainWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, int updateDomain, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the specified update domain of a cloud service. Use nextLink + /// property in the response to get the next page of update domains. Do + /// this till nextLink is null to fetch all the update domains. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Specifies an integer value that identifies the update domain. + /// Update domains are identified with a zero-based index: the first + /// update domain has an ID of 0, the second has an ID of 1, and so on. + /// + /// + /// 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> GetUpdateDomainWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, int updateDomain, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of all update domains in a cloud service. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// 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>> ListUpdateDomainsWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the role instances in the specified update domain. + /// + /// + /// Name of the resource group. + /// + /// + /// Name of the cloud service. + /// + /// + /// Specifies an integer value that identifies the update domain. + /// Update domains are identified with a zero-based index: the first + /// update domain has an ID of 0, the second has an ID of 1, and so on. + /// + /// + /// 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 BeginWalkUpdateDomainWithHttpMessagesAsync(string resourceGroupName, string cloudServiceName, int updateDomain, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets a list of all update domains in a cloud service. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListUpdateDomainsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IComputeManagementClient.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IComputeManagementClient.cs index f1e0099fd5360..06794fb3d0b50 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IComputeManagementClient.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/IComputeManagementClient.cs @@ -231,5 +231,30 @@ public partial interface IComputeManagementClient : System.IDisposable /// IGalleryApplicationVersionsOperations GalleryApplicationVersions { get; } + /// + /// Gets the ICloudServiceRoleInstancesOperations. + /// + ICloudServiceRoleInstancesOperations CloudServiceRoleInstances { get; } + + /// + /// Gets the ICloudServiceRolesOperations. + /// + ICloudServiceRolesOperations CloudServiceRoles { get; } + + /// + /// Gets the ICloudServicesOperations. + /// + ICloudServicesOperations CloudServices { get; } + + /// + /// Gets the ICloudServicesUpdateDomainOperations. + /// + ICloudServicesUpdateDomainOperations CloudServicesUpdateDomain { get; } + + /// + /// Gets the ICloudServiceOperatingSystemsOperations. + /// + ICloudServiceOperatingSystemsOperations CloudServiceOperatingSystems { get; } + } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudService.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudService.cs new file mode 100644 index 0000000000000..2332c9c2f9f2a --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudService.cs @@ -0,0 +1,106 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Describes the cloud service. + /// + public partial class CloudService : IResource + { + /// + /// Initializes a new instance of the CloudService class. + /// + public CloudService() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CloudService class. + /// + /// Resource location. + /// Resource Id. + /// Resource name. + /// Resource type. + /// Resource tags. + public CloudService(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), CloudServiceProperties properties = default(CloudServiceProperties)) + { + Id = id; + Name = name; + Type = type; + Location = location; + Tags = tags; + Properties = properties; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets resource Id. + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; private set; } + + /// + /// Gets resource name. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets resource type. + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } + + /// + /// Gets or sets resource location. + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; set; } + + /// + /// Gets or sets resource tags. + /// + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties")] + public CloudServiceProperties Properties { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Location == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Location"); + } + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceExtensionProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceExtensionProfile.cs new file mode 100644 index 0000000000000..4458559f7cbcc --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceExtensionProfile.cs @@ -0,0 +1,56 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Describes a cloud service extension profile. + /// + public partial class CloudServiceExtensionProfile + { + /// + /// Initializes a new instance of the CloudServiceExtensionProfile + /// class. + /// + public CloudServiceExtensionProfile() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CloudServiceExtensionProfile + /// class. + /// + /// List of extensions for the cloud + /// service. + public CloudServiceExtensionProfile(IList extensions = default(IList)) + { + Extensions = extensions; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets list of extensions for the cloud service. + /// + [JsonProperty(PropertyName = "extensions")] + public IList Extensions { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceExtensionProperties.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceExtensionProperties.cs new file mode 100644 index 0000000000000..5fbf4d36b05dc --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceExtensionProperties.cs @@ -0,0 +1,179 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Extension Properties. + /// + public partial class CloudServiceExtensionProperties + { + /// + /// Initializes a new instance of the CloudServiceExtensionProperties + /// class. + /// + public CloudServiceExtensionProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CloudServiceExtensionProperties + /// class. + /// + /// The name of the extension handler + /// publisher. + /// Specifies the type of the extension. + /// Specifies the version of the + /// extension. Specifies the version of the extension. If this element + /// is not specified or an asterisk (*) is used as the value, the + /// latest version of the extension is used. If the value is specified + /// with a major version number and an asterisk as the minor version + /// number (X.), the latest minor version of the specified major + /// version is selected. If a major version number and a minor version + /// number are specified (X.Y), the specific extension version is + /// selected. If a version is specified, an auto-upgrade is performed + /// on the role instance. + /// Explicitly specify whether + /// platform can automatically upgrade typeHandlerVersion to higher + /// minor versions when they become available. + /// Public settings for the extension. For JSON + /// extensions, this is the JSON settings for the extension. For XML + /// Extension (like RDP), this is the XML setting for the + /// extension. + /// Protected settings for the + /// extension which are encrypted before sent to the role + /// instance. + /// Tag to force apply the provided public + /// and protected settings. + /// Changing the tag value allows for re-running the extension without + /// changing any of the public or protected settings. + /// If forceUpdateTag is not changed, updates to public or protected + /// settings would still be applied by the handler. + /// If neither forceUpdateTag nor any of public or protected settings + /// change, extension would flow to the role instance with the same + /// sequence-number, and + /// it is up to handler implementation whether to re-run it or + /// not + /// The provisioning state, which only + /// appears in the response. + /// Optional list of roles to apply this + /// extension. If property is not specified or '*' is specified, + /// extension is applied to all roles in the cloud service. + public CloudServiceExtensionProperties(string publisher = default(string), string type = default(string), string typeHandlerVersion = default(string), bool? autoUpgradeMinorVersion = default(bool?), string settings = default(string), string protectedSettings = default(string), CloudServiceVaultAndSecretReference protectedSettingsFromKeyVault = default(CloudServiceVaultAndSecretReference), string forceUpdateTag = default(string), string provisioningState = default(string), IList rolesAppliedTo = default(IList)) + { + Publisher = publisher; + Type = type; + TypeHandlerVersion = typeHandlerVersion; + AutoUpgradeMinorVersion = autoUpgradeMinorVersion; + Settings = settings; + ProtectedSettings = protectedSettings; + ProtectedSettingsFromKeyVault = protectedSettingsFromKeyVault; + ForceUpdateTag = forceUpdateTag; + ProvisioningState = provisioningState; + RolesAppliedTo = rolesAppliedTo; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the name of the extension handler publisher. + /// + [JsonProperty(PropertyName = "publisher")] + public string Publisher { get; set; } + + /// + /// Gets or sets specifies the type of the extension. + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; set; } + + /// + /// Gets or sets specifies the version of the extension. Specifies the + /// version of the extension. If this element is not specified or an + /// asterisk (*) is used as the value, the latest version of the + /// extension is used. If the value is specified with a major version + /// number and an asterisk as the minor version number (X.), the latest + /// minor version of the specified major version is selected. If a + /// major version number and a minor version number are specified + /// (X.Y), the specific extension version is selected. If a version is + /// specified, an auto-upgrade is performed on the role instance. + /// + [JsonProperty(PropertyName = "typeHandlerVersion")] + public string TypeHandlerVersion { get; set; } + + /// + /// Gets or sets explicitly specify whether platform can automatically + /// upgrade typeHandlerVersion to higher minor versions when they + /// become available. + /// + [JsonProperty(PropertyName = "autoUpgradeMinorVersion")] + public bool? AutoUpgradeMinorVersion { get; set; } + + /// + /// Gets or sets public settings for the extension. For JSON + /// extensions, this is the JSON settings for the extension. For XML + /// Extension (like RDP), this is the XML setting for the extension. + /// + [JsonProperty(PropertyName = "settings")] + public string Settings { get; set; } + + /// + /// Gets or sets protected settings for the extension which are + /// encrypted before sent to the role instance. + /// + [JsonProperty(PropertyName = "protectedSettings")] + public string ProtectedSettings { get; set; } + + /// + /// + [JsonProperty(PropertyName = "protectedSettingsFromKeyVault")] + public CloudServiceVaultAndSecretReference ProtectedSettingsFromKeyVault { get; set; } + + /// + /// Gets or sets tag to force apply the provided public and protected + /// settings. + /// Changing the tag value allows for re-running the extension without + /// changing any of the public or protected settings. + /// If forceUpdateTag is not changed, updates to public or protected + /// settings would still be applied by the handler. + /// If neither forceUpdateTag nor any of public or protected settings + /// change, extension would flow to the role instance with the same + /// sequence-number, and + /// it is up to handler implementation whether to re-run it or not + /// + [JsonProperty(PropertyName = "forceUpdateTag")] + public string ForceUpdateTag { get; set; } + + /// + /// Gets the provisioning state, which only appears in the response. + /// + [JsonProperty(PropertyName = "provisioningState")] + public string ProvisioningState { get; private set; } + + /// + /// Gets or sets optional list of roles to apply this extension. If + /// property is not specified or '*' is specified, extension is applied + /// to all roles in the cloud service. + /// + [JsonProperty(PropertyName = "rolesAppliedTo")] + public IList RolesAppliedTo { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceInstanceView.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceInstanceView.cs new file mode 100644 index 0000000000000..8aec884b94efd --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceInstanceView.cs @@ -0,0 +1,82 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// InstanceView of CloudService as a whole + /// + public partial class CloudServiceInstanceView + { + /// + /// Initializes a new instance of the CloudServiceInstanceView class. + /// + public CloudServiceInstanceView() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CloudServiceInstanceView class. + /// + /// The version of the SDK that was used to + /// generate the package for the cloud service. + /// Specifies a list of unique identifiers + /// generated internally for the cloud service. <br /><br + /// /> NOTE: If you are using Azure Diagnostics extension, this + /// property can be used as 'DeploymentId' for querying + /// details. + public CloudServiceInstanceView(InstanceViewStatusesSummary roleInstance = default(InstanceViewStatusesSummary), string sdkVersion = default(string), IList privateIds = default(IList), IList statuses = default(IList)) + { + RoleInstance = roleInstance; + SdkVersion = sdkVersion; + PrivateIds = privateIds; + Statuses = statuses; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// + [JsonProperty(PropertyName = "roleInstance")] + public InstanceViewStatusesSummary RoleInstance { get; set; } + + /// + /// Gets the version of the SDK that was used to generate the package + /// for the cloud service. + /// + [JsonProperty(PropertyName = "sdkVersion")] + public string SdkVersion { get; private set; } + + /// + /// Gets specifies a list of unique identifiers generated internally + /// for the cloud service. &lt;br /&gt;&lt;br /&gt; + /// NOTE: If you are using Azure Diagnostics extension, this property + /// can be used as 'DeploymentId' for querying details. + /// + [JsonProperty(PropertyName = "privateIds")] + public IList PrivateIds { get; private set; } + + /// + /// + [JsonProperty(PropertyName = "statuses")] + public IList Statuses { get; private set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceNetworkProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceNetworkProfile.cs new file mode 100644 index 0000000000000..5ae95df0d6002 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceNetworkProfile.cs @@ -0,0 +1,74 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Network Profile for the cloud service. + /// + public partial class CloudServiceNetworkProfile + { + /// + /// Initializes a new instance of the CloudServiceNetworkProfile class. + /// + public CloudServiceNetworkProfile() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CloudServiceNetworkProfile class. + /// + /// List of Load balancer + /// configurations. Cloud service can have up to two load balancer + /// configurations, corresponding to a Public Load Balancer and an + /// Internal Load Balancer. + /// The id reference of the cloud + /// service containing the target IP with which the subject cloud + /// service can perform a swap. This property cannot be updated once it + /// is set. The swappable cloud service referred by this id must be + /// present otherwise an error will be thrown. + public CloudServiceNetworkProfile(IList loadBalancerConfigurations = default(IList), SubResource swappableCloudService = default(SubResource)) + { + LoadBalancerConfigurations = loadBalancerConfigurations; + SwappableCloudService = swappableCloudService; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets list of Load balancer configurations. Cloud service + /// can have up to two load balancer configurations, corresponding to a + /// Public Load Balancer and an Internal Load Balancer. + /// + [JsonProperty(PropertyName = "loadBalancerConfigurations")] + public IList LoadBalancerConfigurations { get; set; } + + /// + /// Gets or sets the id reference of the cloud service containing the + /// target IP with which the subject cloud service can perform a swap. + /// This property cannot be updated once it is set. The swappable cloud + /// service referred by this id must be present otherwise an error will + /// be thrown. + /// + [JsonProperty(PropertyName = "swappableCloudService")] + public SubResource SwappableCloudService { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceOsProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceOsProfile.cs new file mode 100644 index 0000000000000..012e60e27a47b --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceOsProfile.cs @@ -0,0 +1,55 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Describes the OS profile for the cloud service. + /// + public partial class CloudServiceOsProfile + { + /// + /// Initializes a new instance of the CloudServiceOsProfile class. + /// + public CloudServiceOsProfile() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CloudServiceOsProfile class. + /// + /// Specifies set of certificates that should be + /// installed onto the role instances. + public CloudServiceOsProfile(IList secrets = default(IList)) + { + Secrets = secrets; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets specifies set of certificates that should be installed + /// onto the role instances. + /// + [JsonProperty(PropertyName = "secrets")] + public IList Secrets { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceProperties.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceProperties.cs new file mode 100644 index 0000000000000..487ee426d013b --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceProperties.cs @@ -0,0 +1,173 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Cloud service properties + /// + public partial class CloudServiceProperties + { + /// + /// Initializes a new instance of the CloudServiceProperties class. + /// + public CloudServiceProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CloudServiceProperties class. + /// + /// Specifies a URL that refers to the + /// location of the service package in the Blob service. The service + /// package URL can be Shared Access Signature (SAS) URI from any + /// storage account. + /// This is a write-only property and is not returned in GET + /// calls. + /// Specifies the XML service configuration + /// (.cscfg) for the cloud service. + /// Specifies a URL that refers to the + /// location of the service configuration in the Blob service. The + /// service package URL can be Shared Access Signature (SAS) URI from + /// any storage account. + /// This is a write-only property and is not returned in GET + /// calls. + /// (Optional) Indicates whether to + /// start the cloud service immediately after it is created. The + /// default value is `true`. + /// If false, the service model is still deployed, but the code is not + /// run immediately. Instead, the service is PoweredOff until you call + /// Start, at which time the service will be started. A deployed + /// service still incurs charges, even if it is poweredoff. + /// (Optional) Indicates whether the + /// role sku properties (roleProfile.roles.sku) specified in the + /// model/template should override the role instance count and vm size + /// specified in the .cscfg and .csdef respectively. + /// The default value is `false`. + /// Possible values include: 'Auto', + /// 'Manual', 'Simultaneous' + /// The provisioning state, which only + /// appears in the response. + /// The unique identifier for the cloud + /// service. + public CloudServiceProperties(string packageUrl = default(string), string configuration = default(string), string configurationUrl = default(string), bool? startCloudService = default(bool?), bool? allowModelOverride = default(bool?), string upgradeMode = default(string), CloudServiceRoleProfile roleProfile = default(CloudServiceRoleProfile), CloudServiceOsProfile osProfile = default(CloudServiceOsProfile), CloudServiceNetworkProfile networkProfile = default(CloudServiceNetworkProfile), CloudServiceExtensionProfile extensionProfile = default(CloudServiceExtensionProfile), string provisioningState = default(string), string uniqueId = default(string)) + { + PackageUrl = packageUrl; + Configuration = configuration; + ConfigurationUrl = configurationUrl; + StartCloudService = startCloudService; + AllowModelOverride = allowModelOverride; + UpgradeMode = upgradeMode; + RoleProfile = roleProfile; + OsProfile = osProfile; + NetworkProfile = networkProfile; + ExtensionProfile = extensionProfile; + ProvisioningState = provisioningState; + UniqueId = uniqueId; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets specifies a URL that refers to the location of the + /// service package in the Blob service. The service package URL can be + /// Shared Access Signature (SAS) URI from any storage account. + /// This is a write-only property and is not returned in GET calls. + /// + [JsonProperty(PropertyName = "packageUrl")] + public string PackageUrl { get; set; } + + /// + /// Gets or sets specifies the XML service configuration (.cscfg) for + /// the cloud service. + /// + [JsonProperty(PropertyName = "configuration")] + public string Configuration { get; set; } + + /// + /// Gets or sets specifies a URL that refers to the location of the + /// service configuration in the Blob service. The service package URL + /// can be Shared Access Signature (SAS) URI from any storage account. + /// This is a write-only property and is not returned in GET calls. + /// + [JsonProperty(PropertyName = "configurationUrl")] + public string ConfigurationUrl { get; set; } + + /// + /// Gets or sets (Optional) Indicates whether to start the cloud + /// service immediately after it is created. The default value is + /// `true`. + /// If false, the service model is still deployed, but the code is not + /// run immediately. Instead, the service is PoweredOff until you call + /// Start, at which time the service will be started. A deployed + /// service still incurs charges, even if it is poweredoff. + /// + [JsonProperty(PropertyName = "startCloudService")] + public bool? StartCloudService { get; set; } + + /// + /// Gets or sets (Optional) Indicates whether the role sku properties + /// (roleProfile.roles.sku) specified in the model/template should + /// override the role instance count and vm size specified in the + /// .cscfg and .csdef respectively. + /// The default value is `false`. + /// + [JsonProperty(PropertyName = "allowModelOverride")] + public bool? AllowModelOverride { get; set; } + + /// + /// Gets or sets possible values include: 'Auto', 'Manual', + /// 'Simultaneous' + /// + [JsonProperty(PropertyName = "upgradeMode")] + public string UpgradeMode { get; set; } + + /// + /// + [JsonProperty(PropertyName = "roleProfile")] + public CloudServiceRoleProfile RoleProfile { get; set; } + + /// + /// + [JsonProperty(PropertyName = "osProfile")] + public CloudServiceOsProfile OsProfile { get; set; } + + /// + /// + [JsonProperty(PropertyName = "networkProfile")] + public CloudServiceNetworkProfile NetworkProfile { get; set; } + + /// + /// + [JsonProperty(PropertyName = "extensionProfile")] + public CloudServiceExtensionProfile ExtensionProfile { get; set; } + + /// + /// Gets the provisioning state, which only appears in the response. + /// + [JsonProperty(PropertyName = "provisioningState")] + public string ProvisioningState { get; private set; } + + /// + /// Gets the unique identifier for the cloud service. + /// + [JsonProperty(PropertyName = "uniqueId")] + public string UniqueId { get; private set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRole.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRole.cs new file mode 100644 index 0000000000000..ed30d6cb8090f --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRole.cs @@ -0,0 +1,87 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Describes a role of the cloud service. + /// + public partial class CloudServiceRole + { + /// + /// Initializes a new instance of the CloudServiceRole class. + /// + public CloudServiceRole() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CloudServiceRole class. + /// + /// Resource id + /// Resource name + /// Resource type + /// Resource location + public CloudServiceRole(string id = default(string), string name = default(string), string type = default(string), string location = default(string), CloudServiceRoleSku sku = default(CloudServiceRoleSku), CloudServiceRoleProperties properties = default(CloudServiceRoleProperties)) + { + Id = id; + Name = name; + Type = type; + Location = location; + Sku = sku; + Properties = properties; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets resource id + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; private set; } + + /// + /// Gets resource name + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets resource type + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } + + /// + /// Gets resource location + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; private set; } + + /// + /// + [JsonProperty(PropertyName = "sku")] + public CloudServiceRoleSku Sku { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties")] + public CloudServiceRoleProperties Properties { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleProfile.cs new file mode 100644 index 0000000000000..6ec87974a4745 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleProfile.cs @@ -0,0 +1,53 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Describes the role profile for the cloud service. + /// + public partial class CloudServiceRoleProfile + { + /// + /// Initializes a new instance of the CloudServiceRoleProfile class. + /// + public CloudServiceRoleProfile() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CloudServiceRoleProfile class. + /// + /// List of roles for the cloud service. + public CloudServiceRoleProfile(IList roles = default(IList)) + { + Roles = roles; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets list of roles for the cloud service. + /// + [JsonProperty(PropertyName = "roles")] + public IList Roles { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleProfileProperties.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleProfileProperties.cs new file mode 100644 index 0000000000000..47db1e0408aa3 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleProfileProperties.cs @@ -0,0 +1,59 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Describes the role properties. + /// + public partial class CloudServiceRoleProfileProperties + { + /// + /// Initializes a new instance of the CloudServiceRoleProfileProperties + /// class. + /// + public CloudServiceRoleProfileProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CloudServiceRoleProfileProperties + /// class. + /// + /// Resource name. + public CloudServiceRoleProfileProperties(string name = default(string), CloudServiceRoleSku sku = default(CloudServiceRoleSku)) + { + Name = name; + Sku = sku; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets resource name. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// + [JsonProperty(PropertyName = "sku")] + public CloudServiceRoleSku Sku { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleProperties.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleProperties.cs new file mode 100644 index 0000000000000..48d0c85661ff2 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleProperties.cs @@ -0,0 +1,50 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Linq; + + public partial class CloudServiceRoleProperties + { + /// + /// Initializes a new instance of the CloudServiceRoleProperties class. + /// + public CloudServiceRoleProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CloudServiceRoleProperties class. + /// + /// Specifies the ID which uniquely identifies a + /// cloud service role. + public CloudServiceRoleProperties(string uniqueId = default(string)) + { + UniqueId = uniqueId; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets specifies the ID which uniquely identifies a cloud service + /// role. + /// + [JsonProperty(PropertyName = "uniqueId")] + public string UniqueId { get; private set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleSku.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleSku.cs new file mode 100644 index 0000000000000..b0bbae8e08a56 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceRoleSku.cs @@ -0,0 +1,78 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Describes the cloud service role sku. + /// + public partial class CloudServiceRoleSku + { + /// + /// Initializes a new instance of the CloudServiceRoleSku class. + /// + public CloudServiceRoleSku() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CloudServiceRoleSku class. + /// + /// The sku name. NOTE: If the new SKU is not + /// supported on the hardware the cloud service is currently on, you + /// need to delete and recreate the cloud service or move back to the + /// old sku. + /// Specifies the tier of the cloud service. + /// Possible Values are <br /><br /> **Standard** <br + /// /><br /> **Basic** + /// Specifies the number of role instances in + /// the cloud service. + public CloudServiceRoleSku(string name = default(string), string tier = default(string), long? capacity = default(long?)) + { + Name = name; + Tier = tier; + Capacity = capacity; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the sku name. NOTE: If the new SKU is not supported on + /// the hardware the cloud service is currently on, you need to delete + /// and recreate the cloud service or move back to the old sku. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets specifies the tier of the cloud service. Possible + /// Values are &lt;br /&gt;&lt;br /&gt; **Standard** + /// &lt;br /&gt;&lt;br /&gt; **Basic** + /// + [JsonProperty(PropertyName = "tier")] + public string Tier { get; set; } + + /// + /// Gets or sets specifies the number of role instances in the cloud + /// service. + /// + [JsonProperty(PropertyName = "capacity")] + public long? Capacity { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceUpdate.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceUpdate.cs new file mode 100644 index 0000000000000..6d1c6f76be04d --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceUpdate.cs @@ -0,0 +1,50 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + public partial class CloudServiceUpdate + { + /// + /// Initializes a new instance of the CloudServiceUpdate class. + /// + public CloudServiceUpdate() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CloudServiceUpdate class. + /// + /// Resource tags + public CloudServiceUpdate(IDictionary tags = default(IDictionary)) + { + Tags = tags; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets resource tags + /// + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceUpgradeMode.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceUpgradeMode.cs new file mode 100644 index 0000000000000..6d25f3f7cd7db --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceUpgradeMode.cs @@ -0,0 +1,23 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + + /// + /// Defines values for CloudServiceUpgradeMode. + /// + public static class CloudServiceUpgradeMode + { + public const string Auto = "Auto"; + public const string Manual = "Manual"; + public const string Simultaneous = "Simultaneous"; + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceVaultAndSecretReference.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceVaultAndSecretReference.cs new file mode 100644 index 0000000000000..13461382f05c5 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceVaultAndSecretReference.cs @@ -0,0 +1,54 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Linq; + + public partial class CloudServiceVaultAndSecretReference + { + /// + /// Initializes a new instance of the + /// CloudServiceVaultAndSecretReference class. + /// + public CloudServiceVaultAndSecretReference() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// CloudServiceVaultAndSecretReference class. + /// + public CloudServiceVaultAndSecretReference(SubResource sourceVault = default(SubResource), string secretUrl = default(string)) + { + SourceVault = sourceVault; + SecretUrl = secretUrl; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// + [JsonProperty(PropertyName = "sourceVault")] + public SubResource SourceVault { get; set; } + + /// + /// + [JsonProperty(PropertyName = "secretUrl")] + public string SecretUrl { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceVaultCertificate.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceVaultCertificate.cs new file mode 100644 index 0000000000000..d5643600aa3c2 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceVaultCertificate.cs @@ -0,0 +1,56 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Describes a single certificate reference in a Key Vault, and where the + /// certificate should reside on the role instance. + /// + public partial class CloudServiceVaultCertificate + { + /// + /// Initializes a new instance of the CloudServiceVaultCertificate + /// class. + /// + public CloudServiceVaultCertificate() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CloudServiceVaultCertificate + /// class. + /// + /// This is the URL of a certificate that + /// has been uploaded to Key Vault as a secret. + public CloudServiceVaultCertificate(string certificateUrl = default(string)) + { + CertificateUrl = certificateUrl; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets this is the URL of a certificate that has been + /// uploaded to Key Vault as a secret. + /// + [JsonProperty(PropertyName = "certificateUrl")] + public string CertificateUrl { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceVaultSecretGroup.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceVaultSecretGroup.cs new file mode 100644 index 0000000000000..38b9d2224c25a --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/CloudServiceVaultSecretGroup.cs @@ -0,0 +1,67 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Describes a set of certificates which are all in the same Key Vault. + /// + public partial class CloudServiceVaultSecretGroup + { + /// + /// Initializes a new instance of the CloudServiceVaultSecretGroup + /// class. + /// + public CloudServiceVaultSecretGroup() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the CloudServiceVaultSecretGroup + /// class. + /// + /// The relative URL of the Key Vault + /// containing all of the certificates in VaultCertificates. + /// The list of key vault references in + /// SourceVault which contain certificates. + public CloudServiceVaultSecretGroup(SubResource sourceVault = default(SubResource), IList vaultCertificates = default(IList)) + { + SourceVault = sourceVault; + VaultCertificates = vaultCertificates; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the relative URL of the Key Vault containing all of + /// the certificates in VaultCertificates. + /// + [JsonProperty(PropertyName = "sourceVault")] + public SubResource SourceVault { get; set; } + + /// + /// Gets or sets the list of key vault references in SourceVault which + /// contain certificates. + /// + [JsonProperty(PropertyName = "vaultCertificates")] + public IList VaultCertificates { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Extension.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Extension.cs new file mode 100644 index 0000000000000..66db804aec3fc --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Extension.cs @@ -0,0 +1,57 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Describes a cloud service Extension. + /// + public partial class Extension + { + /// + /// Initializes a new instance of the Extension class. + /// + public Extension() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the Extension class. + /// + /// The name of the extension. + public Extension(string name = default(string), CloudServiceExtensionProperties properties = default(CloudServiceExtensionProperties)) + { + Name = name; + Properties = properties; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the name of the extension. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties")] + public CloudServiceExtensionProperties Properties { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Image.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Image.cs index 4916d4ba30079..c844f7a144af9 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Image.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/Image.cs @@ -46,9 +46,13 @@ public Image() /// Specifies the storage settings for the /// virtual machine disks. /// The provisioning state. - /// Gets the HyperVGenerationType of the - /// VirtualMachine created from the image. Possible values include: - /// 'V1', 'V2' + /// Specifies the HyperVGenerationType + /// of the VirtualMachine created from the image. From API Version + /// 2019-03-01 if the image source is a blob, then we need the user to + /// specify the value, if the source is managed resource like disk or + /// snapshot, we may require the user to specify the property if we + /// cannot deduce it from the source managed resource. Possible values + /// include: 'V1', 'V2' /// The extended location of the /// Image. public Image(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), SubResource sourceVirtualMachine = default(SubResource), ImageStorageProfile storageProfile = default(ImageStorageProfile), string provisioningState = default(string), string hyperVGeneration = default(string), ExtendedLocation extendedLocation = default(ExtendedLocation)) @@ -88,8 +92,13 @@ public Image() public string ProvisioningState { get; private set; } /// - /// Gets the HyperVGenerationType of the VirtualMachine created from - /// the image. Possible values include: 'V1', 'V2' + /// Gets or sets specifies the HyperVGenerationType of the + /// VirtualMachine created from the image. From API Version 2019-03-01 + /// if the image source is a blob, then we need the user to specify the + /// value, if the source is managed resource like disk or snapshot, we + /// may require the user to specify the property if we cannot deduce it + /// from the source managed resource. Possible values include: 'V1', + /// 'V2' /// [JsonProperty(PropertyName = "properties.hyperVGeneration")] public string HyperVGeneration { get; set; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ImageDataDisk.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ImageDataDisk.cs index cc8a8b640427a..90d4eca7353c0 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ImageDataDisk.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ImageDataDisk.cs @@ -49,8 +49,8 @@ public ImageDataDisk() /// Specifies the storage account type /// for the managed disk. NOTE: UltraSSD_LRS can only be used with data /// disks, it cannot be used with OS Disk. Possible values include: - /// 'Standard_LRS', 'Premium_LRS', 'StandardSSD_LRS', - /// 'UltraSSD_LRS' + /// 'Standard_LRS', 'Premium_LRS', 'StandardSSD_LRS', 'UltraSSD_LRS', + /// 'Premium_ZRS', 'StandardSSD_ZRS' /// Specifies the customer managed disk /// encryption set resource id for the managed image disk. public ImageDataDisk(int lun, SubResource snapshot = default(SubResource), SubResource managedDisk = default(SubResource), string blobUri = default(string), CachingTypes? caching = default(CachingTypes?), int? diskSizeGB = default(int?), string storageAccountType = default(string), DiskEncryptionSetParameters diskEncryptionSet = default(DiskEncryptionSetParameters)) diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ImageDisk.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ImageDisk.cs index 2136d9ab3e360..292fef651cada 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ImageDisk.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ImageDisk.cs @@ -45,8 +45,8 @@ public ImageDisk() /// Specifies the storage account type /// for the managed disk. NOTE: UltraSSD_LRS can only be used with data /// disks, it cannot be used with OS Disk. Possible values include: - /// 'Standard_LRS', 'Premium_LRS', 'StandardSSD_LRS', - /// 'UltraSSD_LRS' + /// 'Standard_LRS', 'Premium_LRS', 'StandardSSD_LRS', 'UltraSSD_LRS', + /// 'Premium_ZRS', 'StandardSSD_ZRS' /// Specifies the customer managed disk /// encryption set resource id for the managed image disk. public ImageDisk(SubResource snapshot = default(SubResource), SubResource managedDisk = default(SubResource), string blobUri = default(string), CachingTypes? caching = default(CachingTypes?), int? diskSizeGB = default(int?), string storageAccountType = default(string), DiskEncryptionSetParameters diskEncryptionSet = default(DiskEncryptionSetParameters)) @@ -110,7 +110,8 @@ public ImageDisk() /// Gets or sets specifies the storage account type for the managed /// disk. NOTE: UltraSSD_LRS can only be used with data disks, it /// cannot be used with OS Disk. Possible values include: - /// 'Standard_LRS', 'Premium_LRS', 'StandardSSD_LRS', 'UltraSSD_LRS' + /// 'Standard_LRS', 'Premium_LRS', 'StandardSSD_LRS', 'UltraSSD_LRS', + /// 'Premium_ZRS', 'StandardSSD_ZRS' /// [JsonProperty(PropertyName = "storageAccountType")] public string StorageAccountType { get; set; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ImageOSDisk.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ImageOSDisk.cs index d85a6e103cd80..a6759d2be87c9 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ImageOSDisk.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ImageOSDisk.cs @@ -52,8 +52,8 @@ public ImageOSDisk() /// Specifies the storage account type /// for the managed disk. NOTE: UltraSSD_LRS can only be used with data /// disks, it cannot be used with OS Disk. Possible values include: - /// 'Standard_LRS', 'Premium_LRS', 'StandardSSD_LRS', - /// 'UltraSSD_LRS' + /// 'Standard_LRS', 'Premium_LRS', 'StandardSSD_LRS', 'UltraSSD_LRS', + /// 'Premium_ZRS', 'StandardSSD_ZRS' /// Specifies the customer managed disk /// encryption set resource id for the managed image disk. public ImageOSDisk(OperatingSystemTypes osType, OperatingSystemStateTypes osState, SubResource snapshot = default(SubResource), SubResource managedDisk = default(SubResource), string blobUri = default(string), CachingTypes? caching = default(CachingTypes?), int? diskSizeGB = default(int?), string storageAccountType = default(string), DiskEncryptionSetParameters diskEncryptionSet = default(DiskEncryptionSetParameters)) diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ImageUpdate.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ImageUpdate.cs index 20e98317bbbb0..8d9a073172fcd 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ImageUpdate.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ImageUpdate.cs @@ -40,9 +40,13 @@ public ImageUpdate() /// Specifies the storage settings for the /// virtual machine disks. /// The provisioning state. - /// Gets the HyperVGenerationType of the - /// VirtualMachine created from the image. Possible values include: - /// 'V1', 'V2' + /// Specifies the HyperVGenerationType + /// of the VirtualMachine created from the image. From API Version + /// 2019-03-01 if the image source is a blob, then we need the user to + /// specify the value, if the source is managed resource like disk or + /// snapshot, we may require the user to specify the property if we + /// cannot deduce it from the source managed resource. Possible values + /// include: 'V1', 'V2' public ImageUpdate(IDictionary tags = default(IDictionary), SubResource sourceVirtualMachine = default(SubResource), ImageStorageProfile storageProfile = default(ImageStorageProfile), string provisioningState = default(string), string hyperVGeneration = default(string)) : base(tags) { @@ -79,8 +83,13 @@ public ImageUpdate() public string ProvisioningState { get; private set; } /// - /// Gets the HyperVGenerationType of the VirtualMachine created from - /// the image. Possible values include: 'V1', 'V2' + /// Gets or sets specifies the HyperVGenerationType of the + /// VirtualMachine created from the image. From API Version 2019-03-01 + /// if the image source is a blob, then we need the user to specify the + /// value, if the source is managed resource like disk or snapshot, we + /// may require the user to specify the property if we cannot deduce it + /// from the source managed resource. Possible values include: 'V1', + /// 'V2' /// [JsonProperty(PropertyName = "properties.hyperVGeneration")] public string HyperVGeneration { get; set; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/InstanceSku.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/InstanceSku.cs new file mode 100644 index 0000000000000..cc6d5e72fe8c6 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/InstanceSku.cs @@ -0,0 +1,57 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Linq; + + public partial class InstanceSku + { + /// + /// Initializes a new instance of the InstanceSku class. + /// + public InstanceSku() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the InstanceSku class. + /// + /// The sku name. + /// The tier of the cloud service role + /// instance. + public InstanceSku(string name = default(string), string tier = default(string)) + { + Name = name; + Tier = tier; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the sku name. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets the tier of the cloud service role instance. + /// + [JsonProperty(PropertyName = "tier")] + public string Tier { get; private set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/InstanceViewStatusesSummary.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/InstanceViewStatusesSummary.cs new file mode 100644 index 0000000000000..37cee73429f98 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/InstanceViewStatusesSummary.cs @@ -0,0 +1,53 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Instance view statuses. + /// + public partial class InstanceViewStatusesSummary + { + /// + /// Initializes a new instance of the InstanceViewStatusesSummary + /// class. + /// + public InstanceViewStatusesSummary() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the InstanceViewStatusesSummary + /// class. + /// + public InstanceViewStatusesSummary(IList statusesSummary = default(IList)) + { + StatusesSummary = statusesSummary; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// + [JsonProperty(PropertyName = "statusesSummary")] + public IList StatusesSummary { get; private set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerConfiguration.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerConfiguration.cs new file mode 100644 index 0000000000000..f9f18299ba25e --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerConfiguration.cs @@ -0,0 +1,90 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Describes the load balancer configuration. + /// + public partial class LoadBalancerConfiguration + { + /// + /// Initializes a new instance of the LoadBalancerConfiguration class. + /// + public LoadBalancerConfiguration() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the LoadBalancerConfiguration class. + /// + /// The name of the Load balancer + /// Properties of the load balancer + /// configuration. + /// Resource Id + public LoadBalancerConfiguration(string name, LoadBalancerConfigurationProperties properties, string id = default(string)) + { + Id = id; + Name = name; + Properties = properties; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets resource Id + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; set; } + + /// + /// Gets or sets the name of the Load balancer + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets properties of the load balancer configuration. + /// + [JsonProperty(PropertyName = "properties")] + public LoadBalancerConfigurationProperties Properties { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Name"); + } + if (Properties == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Properties"); + } + if (Properties != null) + { + Properties.Validate(); + } + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerConfigurationProperties.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerConfigurationProperties.cs new file mode 100644 index 0000000000000..1dbbb69905136 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerConfigurationProperties.cs @@ -0,0 +1,82 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + public partial class LoadBalancerConfigurationProperties + { + /// + /// Initializes a new instance of the + /// LoadBalancerConfigurationProperties class. + /// + public LoadBalancerConfigurationProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// LoadBalancerConfigurationProperties class. + /// + /// Specifies the frontend IP to + /// be used for the load balancer. Only IPv4 frontend IP address is + /// supported. Each load balancer configuration must have exactly one + /// frontend IP configuration. + public LoadBalancerConfigurationProperties(IList frontendIPConfigurations) + { + FrontendIPConfigurations = frontendIPConfigurations; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets specifies the frontend IP to be used for the load + /// balancer. Only IPv4 frontend IP address is supported. Each load + /// balancer configuration must have exactly one frontend IP + /// configuration. + /// + [JsonProperty(PropertyName = "frontendIPConfigurations")] + public IList FrontendIPConfigurations { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (FrontendIPConfigurations == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "FrontendIPConfigurations"); + } + if (FrontendIPConfigurations != null) + { + foreach (var element in FrontendIPConfigurations) + { + if (element != null) + { + element.Validate(); + } + } + } + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerFrontendIPConfiguration.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerFrontendIPConfiguration.cs new file mode 100644 index 0000000000000..a2f03eeff976f --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerFrontendIPConfiguration.cs @@ -0,0 +1,81 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + public partial class LoadBalancerFrontendIPConfiguration + { + /// + /// Initializes a new instance of the + /// LoadBalancerFrontendIPConfiguration class. + /// + public LoadBalancerFrontendIPConfiguration() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// LoadBalancerFrontendIPConfiguration class. + /// + /// The name of the resource that is unique within + /// the set of frontend IP configurations used by the load balancer. + /// This name can be used to access the resource. + /// Properties of load balancer frontend ip + /// configuration. + public LoadBalancerFrontendIPConfiguration(string name, LoadBalancerFrontendIPConfigurationProperties properties) + { + Name = name; + Properties = properties; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the name of the resource that is unique within the set + /// of frontend IP configurations used by the load balancer. This name + /// can be used to access the resource. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets properties of load balancer frontend ip configuration. + /// + [JsonProperty(PropertyName = "properties")] + public LoadBalancerFrontendIPConfigurationProperties Properties { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Name"); + } + if (Properties == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Properties"); + } + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerFrontendIPConfigurationProperties.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerFrontendIPConfigurationProperties.cs new file mode 100644 index 0000000000000..0d50ea7969236 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/LoadBalancerFrontendIPConfigurationProperties.cs @@ -0,0 +1,73 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Describes a cloud service IP Configuration + /// + public partial class LoadBalancerFrontendIPConfigurationProperties + { + /// + /// Initializes a new instance of the + /// LoadBalancerFrontendIPConfigurationProperties class. + /// + public LoadBalancerFrontendIPConfigurationProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// LoadBalancerFrontendIPConfigurationProperties class. + /// + /// The reference to the public ip + /// address resource. + /// The reference to the virtual network subnet + /// resource. + /// The virtual network private IP + /// address of the IP configuration. + public LoadBalancerFrontendIPConfigurationProperties(SubResource publicIPAddress = default(SubResource), SubResource subnet = default(SubResource), string privateIPAddress = default(string)) + { + PublicIPAddress = publicIPAddress; + Subnet = subnet; + PrivateIPAddress = privateIPAddress; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the reference to the public ip address resource. + /// + [JsonProperty(PropertyName = "publicIPAddress")] + public SubResource PublicIPAddress { get; set; } + + /// + /// Gets or sets the reference to the virtual network subnet resource. + /// + [JsonProperty(PropertyName = "subnet")] + public SubResource Subnet { get; set; } + + /// + /// Gets or sets the virtual network private IP address of the IP + /// configuration. + /// + [JsonProperty(PropertyName = "privateIPAddress")] + public string PrivateIPAddress { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ManagedDiskParameters.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ManagedDiskParameters.cs index 2048b4a85700a..7042c7d194764 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ManagedDiskParameters.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ManagedDiskParameters.cs @@ -33,8 +33,8 @@ public ManagedDiskParameters() /// Specifies the storage account type /// for the managed disk. NOTE: UltraSSD_LRS can only be used with data /// disks, it cannot be used with OS Disk. Possible values include: - /// 'Standard_LRS', 'Premium_LRS', 'StandardSSD_LRS', - /// 'UltraSSD_LRS' + /// 'Standard_LRS', 'Premium_LRS', 'StandardSSD_LRS', 'UltraSSD_LRS', + /// 'Premium_ZRS', 'StandardSSD_ZRS' /// Specifies the customer managed disk /// encryption set resource id for the managed disk. public ManagedDiskParameters(string id = default(string), string storageAccountType = default(string), DiskEncryptionSetParameters diskEncryptionSet = default(DiskEncryptionSetParameters)) @@ -54,7 +54,8 @@ public ManagedDiskParameters() /// Gets or sets specifies the storage account type for the managed /// disk. NOTE: UltraSSD_LRS can only be used with data disks, it /// cannot be used with OS Disk. Possible values include: - /// 'Standard_LRS', 'Premium_LRS', 'StandardSSD_LRS', 'UltraSSD_LRS' + /// 'Standard_LRS', 'Premium_LRS', 'StandardSSD_LRS', 'UltraSSD_LRS', + /// 'Premium_ZRS', 'StandardSSD_ZRS' /// [JsonProperty(PropertyName = "storageAccountType")] public string StorageAccountType { get; set; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/OSFamily.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/OSFamily.cs new file mode 100644 index 0000000000000..9320452adf79c --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/OSFamily.cs @@ -0,0 +1,81 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Describes a cloud service OS family. + /// + public partial class OSFamily + { + /// + /// Initializes a new instance of the OSFamily class. + /// + public OSFamily() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the OSFamily class. + /// + /// Resource Id. + /// Resource name. + /// Resource type. + /// Resource location. + public OSFamily(string id = default(string), string name = default(string), string type = default(string), string location = default(string), OSFamilyProperties properties = default(OSFamilyProperties)) + { + Id = id; + Name = name; + Type = type; + Location = location; + Properties = properties; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets resource Id. + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; private set; } + + /// + /// Gets resource name. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets resource type. + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } + + /// + /// Gets resource location. + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; private set; } + + /// + /// + [JsonProperty(PropertyName = "properties")] + public OSFamilyProperties Properties { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/OSFamilyProperties.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/OSFamilyProperties.cs new file mode 100644 index 0000000000000..1a47ad508b6d1 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/OSFamilyProperties.cs @@ -0,0 +1,70 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// OS family properties. + /// + public partial class OSFamilyProperties + { + /// + /// Initializes a new instance of the OSFamilyProperties class. + /// + public OSFamilyProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the OSFamilyProperties class. + /// + /// The OS family name. + /// The OS family label. + /// List of OS versions belonging to this + /// family. + public OSFamilyProperties(string name = default(string), string label = default(string), IList versions = default(IList)) + { + Name = name; + Label = label; + Versions = versions; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the OS family name. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets the OS family label. + /// + [JsonProperty(PropertyName = "label")] + public string Label { get; private set; } + + /// + /// Gets list of OS versions belonging to this family. + /// + [JsonProperty(PropertyName = "versions")] + public IList Versions { get; private set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/OSVersion.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/OSVersion.cs new file mode 100644 index 0000000000000..e7ed62060374e --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/OSVersion.cs @@ -0,0 +1,81 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Describes a cloud service OS version. + /// + public partial class OSVersion + { + /// + /// Initializes a new instance of the OSVersion class. + /// + public OSVersion() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the OSVersion class. + /// + /// Resource Id. + /// Resource name. + /// Resource type. + /// Resource location. + public OSVersion(string id = default(string), string name = default(string), string type = default(string), string location = default(string), OSVersionProperties properties = default(OSVersionProperties)) + { + Id = id; + Name = name; + Type = type; + Location = location; + Properties = properties; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets resource Id. + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; private set; } + + /// + /// Gets resource name. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets resource type. + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } + + /// + /// Gets resource location. + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; private set; } + + /// + /// + [JsonProperty(PropertyName = "properties")] + public OSVersionProperties Properties { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/OSVersionProperties.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/OSVersionProperties.cs new file mode 100644 index 0000000000000..1c58d145e87d4 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/OSVersionProperties.cs @@ -0,0 +1,95 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// OS version properties. + /// + public partial class OSVersionProperties + { + /// + /// Initializes a new instance of the OSVersionProperties class. + /// + public OSVersionProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the OSVersionProperties class. + /// + /// The family of this OS version. + /// The family label of this OS + /// version. + /// The OS version. + /// The OS version label. + /// Specifies whether this is the default OS + /// version for its family. + /// Specifies whether this OS version is + /// active. + public OSVersionProperties(string family = default(string), string familyLabel = default(string), string version = default(string), string label = default(string), bool? isDefault = default(bool?), bool? isActive = default(bool?)) + { + Family = family; + FamilyLabel = familyLabel; + Version = version; + Label = label; + IsDefault = isDefault; + IsActive = isActive; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the family of this OS version. + /// + [JsonProperty(PropertyName = "family")] + public string Family { get; private set; } + + /// + /// Gets the family label of this OS version. + /// + [JsonProperty(PropertyName = "familyLabel")] + public string FamilyLabel { get; private set; } + + /// + /// Gets the OS version. + /// + [JsonProperty(PropertyName = "version")] + public string Version { get; private set; } + + /// + /// Gets the OS version label. + /// + [JsonProperty(PropertyName = "label")] + public string Label { get; private set; } + + /// + /// Gets specifies whether this is the default OS version for its + /// family. + /// + [JsonProperty(PropertyName = "isDefault")] + public bool? IsDefault { get; private set; } + + /// + /// Gets specifies whether this OS version is active. + /// + [JsonProperty(PropertyName = "isActive")] + public bool? IsActive { get; private set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/OSVersionPropertiesBase.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/OSVersionPropertiesBase.cs new file mode 100644 index 0000000000000..d408b127b348f --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/OSVersionPropertiesBase.cs @@ -0,0 +1,78 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Configuration view of an OS version. + /// + public partial class OSVersionPropertiesBase + { + /// + /// Initializes a new instance of the OSVersionPropertiesBase class. + /// + public OSVersionPropertiesBase() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the OSVersionPropertiesBase class. + /// + /// The OS version. + /// The OS version label. + /// Specifies whether this is the default OS + /// version for its family. + /// Specifies whether this OS version is + /// active. + public OSVersionPropertiesBase(string version = default(string), string label = default(string), bool? isDefault = default(bool?), bool? isActive = default(bool?)) + { + Version = version; + Label = label; + IsDefault = isDefault; + IsActive = isActive; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the OS version. + /// + [JsonProperty(PropertyName = "version")] + public string Version { get; private set; } + + /// + /// Gets the OS version label. + /// + [JsonProperty(PropertyName = "label")] + public string Label { get; private set; } + + /// + /// Gets specifies whether this is the default OS version for its + /// family. + /// + [JsonProperty(PropertyName = "isDefault")] + public bool? IsDefault { get; private set; } + + /// + /// Gets specifies whether this OS version is active. + /// + [JsonProperty(PropertyName = "isActive")] + public bool? IsActive { get; private set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ResourceInstanceViewStatus.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ResourceInstanceViewStatus.cs new file mode 100644 index 0000000000000..fd6a5d166a6af --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/ResourceInstanceViewStatus.cs @@ -0,0 +1,88 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Instance view status. + /// + public partial class ResourceInstanceViewStatus + { + /// + /// Initializes a new instance of the ResourceInstanceViewStatus class. + /// + public ResourceInstanceViewStatus() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ResourceInstanceViewStatus class. + /// + /// The status code. + /// The short localizable label for the + /// status. + /// The detailed status message, including for + /// alerts and error messages. + /// The time of the status. + /// The level code. Possible values include: + /// 'Info', 'Warning', 'Error' + public ResourceInstanceViewStatus(string code = default(string), string displayStatus = default(string), string message = default(string), System.DateTime? time = default(System.DateTime?), StatusLevelTypes? level = default(StatusLevelTypes?)) + { + Code = code; + DisplayStatus = displayStatus; + Message = message; + Time = time; + Level = level; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the status code. + /// + [JsonProperty(PropertyName = "code")] + public string Code { get; private set; } + + /// + /// Gets the short localizable label for the status. + /// + [JsonProperty(PropertyName = "displayStatus")] + public string DisplayStatus { get; private set; } + + /// + /// Gets the detailed status message, including for alerts and error + /// messages. + /// + [JsonProperty(PropertyName = "message")] + public string Message { get; private set; } + + /// + /// Gets the time of the status. + /// + [JsonProperty(PropertyName = "time")] + public System.DateTime? Time { get; private set; } + + /// + /// Gets or sets the level code. Possible values include: 'Info', + /// 'Warning', 'Error' + /// + [JsonProperty(PropertyName = "level")] + public StatusLevelTypes? Level { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstance.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstance.cs new file mode 100644 index 0000000000000..1dabc78b11da7 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstance.cs @@ -0,0 +1,94 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + public partial class RoleInstance + { + /// + /// Initializes a new instance of the RoleInstance class. + /// + public RoleInstance() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RoleInstance class. + /// + /// Resource Id + /// Resource Name. + /// Resource Type. + /// Resource Location. + /// Resource tags. + public RoleInstance(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), InstanceSku sku = default(InstanceSku), RoleInstanceProperties properties = default(RoleInstanceProperties)) + { + Id = id; + Name = name; + Type = type; + Location = location; + Tags = tags; + Sku = sku; + Properties = properties; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets resource Id + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; private set; } + + /// + /// Gets resource Name. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets resource Type. + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } + + /// + /// Gets resource Location. + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; private set; } + + /// + /// Gets resource tags. + /// + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; private set; } + + /// + /// + [JsonProperty(PropertyName = "sku")] + public InstanceSku Sku { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties")] + public RoleInstanceProperties Properties { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstanceInstanceView.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstanceInstanceView.cs new file mode 100644 index 0000000000000..5897af48e493b --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstanceInstanceView.cs @@ -0,0 +1,83 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The instance view of the role instance. + /// + public partial class RoleInstanceInstanceView + { + /// + /// Initializes a new instance of the RoleInstanceInstanceView class. + /// + public RoleInstanceInstanceView() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RoleInstanceInstanceView class. + /// + /// The Update Domain. + /// The Fault Domain. + /// Specifies a unique identifier generated + /// internally for the cloud service associated with this role + /// instance. <br /><br /> NOTE: If you are using Azure + /// Diagnostics extension, this property can be used as 'DeploymentId' + /// for querying details. + public RoleInstanceInstanceView(int? platformUpdateDomain = default(int?), int? platformFaultDomain = default(int?), string privateId = default(string), IList statuses = default(IList)) + { + PlatformUpdateDomain = platformUpdateDomain; + PlatformFaultDomain = platformFaultDomain; + PrivateId = privateId; + Statuses = statuses; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the Update Domain. + /// + [JsonProperty(PropertyName = "platformUpdateDomain")] + public int? PlatformUpdateDomain { get; private set; } + + /// + /// Gets the Fault Domain. + /// + [JsonProperty(PropertyName = "platformFaultDomain")] + public int? PlatformFaultDomain { get; private set; } + + /// + /// Gets specifies a unique identifier generated internally for the + /// cloud service associated with this role instance. &lt;br + /// /&gt;&lt;br /&gt; NOTE: If you are using Azure + /// Diagnostics extension, this property can be used as 'DeploymentId' + /// for querying details. + /// + [JsonProperty(PropertyName = "privateId")] + public string PrivateId { get; private set; } + + /// + /// + [JsonProperty(PropertyName = "statuses")] + public IList Statuses { get; private set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstanceNetworkProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstanceNetworkProfile.cs new file mode 100644 index 0000000000000..4a74b02f36107 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstanceNetworkProfile.cs @@ -0,0 +1,56 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Describes the network profile for the role instance. + /// + public partial class RoleInstanceNetworkProfile + { + /// + /// Initializes a new instance of the RoleInstanceNetworkProfile class. + /// + public RoleInstanceNetworkProfile() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RoleInstanceNetworkProfile class. + /// + /// Specifies the list of resource Ids + /// for the network interfaces associated with the role + /// instance. + public RoleInstanceNetworkProfile(IList networkInterfaces = default(IList)) + { + NetworkInterfaces = networkInterfaces; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets specifies the list of resource Ids for the network interfaces + /// associated with the role instance. + /// + [JsonProperty(PropertyName = "networkInterfaces")] + public IList NetworkInterfaces { get; private set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstanceProperties.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstanceProperties.cs new file mode 100644 index 0000000000000..fb7bd0ef45265 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstanceProperties.cs @@ -0,0 +1,52 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Linq; + + public partial class RoleInstanceProperties + { + /// + /// Initializes a new instance of the RoleInstanceProperties class. + /// + public RoleInstanceProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RoleInstanceProperties class. + /// + public RoleInstanceProperties(RoleInstanceNetworkProfile networkProfile = default(RoleInstanceNetworkProfile), RoleInstanceInstanceView instanceView = default(RoleInstanceInstanceView)) + { + NetworkProfile = networkProfile; + InstanceView = instanceView; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// + [JsonProperty(PropertyName = "networkProfile")] + public RoleInstanceNetworkProfile NetworkProfile { get; set; } + + /// + /// + [JsonProperty(PropertyName = "instanceView")] + public RoleInstanceInstanceView InstanceView { get; set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstances.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstances.cs new file mode 100644 index 0000000000000..ca428016fc697 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/RoleInstances.cs @@ -0,0 +1,70 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Specifies a list of role instances from the cloud service. + /// + public partial class RoleInstances + { + /// + /// Initializes a new instance of the RoleInstances class. + /// + public RoleInstances() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RoleInstances class. + /// + /// List of cloud service role + /// instance names. Value of '*' will signify all role instances of the + /// cloud service. + public RoleInstances(IList roleInstancesProperty) + { + RoleInstancesProperty = roleInstancesProperty; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets list of cloud service role instance names. Value of + /// '*' will signify all role instances of the cloud service. + /// + [JsonProperty(PropertyName = "roleInstances")] + public IList RoleInstancesProperty { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (RoleInstancesProperty == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "RoleInstancesProperty"); + } + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/StatusCodeCount.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/StatusCodeCount.cs new file mode 100644 index 0000000000000..58d751d63e8ef --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/StatusCodeCount.cs @@ -0,0 +1,57 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Linq; + + public partial class StatusCodeCount + { + /// + /// Initializes a new instance of the StatusCodeCount class. + /// + public StatusCodeCount() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the StatusCodeCount class. + /// + /// The instance view status code + /// Number of instances having this status + /// code + public StatusCodeCount(string code = default(string), int? count = default(int?)) + { + Code = code; + Count = count; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the instance view status code + /// + [JsonProperty(PropertyName = "code")] + public string Code { get; private set; } + + /// + /// Gets number of instances having this status code + /// + [JsonProperty(PropertyName = "count")] + public int? Count { get; private set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/StorageAccountTypes.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/StorageAccountTypes.cs index 187a42f0ab6b3..776f0f57f6cda 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/StorageAccountTypes.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/StorageAccountTypes.cs @@ -20,5 +20,7 @@ public static class StorageAccountTypes public const string PremiumLRS = "Premium_LRS"; public const string StandardSSDLRS = "StandardSSD_LRS"; public const string UltraSSDLRS = "UltraSSD_LRS"; + public const string PremiumZRS = "Premium_ZRS"; + public const string StandardSSDZRS = "StandardSSD_ZRS"; } } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UpdateDomain.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UpdateDomain.cs new file mode 100644 index 0000000000000..a70bab5d5e0df --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UpdateDomain.cs @@ -0,0 +1,59 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Compute.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines an update domain for the cloud service. + /// + public partial class UpdateDomain + { + /// + /// Initializes a new instance of the UpdateDomain class. + /// + public UpdateDomain() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the UpdateDomain class. + /// + /// Resource Id + /// Resource Name + public UpdateDomain(string id = default(string), string name = default(string)) + { + Id = id; + Name = name; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets resource Id + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; private set; } + + /// + /// Gets resource Name + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSetManagedDiskParameters.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSetManagedDiskParameters.cs index ca640e2cd0e6c..2cb366199f199 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSetManagedDiskParameters.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/VirtualMachineScaleSetManagedDiskParameters.cs @@ -34,8 +34,8 @@ public VirtualMachineScaleSetManagedDiskParameters() /// Specifies the storage account type /// for the managed disk. NOTE: UltraSSD_LRS can only be used with data /// disks, it cannot be used with OS Disk. Possible values include: - /// 'Standard_LRS', 'Premium_LRS', 'StandardSSD_LRS', - /// 'UltraSSD_LRS' + /// 'Standard_LRS', 'Premium_LRS', 'StandardSSD_LRS', 'UltraSSD_LRS', + /// 'Premium_ZRS', 'StandardSSD_ZRS' /// Specifies the customer managed disk /// encryption set resource id for the managed disk. public VirtualMachineScaleSetManagedDiskParameters(string storageAccountType = default(string), DiskEncryptionSetParameters diskEncryptionSet = default(DiskEncryptionSetParameters)) @@ -54,7 +54,8 @@ public VirtualMachineScaleSetManagedDiskParameters() /// Gets or sets specifies the storage account type for the managed /// disk. NOTE: UltraSSD_LRS can only be used with data disks, it /// cannot be used with OS Disk. Possible values include: - /// 'Standard_LRS', 'Premium_LRS', 'StandardSSD_LRS', 'UltraSSD_LRS' + /// 'Standard_LRS', 'Premium_LRS', 'StandardSSD_LRS', 'UltraSSD_LRS', + /// 'Premium_ZRS', 'StandardSSD_ZRS' /// [JsonProperty(PropertyName = "storageAccountType")] public string StorageAccountType { get; set; } diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SdkInfo_ComputeManagementClient.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SdkInfo_ComputeManagementClient.cs index ce9c5ebe806b8..f71fadd4af348 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SdkInfo_ComputeManagementClient.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/SdkInfo_ComputeManagementClient.cs @@ -20,6 +20,11 @@ public static IEnumerable> ApiInfo_ComputeManageme return new Tuple[] { new Tuple("Compute", "AvailabilitySets", "2020-12-01"), + new Tuple("Compute", "CloudServiceOperatingSystems", "2021-03-01"), + new Tuple("Compute", "CloudServiceRoleInstances", "2021-03-01"), + new Tuple("Compute", "CloudServiceRoles", "2021-03-01"), + new Tuple("Compute", "CloudServices", "2021-03-01"), + new Tuple("Compute", "CloudServicesUpdateDomain", "2021-03-01"), new Tuple("Compute", "DedicatedHostGroups", "2020-12-01"), new Tuple("Compute", "DedicatedHosts", "2020-12-01"), new Tuple("Compute", "DiskAccesses", "2020-09-30"), @@ -55,5 +60,16 @@ public static IEnumerable> ApiInfo_ComputeManageme }.AsEnumerable(); } } + // BEGIN: Code Generation Metadata Section + public static readonly String AutoRestVersion = "v2"; + public static readonly String AutoRestBootStrapperVersion = "autorest@2.0.4413"; + public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/compute/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\\azure-sdk-for-net\\sdk"; + public static readonly String GithubForkName = "Azure"; + public static readonly String GithubBranchName = "master"; + public static readonly String GithubCommidId = "e10fd5f5f0b3444e589cd816321fce7036e33554"; + public static readonly String CodeGenerationErrors = ""; + public static readonly String GithubRepoName = "azure-rest-api-specs"; + // END: Code Generation Metadata Section } } + diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Microsoft.Azure.Management.Compute.csproj b/sdk/compute/Microsoft.Azure.Management.Compute/src/Microsoft.Azure.Management.Compute.csproj index 3f51c634d3bd4..b4aad2288b680 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Microsoft.Azure.Management.Compute.csproj +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Microsoft.Azure.Management.Compute.csproj @@ -9,24 +9,12 @@ Provides developers with libraries for the updated compute platform under Azure Resource manager to deploy virtual machine, virtual machine extensions and availability set management capabilities. Launch, restart, scale, capture and manage VMs, VM Extensions and more. Note: This client library is for Virtual Machines under Azure Resource Manager. Development of this library has shifted focus to the Azure Unified SDK. The future development will be focused on "Azure.ResourceManager.Compute" (https://www.nuget.org/packages/Azure.ResourceManager.Compute/). Please see the package changelog for more information. - 44.0.0.0 + 45.0.0.0 Microsoft.Azure.Management.Compute management;virtual machine;compute; diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Properties/AssemblyInfo.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Properties/AssemblyInfo.cs index 3b54281814e02..a3ec656e3fce9 100644 --- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Properties/AssemblyInfo.cs +++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Properties/AssemblyInfo.cs @@ -7,8 +7,8 @@ [assembly: AssemblyTitle("Microsoft Azure Compute Management Library")] [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Compute Resources.")] -[assembly: AssemblyVersion("44.0.0.0")] -[assembly: AssemblyFileVersion("44.0.0.0")] +[assembly: AssemblyVersion("45.0.0.0")] +[assembly: AssemblyFileVersion("45.0.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Microsoft Azure .NET SDK")] diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/CloudServiceTests/CloudServiceExtensionTests.cs b/sdk/compute/Microsoft.Azure.Management.Compute/tests/CloudServiceTests/CloudServiceExtensionTests.cs new file mode 100644 index 0000000000000..8b52badd186e9 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/CloudServiceTests/CloudServiceExtensionTests.cs @@ -0,0 +1,370 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using Microsoft.Azure.Management.Compute; +using Microsoft.Azure.Management.Compute.Models; +using Microsoft.Azure.Management.Network.Models; +using Microsoft.Azure.Management.ResourceManager; +using Microsoft.Rest.Azure; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using Xunit; + +namespace Compute.Tests +{ + public class CloudServiceExtensionTests : CloudServiceTestsBase + { + [Fact] + [Trait("Name", "MultiRole_CreateUpdateGetAndDeleteWithExtension_WorkerAndWebRole")] + public void MultiRole_CreateUpdateGetAndDeleteWithExtension_WorkerAndWebRole() + { + using (MockContext context = MockContext.Start(this.GetType())) + { + EnsureClientsInitialized(context); + + // Create resource group + var rgName = TestUtilities.GenerateName(TestPrefix); + var csName = TestUtilities.GenerateName("cs"); + string cloudServiceName = "TestCloudServiceMultiRole"; + string publicIPAddressName = TestUtilities.GenerateName("cspip"); + string vnetName = TestUtilities.GenerateName("csvnet"); + string subnetName = TestUtilities.GenerateName("subnet"); + string dnsName = TestUtilities.GenerateName("dns"); + string lbName = TestUtilities.GenerateName("lb"); + string lbfeName = TestUtilities.GenerateName("lbfe"); + + + try + { + CreateVirtualNetwork(rgName, vnetName, subnetName); + PublicIPAddress publicIPAddress = CreatePublicIP(publicIPAddressName, rgName, dnsName); + + + /// + /// Create: Create a multi-role CloudService with 2 WorkerRoles, 1 WebRole, and RDP Extension. + /// + + string rdpExtensionPublicConfig = "" + + "adminRdpTest" + + "2021-10-27T23:59:59" + + ""; + string rdpExtensionPrivateConfig = "" + + "VsmrdpTest!" + + ""; + + Extension rdpExtension = CreateExtension("RDPExtension", "Microsoft.Windows.Azure.Extensions", "RDP", "1.2.1", autoUpgrade: true, + publicConfig: rdpExtensionPublicConfig, + privateConfig: rdpExtensionPrivateConfig); + // Define Configurations + List supportedRoleInstanceSizes = GetSupportedRoleInstanceSizes(); + Dictionary roleNameToPropertiesMapping = new Dictionary + { + { "WorkerRole1", new RoleConfiguration { InstanceCount = 1, RoleInstanceSize = supportedRoleInstanceSizes[0] } }, + { "WorkerRole2", new RoleConfiguration { InstanceCount = 1, RoleInstanceSize = supportedRoleInstanceSizes[1] } }, + { "WebRole1", new RoleConfiguration { InstanceCount = 2, RoleInstanceSize = supportedRoleInstanceSizes[3] } } + }; + + // Generate the request + CloudService cloudService = GenerateCloudServiceWithNetworkProfile( + resourceGroupName: rgName, + serviceName: cloudServiceName, + cspkgSasUri: CreateCspkgSasUrl(rgName, MultiRole2Worker1WebRolesPackageSasUri), + roleNameToPropertiesMapping: roleNameToPropertiesMapping, + publicIPAddressName: publicIPAddressName, + vnetName: vnetName, + subnetName: subnetName, + lbName: lbName, + lbFrontendName: lbfeName); + + cloudService.Properties.ExtensionProfile = new CloudServiceExtensionProfile() + { + Extensions = new List() + }; + cloudService.Properties.ExtensionProfile.Extensions.Add(rdpExtension); + + CloudService getResponse = CreateCloudService_NoAsyncTracking( + rgName, + csName, + cloudService); + + // Validate the response for multirole + ValidateGetAndListResponseForMultiRole(rgName, csName, cloudService, roleNameToPropertiesMapping); + + /// + /// Update[1]: Delete RDP Extension, and Add Monitor Extension. + /// + + Extension monitorExtension = CreateExtension("MonitoringExtension", "Microsoft.Azure.Security", "Monitoring", "3.1.0.0"); + cloudService.Properties.ExtensionProfile = new CloudServiceExtensionProfile() + { + Extensions = new List() + }; + cloudService.Properties.ExtensionProfile.Extensions.Add(monitorExtension); + + getResponse = CreateCloudService_NoAsyncTracking( + rgName, + csName, + cloudService); + + // Send the request + ValidateGetAndListResponseForMultiRole(rgName, csName, cloudService, roleNameToPropertiesMapping); + + /// + /// Update[2]: Delete Monitor Extension + /// + + cloudService.Properties.ExtensionProfile = null; + getResponse = CreateCloudService_NoAsyncTracking( + rgName, + csName, + cloudService); + + // Send the request + ValidateGetAndListResponseForMultiRole(rgName, csName, cloudService, roleNameToPropertiesMapping); + + /// + /// Delete the CloudService + /// + + m_CrpClient.CloudServices.Delete(rgName, csName); + } + finally + { + // Fire and forget. No need to wait for RG deletion completion + try + { + m_ResourcesClient.ResourceGroups.BeginDelete(rgName); + } + catch (Exception e) + { + // Swallow this exception so that the original exception is thrown + Console.WriteLine(e); + } + } + } + } + + [Fact] + [Trait("Name", "MultiRole_CreateUpdateGetAndDeleteWithExtension_WorkerAndWebRole_MultiRoleExtension")] + public void MultiRole_CreateUpdateGetAndDeleteWithExtension_WorkerAndWebRole_MultiRoleExtension() + { + using (MockContext context = MockContext.Start(this.GetType())) + { + EnsureClientsInitialized(context); + + // Create resource group + var rgName = TestUtilities.GenerateName(TestPrefix); + var csName = TestUtilities.GenerateName("cs"); + string cloudServiceName = "TestCloudServiceMultiRole"; + string publicIPAddressName = TestUtilities.GenerateName("cspip"); + string vnetName = TestUtilities.GenerateName("csvnet"); + string subnetName = TestUtilities.GenerateName("subnet"); + string dnsName = TestUtilities.GenerateName("dns"); + string lbName = TestUtilities.GenerateName("lb"); + string lbfeName = TestUtilities.GenerateName("lbfe"); + + + try + { + CreateVirtualNetwork(rgName, vnetName, subnetName); + PublicIPAddress publicIPAddress = CreatePublicIP(publicIPAddressName, rgName, dnsName); + + + /// + /// Create: Create a multi-role CloudService with 2 WorkerRoles, 1 WebRole, and RDP Extension. + /// + + string rdpExtensionPublicConfig = "" + + "adminRdpTest" + + "2021-10-27T23:59:59" + + ""; + string rdpExtensionPrivateConfig = "" + + "VsmrdpTest!" + + ""; + + Extension rdpExtension = CreateExtension("RDPExtension", "Microsoft.Windows.Azure.Extensions", "RDP", "1.2.1", autoUpgrade: true, + publicConfig: rdpExtensionPublicConfig, + privateConfig: rdpExtensionPrivateConfig); + // Define Configurations + List supportedRoleInstanceSizes = GetSupportedRoleInstanceSizes(); + Dictionary roleNameToPropertiesMapping = new Dictionary + { + { "WorkerRole1", new RoleConfiguration { InstanceCount = 1, RoleInstanceSize = supportedRoleInstanceSizes[0] } }, + { "WorkerRole2", new RoleConfiguration { InstanceCount = 1, RoleInstanceSize = supportedRoleInstanceSizes[1] } }, + { "WebRole1", new RoleConfiguration { InstanceCount = 2, RoleInstanceSize = supportedRoleInstanceSizes[3] } } + }; + + // Generate the request + CloudService cloudService = GenerateCloudServiceWithNetworkProfile( + resourceGroupName: rgName, + serviceName: cloudServiceName, + cspkgSasUri: CreateCspkgSasUrl(rgName, MultiRole2Worker1WebRolesPackageSasUri), + roleNameToPropertiesMapping: roleNameToPropertiesMapping, + publicIPAddressName: publicIPAddressName, + vnetName: vnetName, + subnetName: subnetName, + lbName: lbName, + lbFrontendName: lbfeName); + + cloudService.Properties.ExtensionProfile = new CloudServiceExtensionProfile() + { + Extensions = new List() + }; + cloudService.Properties.ExtensionProfile.Extensions.Add(rdpExtension); + + CloudService getResponse = CreateCloudService_NoAsyncTracking( + rgName, + csName, + cloudService); + + // Send the request + ValidateGetAndListResponseForMultiRole(rgName, csName, cloudService, roleNameToPropertiesMapping); + + // Validate the RDP file response + VerifyRDPResponse("WorkerRole1_IN_0", rgName, csName); + VerifyRDPResponse("WorkerRole2_IN_0", rgName, csName); + VerifyRDPResponse("WebRole1_IN_0", rgName, csName); + VerifyRDPResponse("WebRole1_IN_1", rgName, csName); + /// + /// Update[1]: and Add Monitor Extension in WorkerRole1. + /// + + + Extension monitorExtension = CreateExtension("MonitoringExtension", "Microsoft.Azure.Security", "Monitoring", "3.1.0.0"); + monitorExtension.Properties.RolesAppliedTo = new List() { "WorkerRole1" }; + cloudService.Properties.ExtensionProfile.Extensions.Add(monitorExtension); + + getResponse = CreateCloudService_NoAsyncTracking( + rgName, + csName, + cloudService); + + // Send the request + ValidateGetAndListResponseForMultiRole(rgName, csName, cloudService, roleNameToPropertiesMapping); + /// + /// Update[2]: Delete RDPExtension from WorkerRole1,WebRole1 + /// + + cloudService.Properties.ExtensionProfile.Extensions.Remove(rdpExtension); + rdpExtension.Properties.RolesAppliedTo = new List() { "WorkerRole2" }; + cloudService.Properties.ExtensionProfile.Extensions.Add(rdpExtension); + + getResponse = CreateCloudService_NoAsyncTracking( + rgName, + csName, + cloudService); + + ValidateCloudService(cloudService, getResponse, rgName, csName); + // Send the request + ValidateGetAndListResponseForMultiRole(rgName, csName, cloudService, roleNameToPropertiesMapping); + VerifyRDPResponse("WorkerRole2_IN_0", rgName, csName); + /// + /// Update[3]: Add MonitorExtension to all roles, + /// + cloudService.Properties.ExtensionProfile.Extensions.Remove(monitorExtension); + monitorExtension.Properties.RolesAppliedTo = new List() { "*" }; + cloudService.Properties.ExtensionProfile.Extensions.Add(monitorExtension); + + getResponse = CreateCloudService_NoAsyncTracking( + rgName, + csName, + cloudService); + + ValidateCloudService(cloudService, getResponse, rgName, csName); + // Send the request + ValidateGetAndListResponseForMultiRole(rgName, csName, cloudService, roleNameToPropertiesMapping); + + /// + /// Update[4]: Delete MonitorExtension from all roles + /// + + cloudService.Properties.ExtensionProfile.Extensions.Remove(monitorExtension); + + + getResponse = CreateCloudService_NoAsyncTracking( + rgName, + csName, + cloudService); + + ValidateCloudService(cloudService, getResponse, rgName, csName); + // Send the request + ValidateGetAndListResponseForMultiRole(rgName, csName, cloudService, roleNameToPropertiesMapping); + /// + /// Delete the CloudService + /// + + m_CrpClient.CloudServices.Delete(rgName, csName); + } + finally + { + // Fire and forget. No need to wait for RG deletion completion + try + { + m_ResourcesClient.ResourceGroups.BeginDelete(rgName); + } + catch (Exception e) + { + // Swallow this exception so that the original exception is thrown + Console.WriteLine(e); + } + } + } + } + + private void ValidateGetAndListResponseForMultiRole(string rgName, string csName, CloudService modelCloudService, Dictionary roleNameToPropertiesMapping, bool verifyRolesAppliedTo = false) + { + Assert.NotNull(modelCloudService); + Assert.NotNull(roleNameToPropertiesMapping); + + var returnedCloudService = m_CrpClient.CloudServices.Get(rgName, csName); + Assert.Equal(returnedCloudService.Properties.ProvisioningState, ProvisioningState.Succeeded); + ValidateCloudServiceRoleProfile(returnedCloudService.Properties.RoleProfile, modelCloudService.Properties.RoleProfile); + + if (modelCloudService.Properties.ExtensionProfile != null && modelCloudService.Properties.ExtensionProfile.Extensions.Count > 0) + { + VerifyExtensionsAreSame( + modelCloudService.Properties.ExtensionProfile.Extensions, + returnedCloudService.Properties.ExtensionProfile.Extensions, + verifyRolesAppliedTo: verifyRolesAppliedTo); // also verify rolesAppliedTo if required + } + + // Now verify by calling instances API to assert we have two instances + IPage cloudServiceRoleInstances = m_CrpClient.CloudServiceRoleInstances.List(rgName, csName); + + Dictionary expectedRoleInstanceNameMappedWithSkuName = new Dictionary(); + foreach (string roleName in roleNameToPropertiesMapping.Keys) + { + int roleInstanceCount = (int)roleNameToPropertiesMapping[roleName].InstanceCount; + for (int i = 0; i < roleInstanceCount; i++) + { + expectedRoleInstanceNameMappedWithSkuName.Add($"{roleName}_IN_{i}", roleNameToPropertiesMapping[roleName].RoleInstanceSize); + } + } + + VerifyCloudServiceRoleInstanceResponseMatchesExpected(cloudServiceRoleInstances, expectedRoleInstanceNameMappedWithSkuName); + } + + private void VerifyCloudServiceRoleInstanceResponseMatchesExpected(IPage roleInstanceList, Dictionary expectedRoleInstanceNameMappedWithSkuName) + { + Assert.NotNull(roleInstanceList); + Assert.True(expectedRoleInstanceNameMappedWithSkuName.Count == roleInstanceList.Count(), "CloudService RoleInstances count should match"); + + foreach (RoleInstance roleInstance in roleInstanceList) + { + Assert.True(expectedRoleInstanceNameMappedWithSkuName.ContainsKey(roleInstance.Name), "Returned RoleInstance Name should be present in Expected RoleInstance Names"); + Assert.True(expectedRoleInstanceNameMappedWithSkuName[roleInstance.Name] == roleInstance.Sku.Name, "RoleInstance Sku should match expected sku"); + expectedRoleInstanceNameMappedWithSkuName.Remove(roleInstance.Name); + } + } + + private void VerifyRDPResponse(string roleInstanceName, string rgName, string cloudServiceName) + { + //Call GetRemoteDesktopFile for RoleInstance: {roleInstanceName} of CloudService: {cloudServiceName}" + Stream rdpResponse = m_CrpClient.CloudServiceRoleInstances.GetRemoteDesktopFile(roleInstanceName, rgName, cloudServiceName); + Assert.True(rdpResponse.Length > 0, "ContentLength should be > 0."); + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/CloudServiceTests/CloudServiceOperatingSystemTests.cs b/sdk/compute/Microsoft.Azure.Management.Compute/tests/CloudServiceTests/CloudServiceOperatingSystemTests.cs new file mode 100644 index 0000000000000..8365162fdd925 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/CloudServiceTests/CloudServiceOperatingSystemTests.cs @@ -0,0 +1,50 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using Microsoft.Azure.Management.Compute; +using Microsoft.Azure.Management.Compute.Models; +using Microsoft.Rest.Azure; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using Xunit; + +namespace Compute.Tests +{ + public class CloudServiceOperatingSystemTests : CloudServiceTestsBase + { + [Fact] + [Trait("Name", "Test_CloudServiceOperatingSystemOperations")] + public void Test_CloudServiceOperatingSystemOperations() + { + using (MockContext context = MockContext.Start(this.GetType())) + { + EnsureClientsInitialized(context); + + // List OS versions by location + IPage osVersionsInLocation = m_CrpClient.CloudServiceOperatingSystems.ListOSVersions("westus2"); + + // Ensure result is not empty + Assert.NotEmpty(osVersionsInLocation); + + // Ensure results contain mandatory fields + Assert.DoesNotContain( + osVersionsInLocation, + x => string.IsNullOrWhiteSpace(x.Properties.Family) || + string.IsNullOrWhiteSpace(x.Properties.FamilyLabel) || + string.IsNullOrWhiteSpace(x.Properties.Version) || + string.IsNullOrWhiteSpace(x.Properties.Label)); + + // List OS families by location + IPage osFamiliesInLocation = m_CrpClient.CloudServiceOperatingSystems.ListOSFamilies("westus2"); + + // Ensure result is not empty + Assert.NotEmpty(osFamiliesInLocation); + + // Ensure results contain mandatory fields + Assert.DoesNotContain( + osFamiliesInLocation, + x => string.IsNullOrWhiteSpace(x.Properties.Name) || + string.IsNullOrWhiteSpace(x.Properties.Label)); + } + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/CloudServiceTests/CloudServiceOperationTests.cs b/sdk/compute/Microsoft.Azure.Management.Compute/tests/CloudServiceTests/CloudServiceOperationTests.cs new file mode 100644 index 0000000000000..849533b3c4041 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/CloudServiceTests/CloudServiceOperationTests.cs @@ -0,0 +1,270 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using Microsoft.Azure.Management.Compute; +using Microsoft.Azure.Management.Compute.Models; +using Microsoft.Azure.Management.Network.Models; +using Microsoft.Azure.Management.ResourceManager; +using Microsoft.Rest.Azure; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using System; +using System.Collections.Generic; +using System.Linq; +using Xunit; + +namespace Compute.Tests +{ + public class CloudServiceOperationTests : CloudServiceTestsBase + { + [Fact] + [Trait("Name", "Test_Create_PowerOff_Start_CloudServiceOperation")] + public void Test_Create_PowerOff_Start_CloudServiceOperation() + { + using (MockContext context = MockContext.Start(this.GetType())) + { + EnsureClientsInitialized(context); + + // Create resource group + var rgName = TestUtilities.GenerateName(TestPrefix); + var csName = TestUtilities.GenerateName("cs"); + string cloudServiceName = "HelloWorldTest_WebRole"; + string publicIPAddressName = TestUtilities.GenerateName("cspip"); + string vnetName = TestUtilities.GenerateName("csvnet"); + string subnetName = TestUtilities.GenerateName("subnet"); + string dnsName = TestUtilities.GenerateName("dns"); + string lbName = TestUtilities.GenerateName("lb"); + string lbfeName = TestUtilities.GenerateName("lbfe"); + + + try + { + CreateVirtualNetwork(rgName, vnetName, subnetName); + PublicIPAddress publicIPAddress = CreatePublicIP(publicIPAddressName, rgName, dnsName); + + // Define Configurations + List supportedRoleInstanceSizes = GetSupportedRoleInstanceSizes(); + Dictionary roleNameToPropertiesMapping = new Dictionary + { + { "HelloWorldTest1", new RoleConfiguration { InstanceCount = 1, RoleInstanceSize = supportedRoleInstanceSizes[0] } } + }; + + CloudService cloudService = GenerateCloudServiceWithNetworkProfile( + resourceGroupName: rgName, + serviceName: cloudServiceName, + cspkgSasUri: CreateCspkgSasUrl(rgName, WebRoleSasUri), + roleNameToPropertiesMapping: roleNameToPropertiesMapping, + publicIPAddressName: publicIPAddressName, + vnetName: vnetName, + subnetName: subnetName, + lbName: lbName, + lbFrontendName: lbfeName); + + CloudService getResponse = CreateCloudService_NoAsyncTracking( + rgName, + csName, + cloudService); + + //PowerOFf the cloudService and verify response + m_CrpClient.CloudServices.PowerOff(rgName, csName); + getResponse = m_CrpClient.CloudServices.Get(rgName, csName); + ValidateCloudService(cloudService, getResponse, rgName, csName); + + //Start the cloudService and verify response + m_CrpClient.CloudServices.Start(rgName, csName); + getResponse = m_CrpClient.CloudServices.Get(rgName, csName); + ValidateCloudService(cloudService, getResponse, rgName, csName); + + //Restart the cloudService + m_CrpClient.CloudServices.Restart(rgName, csName, new List { "*" }); + getResponse = m_CrpClient.CloudServices.Get(rgName, csName); + ValidateCloudService(cloudService, getResponse, rgName, csName); + + //Reimage the cloudService + m_CrpClient.CloudServices.Reimage(rgName, csName, new List { "*" }); + getResponse = m_CrpClient.CloudServices.Get(rgName, csName); + ValidateCloudService(cloudService, getResponse, rgName, csName); + + //Rebuild the cloudService + m_CrpClient.CloudServices.Rebuild(rgName, csName, new List { "*" }); + getResponse = m_CrpClient.CloudServices.Get(rgName, csName); + ValidateCloudService(cloudService, getResponse, rgName, csName); + + // Delete the cloud Service + m_CrpClient.CloudServices.Delete(rgName, csName); + } + finally + { + // Fire and forget. No need to wait for RG deletion completion + try + { + m_ResourcesClient.ResourceGroups.BeginDelete(rgName); + } + catch (Exception e) + { + // Swallow this exception so that the original exception is thrown + Console.WriteLine(e); + } + } + } + } + + [Fact] + [Trait("Name", "Test_ListCloudServicesOperation")] + public void Test_ListCloudServicesOperation() + { + using (MockContext context = MockContext.Start(this.GetType())) + { + EnsureClientsInitialized(context); + + // Create resource group + var rgName = TestUtilities.GenerateName(TestPrefix); + var rgName2 = TestUtilities.GenerateName(TestPrefix); + var csName1 = TestUtilities.GenerateName("cs"); + var csName2 = TestUtilities.GenerateName("cs"); + var csName3 = TestUtilities.GenerateName("cs"); + string cloudServiceName = "HelloWorldTest_WebRole"; + string publicIPAddressName = TestUtilities.GenerateName("cspip"); + string vnetName = TestUtilities.GenerateName("csvnet"); + string subnetName = TestUtilities.GenerateName("subnet"); + string dnsName = TestUtilities.GenerateName("dns"); + string lbName = TestUtilities.GenerateName("lb"); + string lbfeName = TestUtilities.GenerateName("lbfe"); + string publicIPAddressName2 = TestUtilities.GenerateName("cspip"); + string vnetName2 = TestUtilities.GenerateName("csvnet"); + string subnetName2 = TestUtilities.GenerateName("subnet"); + string dnsName2 = TestUtilities.GenerateName("dns"); + string lbName2 = TestUtilities.GenerateName("lb"); + string lbfeName2 = TestUtilities.GenerateName("lbfe"); + string publicIPAddressName3 = TestUtilities.GenerateName("cspip"); + string vnetName3 = TestUtilities.GenerateName("csvnet"); + string subnetName3 = TestUtilities.GenerateName("subnet"); + string dnsName3 = TestUtilities.GenerateName("dns"); + string lbName3 = TestUtilities.GenerateName("lb"); + string lbfeName3 = TestUtilities.GenerateName("lbfe"); + + + try + { + // Define Configurations + List supportedRoleInstanceSizes = GetSupportedRoleInstanceSizes(); + Dictionary roleNameToPropertiesMapping = new Dictionary + { + { "HelloWorldTest1", new RoleConfiguration { InstanceCount = 1, RoleInstanceSize = supportedRoleInstanceSizes[0] } } + }; + + string cspkgSasUri = CreateCspkgSasUrl(rgName, WebRoleSasUri); + // Create CS 1 + CreateVirtualNetwork(rgName, vnetName, subnetName); + CreatePublicIP(publicIPAddressName, rgName, dnsName); + CloudService cloudService1 = GenerateCloudServiceWithNetworkProfile( + resourceGroupName: rgName, + serviceName: cloudServiceName, + cspkgSasUri: cspkgSasUri, + roleNameToPropertiesMapping: roleNameToPropertiesMapping, + publicIPAddressName: publicIPAddressName, + vnetName: vnetName, + subnetName: subnetName, + lbName: lbName, + lbFrontendName: lbfeName); + CloudService getResponse1 = CreateCloudService_NoAsyncTracking( + rgName, + csName1, + cloudService1); + + // Create CS 2 + CreateVirtualNetwork(rgName, vnetName2, subnetName2); + CreatePublicIP(publicIPAddressName2, rgName, dnsName2); + CloudService cloudService2 = GenerateCloudServiceWithNetworkProfile( + resourceGroupName: rgName, + serviceName: cloudServiceName, + cspkgSasUri: cspkgSasUri, + roleNameToPropertiesMapping: roleNameToPropertiesMapping, + publicIPAddressName: publicIPAddressName2, + vnetName: vnetName2, + subnetName: subnetName2, + lbName: lbName2, + lbFrontendName: lbfeName2); + CloudService getResponse2 = CreateCloudService_NoAsyncTracking( + rgName, + csName2, + cloudService2); + + // List By ResourceGroup + IPage cloudServiceListInRG = m_CrpClient.CloudServices.List(rgName); + Assert.True(cloudServiceListInRG.Count() == 2, "Returned CloudService list does not have two CloudServices"); + Assert.Null(cloudServiceListInRG.NextPageLink); + foreach (CloudService cs in cloudServiceListInRG) + { + Assert.True(cs.Name == csName1 || cs.Name == csName2); + ValidateCloudService(cs.Name == csName1 ? cloudService1 : cloudService2, cs, rgName, cs.Name); + } + + // Create resources in RG 2 + CreateVirtualNetwork(rgName2, vnetName3, subnetName3); + CreatePublicIP(publicIPAddressName3, rgName2, dnsName3); + + // Create CS 3 + CloudService cloudService3 = GenerateCloudServiceWithNetworkProfile( + resourceGroupName: rgName2, + serviceName: cloudServiceName, + cspkgSasUri: cspkgSasUri, + roleNameToPropertiesMapping: roleNameToPropertiesMapping, + publicIPAddressName: publicIPAddressName3, + vnetName: vnetName3, + subnetName: subnetName3, + lbName: lbName3, + lbFrontendName: lbfeName3); + + CloudService getResponse3 = CreateCloudService_NoAsyncTracking( + rgName2, + csName3, + cloudService3); + + // List By Subscription + IPage cloudServiceListInSub = m_CrpClient.CloudServices.ListAll(); + Assert.NotNull(cloudServiceListInSub.NextPageLink); + int count = 0; + while (count < 3) + { + foreach (CloudService cs in cloudServiceListInSub) + { + if (cs.Name == csName1 || cs.Name == csName2 || cs.Name == csName3) + { + ValidateCloudService(cs.Name == csName1 ? cloudService1 : cs.Name == csName2 ? cloudService2 : cloudService3, cs, + cs.Name == csName1 || cs.Name == csName2 ? rgName : rgName2, cs.Name); + count++; + } + } + if (cloudServiceListInSub.NextPageLink != null) + { + cloudServiceListInSub = m_CrpClient.CloudServices.ListAllNext(cloudServiceListInSub.NextPageLink); + } + else + { + break; + } + } + + // Assert that all 3 CS has been returned + Assert.True(count == 3); + + } + finally + { + // Fire and forget. No need to wait for RG deletion completion + try + { + m_ResourcesClient.ResourceGroups.BeginDelete(rgName); + m_ResourcesClient.ResourceGroups.BeginDelete(rgName2); + } + catch (Exception e) + { + // Swallow this exception so that the original exception is thrown + Console.WriteLine(e); + } + } + } + } + + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/CloudServiceTests/CloudServiceRoleInstanceTests.cs b/sdk/compute/Microsoft.Azure.Management.Compute/tests/CloudServiceTests/CloudServiceRoleInstanceTests.cs new file mode 100644 index 0000000000000..09afe3a1acbc1 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/CloudServiceTests/CloudServiceRoleInstanceTests.cs @@ -0,0 +1,115 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System; +using System.Collections.Generic; +using System.Linq; +using Microsoft.Azure.Management.Compute; +using Microsoft.Azure.Management.Compute.Models; +using Microsoft.Azure.Management.Network.Models; +using Microsoft.Azure.Management.ResourceManager; +using Microsoft.Rest.Azure; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using Xunit; + +namespace Compute.Tests +{ + public class CloudServiceRoleInstanceTests : CloudServiceTestsBase + { + [Fact] + [Trait("Name", "Test_CloudServiceRoleInstanceOperations")] + public void Test_CloudServiceRoleInstanceOperations() + { + using (MockContext context = MockContext.Start(this.GetType())) + { + EnsureClientsInitialized(context); + + // Create resource group + var rgName = TestUtilities.GenerateName(TestPrefix); + var csName = TestUtilities.GenerateName("cs"); + string cloudServiceName = "HelloWorldTest_WebRole"; + string publicIPAddressName = TestUtilities.GenerateName("cspip"); + string vnetName = TestUtilities.GenerateName("csvnet"); + string subnetName = TestUtilities.GenerateName("subnet"); + string dnsName = TestUtilities.GenerateName("dns"); + string lbName = TestUtilities.GenerateName("lb"); + string lbfeName = TestUtilities.GenerateName("lbfe"); + + + try + { + CreateVirtualNetwork(rgName, vnetName, subnetName); + PublicIPAddress publicIPAddress = CreatePublicIP(publicIPAddressName, rgName, dnsName); + + // Define Configurations + List supportedRoleInstanceSizes = GetSupportedRoleInstanceSizes(); + Dictionary roleNameToPropertiesMapping = new Dictionary + { + { "HelloWorldTest1", new RoleConfiguration { InstanceCount = 2, RoleInstanceSize = supportedRoleInstanceSizes[0] } } + }; + + CloudService cloudService = GenerateCloudServiceWithNetworkProfile( + resourceGroupName: rgName, + serviceName: cloudServiceName, + cspkgSasUri: CreateCspkgSasUrl(rgName, WebRoleSasUri), + roleNameToPropertiesMapping: roleNameToPropertiesMapping, + publicIPAddressName: publicIPAddressName, + vnetName: vnetName, + subnetName: subnetName, + lbName: lbName, + lbFrontendName: lbfeName); + + CloudService getResponse = CreateCloudService_NoAsyncTracking( + rgName, + csName, + cloudService); + + string roleInstanceName = getResponse.Properties.RoleProfile.Roles[0].Name + "_IN_0"; + //Get the roleInstance + var roleInstance = m_CrpClient.CloudServiceRoleInstances.Get(roleInstanceName, rgName, csName); + verifyRoleInstance(roleInstanceName, supportedRoleInstanceSizes[0], roleInstance); + + //Get the roleInstance InstanceView + var roleInstanceInstanceView = m_CrpClient.CloudServiceRoleInstances.GetInstanceView(roleInstanceName, rgName, csName); + verifyRoleInstanceInstanceView(roleInstanceInstanceView); + + //Restart the roleInstance and verify response + m_CrpClient.CloudServiceRoleInstances.Restart(roleInstanceName, rgName, csName); + roleInstance = m_CrpClient.CloudServiceRoleInstances.Get(roleInstanceName, rgName, csName); + verifyRoleInstance(roleInstanceName, supportedRoleInstanceSizes[0], roleInstance); + + //Reimage the roleInstance and verify response + m_CrpClient.CloudServiceRoleInstances.Reimage(roleInstanceName, rgName, csName); + roleInstance = m_CrpClient.CloudServiceRoleInstances.Get(roleInstanceName, rgName, csName); + verifyRoleInstance(roleInstanceName, supportedRoleInstanceSizes[0], roleInstance); + + //Rebuild the roleInstance and verify response + m_CrpClient.CloudServiceRoleInstances.Rebuild(roleInstanceName, rgName, csName); + roleInstance = m_CrpClient.CloudServiceRoleInstances.Get(roleInstanceName, rgName, csName); + verifyRoleInstance(roleInstanceName, supportedRoleInstanceSizes[0], roleInstance); + + //Delete the RoleInstance + m_CrpClient.CloudServiceRoleInstances.Delete(roleInstanceName, rgName, csName); + IPage roleInstanceList = m_CrpClient.CloudServiceRoleInstances.List(rgName, csName); + Assert.True(roleInstanceList.Count() == 1, "Returned CloudService does not have 1 RoleInstance. Postcondition failed."); + + // Delete the cloud Service + m_CrpClient.CloudServices.Delete(rgName, csName); + } + finally + { + // Fire and forget. No need to wait for RG deletion completion + try + { + m_ResourcesClient.ResourceGroups.BeginDelete(rgName); + } + catch (Exception e) + { + // Swallow this exception so that the original exception is thrown + Console.WriteLine(e); + } + } + } + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/CloudServiceTests/CloudServiceScenarioTests.cs b/sdk/compute/Microsoft.Azure.Management.Compute/tests/CloudServiceTests/CloudServiceScenarioTests.cs new file mode 100644 index 0000000000000..b9ee2c1d49bd5 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/CloudServiceTests/CloudServiceScenarioTests.cs @@ -0,0 +1,157 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System; +using System.Collections.Generic; +using Microsoft.Azure.Management.Compute; +using Microsoft.Azure.Management.Compute.Models; +using Microsoft.Azure.Management.Network.Models; +using Microsoft.Azure.Management.ResourceManager; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using Xunit; + +namespace Compute.Tests +{ + public class CloudServiceScenarioTests : CloudServiceTestsBase + { + /// + /// Covers following Operations: + /// Create RG + /// Create Virtual Network + /// Create Network Resources + /// Create CloudService + /// Get CloudService + /// Get CloudService Instance View + /// List CloudService in a RG + /// Delete CloudService + /// Delete RG + /// + [Fact] + [Trait("Name", "TestCloudServiceScenarioOperations")] + public void TestCloudServiceScenarioOperations() + { + using (MockContext context = MockContext.Start(this.GetType())) + { + TestCloudServiceOperationsInternal(context); + } + + } + + [Fact] + [Trait("Name", "TestCloudServiceScenarioOperations_DeleteCloudService")] + public void TestCloudServiceScenarioOperations_DeleteCloudService() + { + using (MockContext context = MockContext.Start(this.GetType())) + { + TestCloudServiceOperationsInternal(context, deleteAsPartOfTest: true); + } + } + + [Fact] + [Trait("Name", "TestCloudServiceScenarioOperations_ExtensionProfile")] + public void TestCloudServiceScenarioOperations_ExtensionProfile() + { + using (MockContext context = MockContext.Start(this.GetType())) + { + TestCloudServiceOperationsInternal(context, extensionProfile: new CloudServiceExtensionProfile() + { + Extensions = new List() { CreateRDPExtension("RDPExtension") } + }); + } + } + + [Fact] + [Trait("Name", "TestCloudServiceScenarioOperations_InstanceView")] + public void TestCloudServiceScenarioOperations_InstanceView() + { + using (MockContext context = MockContext.Start(this.GetType())) + { + TestCloudServiceOperationsInternal(context, validateInstanceView: true); + } + } + + private void TestCloudServiceOperationsInternal(MockContext context, CloudServiceExtensionProfile extensionProfile = null, bool validateInstanceView = false, bool deleteAsPartOfTest = false) + { + EnsureClientsInitialized(context); + + // Create resource group + var rgName = TestUtilities.GenerateName(TestPrefix); + var csName = TestUtilities.GenerateName("cs"); + string cloudServiceName = "TestCloudServiceMultiRole"; + string publicIPAddressName = TestUtilities.GenerateName("cspip"); + string vnetName = TestUtilities.GenerateName("csvnet"); + string subnetName = TestUtilities.GenerateName("subnet"); + string dnsName = TestUtilities.GenerateName("dns"); + string lbName = TestUtilities.GenerateName("lb"); + string lbfeName = TestUtilities.GenerateName("lbfe"); + + try + { + CreateVirtualNetwork(rgName, vnetName, subnetName); + PublicIPAddress publicIPAddress = CreatePublicIP(publicIPAddressName, rgName, dnsName); + + /// + /// Create: Create a multi-role CloudService with 2 WorkerRoles and 1 WebRole + /// + + // Define Configurations + List supportedRoleInstanceSizes = GetSupportedRoleInstanceSizes(); + Dictionary roleNameToPropertiesMapping = new Dictionary + { + { "WorkerRole1", new RoleConfiguration { InstanceCount = 1, RoleInstanceSize = supportedRoleInstanceSizes[0] } }, + { "WorkerRole2", new RoleConfiguration { InstanceCount = 1, RoleInstanceSize = supportedRoleInstanceSizes[1] } }, + { "WebRole1", new RoleConfiguration { InstanceCount = 2, RoleInstanceSize = supportedRoleInstanceSizes[3] } } + }; + + // Generate the request + CloudService cloudService = GenerateCloudServiceWithNetworkProfile( + resourceGroupName: rgName, + serviceName: cloudServiceName, + cspkgSasUri: CreateCspkgSasUrl(rgName, MultiRole2Worker1WebRolesPackageSasUri), + roleNameToPropertiesMapping: roleNameToPropertiesMapping, + publicIPAddressName: publicIPAddressName, + vnetName: vnetName, + subnetName: subnetName, + lbName: lbName, + lbFrontendName: lbfeName); + if (extensionProfile != null) + { + cloudService.Properties.ExtensionProfile = extensionProfile; + } + + CloudService getResponse = CreateCloudService_NoAsyncTracking( + rgName, + csName, + cloudService); + + if (validateInstanceView) + { + var getInstanceViewResponse = m_CrpClient.CloudServices.GetInstanceView(rgName, csName); + Assert.NotNull(getInstanceViewResponse); + ValidateCloudServiceInstanceView(cloudService, getInstanceViewResponse); + } + + /// + /// Delete the CloudService + /// + if (deleteAsPartOfTest) + { + m_CrpClient.CloudServices.Delete(rgName, csName); + } + } + finally + { + // Fire and forget. No need to wait for RG deletion completion + try + { + m_ResourcesClient.ResourceGroups.BeginDelete(rgName); + } + catch (Exception e) + { + // Swallow this exception so that the original exception is thrown + Console.WriteLine(e); + } + } + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/CloudServiceTests/CloudServiceTestsBase.cs b/sdk/compute/Microsoft.Azure.Management.Compute/tests/CloudServiceTests/CloudServiceTestsBase.cs new file mode 100644 index 0000000000000..8981a29449067 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/CloudServiceTests/CloudServiceTestsBase.cs @@ -0,0 +1,501 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Text; +using System.Text.RegularExpressions; +using System.Xml; +using Microsoft.Azure.Management.Compute; +using Microsoft.Azure.Management.Compute.Models; +using Microsoft.Azure.Management.Network; +using Microsoft.Azure.Management.Network.Models; +using Microsoft.Azure.Management.ResourceManager; +using Microsoft.Azure.Management.ResourceManager.Models; +using Microsoft.Azure.Management.Storage.Models; +using Microsoft.Azure.Test.HttpRecorder; +using Microsoft.IdentityModel.Clients.ActiveDirectory; +using Microsoft.Rest.Azure; +using Microsoft.WindowsAzure.Storage; +using Microsoft.WindowsAzure.Storage.Auth; +using Microsoft.WindowsAzure.Storage.Blob; +using Newtonsoft.Json; +using Newtonsoft.Json.Linq; +using Xunit; +using CM = Microsoft.Azure.Management.Compute.Models; + +namespace Compute.Tests +{ + public class CloudServiceTestsBase : VMTestBase, IDisposable + + + { + public string originalLocation; + public const string MultiRole2Worker1WebRolesPackageSasUri = "TestCloudServiceMultiRole_WorkerRole1(Standard_D2_v2)(1)_WorkerRole2(Standard_D1_v2)(1)_WebRole1(Standard_A2_v2)(2).cspkg"; + public const string MultiRole1Worker1WebRolesPackageSasUri = "TestCloudServiceMultiRole_WorkerRole2(Standard_D2_v2)(1)_WebRole1(Standard_A2_v2)(1).cspkg"; + public const string WebRoleSasUri = "HelloWorldTest_WebRole_D2_V2.cspkg"; + public const string WorkerRoleWithInputEndpointSasUri = "HelloWorldWorker_Standard_D2_v2.cspkg"; + public const string RPType = "Microsoft.Compute/cloudServices"; + + public CloudServiceTestsBase() + { + originalLocation = Environment.GetEnvironmentVariable("AZURE_VM_TEST_LOCATION"); + Environment.SetEnvironmentVariable("AZURE_VM_TEST_LOCATION", "eastus2"); + } + + public void Dispose() + { + Environment.SetEnvironmentVariable("AZURE_VM_TEST_LOCATION", originalLocation); + } + public static Extension CreateExtension(string name, string publisher, string type, string version, string forceUpdateTag = null, + bool autoUpgrade = false, bool enableAutomaticUpgrade = false, string publicConfig = null, string privateConfig = null, List roleAppliedTo = null) + { + return new Extension + { + Name = name, + Properties = new CloudServiceExtensionProperties + { + Publisher = publisher, + Type = type, + TypeHandlerVersion = version, + AutoUpgradeMinorVersion = autoUpgrade, + Settings = publicConfig, + ProtectedSettings = privateConfig, + RolesAppliedTo = roleAppliedTo, + } + }; + } + + public static Extension CreateRDPExtension(string name) + { + string rdpExtensionPublicConfig = "" + + "adminRdpTest" + + "2021-10-27T23:59:59" + + ""; + string rdpExtensionPrivateConfig = "" + + "VsmrdpTest!" + + ""; + + return CreateExtension(name, "Microsoft.Windows.Azure.Extensions", "RDP", "1.2.1", autoUpgrade: true, + publicConfig: rdpExtensionPublicConfig, + privateConfig: rdpExtensionPrivateConfig); + + } + + protected string CreateCspkgSasUrl(string rgName, string fileName) + { + string storageAccountName = ComputeManagementTestUtilities.GenerateName("saforcspkg"); + string asName = ComputeManagementTestUtilities.GenerateName("asforcspkg"); + StorageAccount storageAccountOutput = CreateStorageAccount(rgName, storageAccountName); // resource group is also created in this method. + string applicationMediaLink = @"https://saforcspkg1969.blob.core.windows.net/sascontainer/" + fileName; + if (HttpMockServer.Mode == HttpRecorderMode.Record) + { + var accountKeyResult = m_SrpClient.StorageAccounts.ListKeysWithHttpMessagesAsync(rgName, storageAccountName).Result; + CloudStorageAccount storageAccount = new CloudStorageAccount(new StorageCredentials(storageAccountName, accountKeyResult.Body.Key1), useHttps: true); + + var blobClient = storageAccount.CreateCloudBlobClient(); + CloudBlobContainer container = blobClient.GetContainerReference("sascontainer"); + container.CreateIfNotExistsAsync().Wait(); + + CloudBlockBlob blockBlob = container.GetBlockBlobReference(fileName); + blockBlob.UploadFromFileAsync(Path.Combine(Directory.GetCurrentDirectory(), "Resources", fileName)).Wait(); + + SharedAccessBlobPolicy sasConstraints = new SharedAccessBlobPolicy(); + sasConstraints.SharedAccessStartTime = DateTime.UtcNow.AddDays(-1); + sasConstraints.SharedAccessExpiryTime = DateTime.UtcNow.AddDays(2); + sasConstraints.Permissions = SharedAccessBlobPermissions.Read | SharedAccessBlobPermissions.Write; + + //Generate the shared access signature on the blob, setting the constraints directly on the signature. + string sasContainerToken = blockBlob.GetSharedAccessSignature(sasConstraints); + + //Return the URI string for the container, including the SAS token. + applicationMediaLink = blockBlob.Uri + sasContainerToken; + } + return applicationMediaLink; + } + + public CloudService CreateCloudService_NoAsyncTracking( + string rgName, + string csName, + CloudService cloudService) + { + + var createOrUpdateResponse = CreateCloudServiceGetOperationResponse(rgName, + csName, + cloudService); + ValidateCloudService(cloudService, createOrUpdateResponse, rgName, csName); + + // Validate Get response + var getResponse = m_CrpClient.CloudServices.Get(rgName, csName); + ValidateCloudService(cloudService, getResponse, rgName, csName); + + return getResponse; + + } + + protected void UpdateCloudService(string rgName, string csName, CloudService cloudService) + { + var createOrUpdateResponse = m_CrpClient.CloudServices.CreateOrUpdate(rgName, csName, cloudService); + } + + private CloudService CreateCloudServiceGetOperationResponse( + string rgName, + string csName, + CloudService cloudService) + { + // Create the resource Group, it might have been already created during StorageAccount creation. + var resourceGroup = m_ResourcesClient.ResourceGroups.CreateOrUpdate( + rgName, + new ResourceGroup + { + Location = m_location + }); + + CloudService createOrUpdateResponse = m_CrpClient.CloudServices.CreateOrUpdate(rgName, csName, cloudService); + + Assert.True(createOrUpdateResponse.Name == csName); + Assert.True(createOrUpdateResponse.Location.ToLower() == cloudService.Location.ToLower().Replace(" ", "")); + + return createOrUpdateResponse; + } + + protected void ValidateCloudServiceInstanceView(CloudService cloudService, + CloudServiceInstanceView cloudServiceInstanceView) + { + Assert.NotNull(cloudServiceInstanceView.Statuses); + Assert.NotNull(cloudServiceInstanceView); + } + + protected void ValidateCloudServiceNetworkProfile(CloudServiceNetworkProfile cloudService, CloudServiceNetworkProfile cloudServiceOut) + { + // Placeholder to validate NetworkProfile. + } + + internal void VerifyExtensionsAreSame(IList expectedExtensions, IList actualExtensions, bool verifyRolesAppliedTo = false) + { + Assert.True(expectedExtensions.Count == actualExtensions.Count, "Number of extensions should be match"); + Dictionary expectedExtensionMap = expectedExtensions.ToDictionary(e => e.Name, e => e); + HashSet visitedExtension = new HashSet(); + foreach (Extension actualExtension in actualExtensions) + { + Assert.True(visitedExtension.Add(actualExtension.Name), $"Found duplicate extension name {actualExtension.Name} in VSM which is not allowed"); + Assert.True(actualExtension.Properties.ProvisioningState == Microsoft.Azure.Management.Network.Models.ProvisioningState.Succeeded, "provisioningState should be match"); + Assert.True(expectedExtensionMap.ContainsKey(actualExtension.Name), $"Extension {actualExtension.Name} didn't exist in the expectedExtensionMap"); + Extension expectedExtension = expectedExtensionMap[actualExtension.Name]; + Assert.True(expectedExtension.Properties.AutoUpgradeMinorVersion == actualExtension.Properties.AutoUpgradeMinorVersion, "autoUpgradeMinorVersion setting should be same"); + Assert.True(expectedExtension.Properties.Publisher == actualExtension.Properties.Publisher, "publisher setting should be same"); + Assert.True(expectedExtension.Properties.Type == actualExtension.Properties.Type, "extension type should be same"); + + if (verifyRolesAppliedTo) + { + Assert.Equal(expectedExtension.Properties.RolesAppliedTo ?? new List() { "*" }, actualExtension.Properties.RolesAppliedTo); + } + } + } + + protected void ValidateCloudServiceRoleProfile(CloudServiceRoleProfile cloudServiceRoleProfile, CloudServiceRoleProfile returnedCloudServiceRoleProfile) + { + Assert.True(returnedCloudServiceRoleProfile.Roles.Count == cloudServiceRoleProfile.Roles.Count, "Role count must match in the Input Model and Returned Model"); + + Dictionary modelRolesToSkuMapping = new Dictionary(); + foreach (var role in returnedCloudServiceRoleProfile.Roles) + { + modelRolesToSkuMapping.Add(role.Name, role.Sku); + } + + foreach (var role in cloudServiceRoleProfile.Roles) + { + Assert.True(modelRolesToSkuMapping.ContainsKey(role.Name), "Returned Role should be present in Input Model Role"); + Assert.Equal(role.Sku.Name, modelRolesToSkuMapping[role.Name].Name, StringComparer.OrdinalIgnoreCase); + Assert.Equal(role.Sku.Capacity, modelRolesToSkuMapping[role.Name].Capacity); + modelRolesToSkuMapping.Remove(role.Name); + } + } + + protected void ValidateCloudService(CloudService cloudService, CloudService cloudServiceOut, string rgName, string csName) + { + Assert.Equal(cloudServiceOut.Type, string.Format("{0}/{1}", ApiConstants.ResourceProviderNamespace, ApiConstants.CloudServices)); + Assert.Equal(Helpers.GetCloudServiceReferenceId(m_subId, rgName, csName), cloudServiceOut.Id, StringComparer.OrdinalIgnoreCase); + Assert.NotNull(cloudServiceOut.Properties); + Assert.True(!string.IsNullOrEmpty(cloudServiceOut.Properties.ProvisioningState)); + Assert.Null(cloudServiceOut.Properties.PackageUrl); + Assert.NotNull(cloudServiceOut.Properties.Configuration); + Assert.NotNull(cloudServiceOut.Properties.UpgradeMode); + + if (cloudService.Properties.ExtensionProfile != null && + cloudService.Properties.ExtensionProfile.Extensions.Any()) + { + foreach (var vmExtension in cloudService.Properties.ExtensionProfile.Extensions) + { + var vmExt = cloudServiceOut.Properties.ExtensionProfile.Extensions.FirstOrDefault(s => String.Compare(s.Name, vmExtension.Name, StringComparison.OrdinalIgnoreCase) == 0); + Assert.NotNull(vmExt); + } + } + + if (cloudService.Properties.NetworkProfile != null) + { + ValidateCloudServiceNetworkProfile(cloudService.Properties.NetworkProfile, cloudServiceOut.Properties.NetworkProfile); + } + else + { + Assert.True((cloudServiceOut.Properties.NetworkProfile == null)); + } + + if (cloudService.Properties.RoleProfile != null) + { + ValidateCloudServiceRoleProfile(cloudService.Properties.RoleProfile, cloudServiceOut.Properties.RoleProfile); + } + else + { + Assert.True((cloudServiceOut.Properties.RoleProfile == null)); + } + + } + + protected VirtualNetwork CreateVirtualNetwork(string resourceGroupName, string vnetName, string subnetName) + { + try + { + // Create the resource Group. + var resourceGroup = m_ResourcesClient.ResourceGroups.CreateOrUpdate( + resourceGroupName, + new ResourceGroup + { + Location = m_location, + Tags = new Dictionary() { { resourceGroupName, DateTime.UtcNow.ToString("u") } } + }); + VirtualNetwork vnetParams = GenerateVnetModel(vnetName, subnetName); + return m_NrpClient.VirtualNetworks.CreateOrUpdate(resourceGroupName, vnetName, vnetParams); + } + catch + { + m_ResourcesClient.ResourceGroups.Delete(resourceGroupName); + throw; + } + + } + + public void verifyRoleInstance(string roleInstanceName, string roleInstanceSKU, RoleInstance returnedRoleInstance) + { + Assert.NotNull(returnedRoleInstance); + Assert.True(roleInstanceName == returnedRoleInstance.Name); + Assert.True(returnedRoleInstance.Sku.Name == roleInstanceSKU); + Assert.NotNull(returnedRoleInstance.Properties.NetworkProfile); + } + + public void verifyRoleInstanceInstanceView(RoleInstanceInstanceView returnedRoleInstance) + { + Assert.NotNull(returnedRoleInstance); + Assert.NotNull(returnedRoleInstance); + Assert.NotNull(returnedRoleInstance.Statuses); + Assert.NotNull(returnedRoleInstance.PlatformFaultDomain); + Assert.NotNull(returnedRoleInstance.PlatformUpdateDomain); + } + + protected PublicIPAddress CreatePublicIP(string publicIPAddressName, string resourceGroupName, string dnsName) + { + PublicIPAddress publicIPAddressParams = GeneratePublicIPAddressModel(publicIPAddressName, dnsName); + PublicIPAddress publicIpAddress = m_NrpClient.PublicIPAddresses.CreateOrUpdate(resourceGroupName, publicIPAddressName, publicIPAddressParams); + return publicIpAddress; + } + + protected PublicIPAddress GeneratePublicIPAddressModel(string publicIPAddressName, string dnsName) + { + PublicIPAddress publicIPAddressParams = new PublicIPAddress(name: publicIPAddressName) + { + Location = m_location, + PublicIPAllocationMethod = IPAllocationMethod.Dynamic, + DnsSettings = new PublicIPAddressDnsSettings() + { + DomainNameLabel = dnsName + } + }; + + return publicIPAddressParams; + } + protected CloudService GenerateCloudServiceWithNetworkProfile(string resourceGroupName, string serviceName, string cspkgSasUri, string vnetName, string subnetName, string lbName, string lbFrontendName, Dictionary roleNameToPropertiesMapping, string publicIPAddressName) + { + CloudService cloudService = GenerateCloudService(serviceName, cspkgSasUri, vnetName, subnetName, roleNameToPropertiesMapping); + cloudService.Properties.NetworkProfile = GenerateNrpCloudServiceNetworkProfile(publicIPAddressName, resourceGroupName, lbName, lbFrontendName); + return cloudService; + } + + protected CloudService GenerateCloudService(string serviceName, + string cspkgSasUri, + string vnetName, + string subnetName, + Dictionary roleNameToPropertiesMapping, + CloudServiceVaultSecretGroup vaultGroup = null, + List cscfgCerts = null, + ServiceConfigurationRoleSecurityConfigurations securityConfigurations = null, + List extensions = null) + { + CloudService cloudService = new CloudService + { + Properties = new CloudServiceProperties + { + RoleProfile = new CloudServiceRoleProfile() + { + Roles = GenerateRoles(roleNameToPropertiesMapping) + }, + Configuration = GenerateBase64EncodedCscfgWithNetworkConfiguration(serviceName, roleNameToPropertiesMapping, vnetName, subnetName, null, cscfgCerts, securityConfigurations), + PackageUrl = cspkgSasUri + }, + Location = m_location + }; + if (vaultGroup != null) + { + cloudService.Properties.OsProfile = + new CloudServiceOsProfile + { + Secrets = new List + { + vaultGroup + } + }; + } + + if (extensions != null) + { + cloudService.Properties.ExtensionProfile = new CloudServiceExtensionProfile + { + Extensions = extensions + }; + } + return cloudService; + } + + protected static string GenerateBase64EncodedCscfgWithNetworkConfiguration(string serviceName, + Dictionary roleNameToPropertiesMapping, + string vNetName, + string subnetName, + ServiceConfigurationNetworkConfigurationAddressAssignmentsReservedIPs reservedIPs = null, + List cscfgCerts = null, + ServiceConfigurationRoleSecurityConfigurations securityConfigurations = null, + int osFamily = 5, + Setting[] serviceSettings = null) + { + string cscfgPlainText = ServiceConfigurationHelpers.GenerateServiceConfiguration( + serviceName: serviceName, + osFamily: osFamily, + osVersion: "*", + roleNameToPropertiesMapping: roleNameToPropertiesMapping, + schemaVersion: "2015-04.2.6", + vNetName: vNetName, + subnetName: subnetName, + reservedIPs: reservedIPs, + certificates: cscfgCerts, + securityConfigurations: securityConfigurations, + serviceSettings: serviceSettings + ); + + return cscfgPlainText; + } + + protected static List GenerateRoles(Dictionary roleNameToPropertiesMapping) + { + List roles = new List(); + + foreach (string roleName in roleNameToPropertiesMapping.Keys) + { + roles.Add(new CloudServiceRoleProfileProperties() + { + Name = roleName, + Sku = new CloudServiceRoleSku + { + Name = roleNameToPropertiesMapping[roleName].RoleInstanceSize, + Capacity = roleNameToPropertiesMapping[roleName].InstanceCount, + Tier = roleNameToPropertiesMapping[roleName].RoleInstanceSize.IndexOf("_", StringComparison.InvariantCulture) != -1 ? roleNameToPropertiesMapping[roleName].RoleInstanceSize.Substring(0, roleNameToPropertiesMapping[roleName].RoleInstanceSize.IndexOf("_")) : null + } + }); + } + + return roles; + } + + protected CloudServiceNetworkProfile GenerateNrpCloudServiceNetworkProfile(string publicIPAddressName, string resourceGroupName, string lbName, string lbFrontEndName) + { + var feipConfig = GenerateFrontEndIpConfigurationModel(publicIPAddressName, resourceGroupName, lbFrontEndName); + CloudServiceNetworkProfile cloudServiceNetworkProfile = new CloudServiceNetworkProfile() + { + LoadBalancerConfigurations = new List() + { + new LoadBalancerConfiguration() + { + Name = lbName, + Properties = new LoadBalancerConfigurationProperties() + { + FrontendIPConfigurations = new List() + { + feipConfig + } + } + } + } + }; + + return cloudServiceNetworkProfile; + } + + protected LoadBalancerFrontendIPConfiguration GenerateFrontEndIpConfigurationModel(string publicIPAddressName, string resourceGroupName, string lbFrontEndName) + { + LoadBalancerFrontendIPConfiguration feipConfiguration = + new LoadBalancerFrontendIPConfiguration() + { + Name = lbFrontEndName, + Properties = new LoadBalancerFrontendIPConfigurationProperties() + { + PublicIPAddress = new CM.SubResource() + { + Id = $"/subscriptions/{m_subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPAddresses/{publicIPAddressName}", + } + } + }; + + return feipConfiguration; + } + + protected VirtualNetwork GenerateVnetModel(string vnetName, string subnetName) + { + VirtualNetwork vnet = new VirtualNetwork(name: vnetName) + { + AddressSpace = new AddressSpace + { + AddressPrefixes = new List { "10.0.0.0/16" } + }, + Subnets = new List + { + new Subnet(name: subnetName) + { + AddressPrefix = "10.0.0.0/24" + } + }, + Location = m_location + }; + + return vnet; + } + + public class RoleConfiguration + { + public uint InstanceCount { get; set; } + + public string RoleInstanceSize { get; set; } + + public Dictionary Settings { get; set; } + } + + /// + /// Returns a List of supported RoleInstance Sizes based on the environment. + /// Note: The ordering of the List is important as all tests will have size dependency in their CSPKG. + /// By Default most tests have dependency on ""Standard_D2_v2" for Prod regions. + /// + internal static List GetSupportedRoleInstanceSizes() + { + return new List { "Standard_D2_v2", "Standard_D1_v2", "Standard_A1", "Standard_A2_v2" }; + } + + } +} \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/CloudServiceTests/CloudServiceUpdateTests.cs b/sdk/compute/Microsoft.Azure.Management.Compute/tests/CloudServiceTests/CloudServiceUpdateTests.cs new file mode 100644 index 0000000000000..488bd2f63a65d --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/CloudServiceTests/CloudServiceUpdateTests.cs @@ -0,0 +1,300 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System; +using System.Collections.Generic; +using System.Linq; +using Microsoft.Azure.Management.Compute; +using Microsoft.Azure.Management.Compute.Models; +using Microsoft.Azure.Management.Network.Models; +using Microsoft.Azure.Management.ResourceManager; +using Microsoft.Rest.Azure; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using Xunit; + +namespace Compute.Tests +{ + public class CloudServiceUpdateTests : CloudServiceTestsBase + { + /// + /// Covers following Operations: + /// Create RG + /// Create Network Resources + /// Create CloudService + /// Update CloudService + /// Delete CloudService + /// Delete RG + /// + [Fact] + [Trait("Name", "TestCloudServiceUpdateOperations")] + public void TestCloudServiceUpdateOperations() + { + using (MockContext context = MockContext.Start(this.GetType())) + { + EnsureClientsInitialized(context); + + // Create resource group + var rgName = TestUtilities.GenerateName(TestPrefix); + var csName = TestUtilities.GenerateName("cs"); + string cloudServiceName = "TestCloudServiceMultiRole"; + string publicIPAddressName = TestUtilities.GenerateName("cspip"); + string vnetName = TestUtilities.GenerateName("csvnet"); + string subnetName = TestUtilities.GenerateName("subnet"); + string dnsName = TestUtilities.GenerateName("dns"); + string lbName = TestUtilities.GenerateName("lb"); + string lbfeName = TestUtilities.GenerateName("lbfe"); + + + try + { + CreateVirtualNetwork(rgName, vnetName, subnetName); + PublicIPAddress publicIPAddress = CreatePublicIP(publicIPAddressName, rgName, dnsName); + + /// + /// Create: Create a multi-role CloudService with 2 WorkerRoles and 1 WebRole + /// + + // Define Configurations + List supportedRoleInstanceSizes = GetSupportedRoleInstanceSizes(); + Dictionary roleNameToPropertiesMapping = new Dictionary + { + { "WorkerRole1", new RoleConfiguration { InstanceCount = 1, RoleInstanceSize = supportedRoleInstanceSizes[0] } }, + { "WorkerRole2", new RoleConfiguration { InstanceCount = 1, RoleInstanceSize = supportedRoleInstanceSizes[1] } }, + { "WebRole1", new RoleConfiguration { InstanceCount = 2, RoleInstanceSize = supportedRoleInstanceSizes[3] } } + }; + + // Generate the request + CloudService cloudService = GenerateCloudServiceWithNetworkProfile( + resourceGroupName: rgName, + serviceName: cloudServiceName, + cspkgSasUri: CreateCspkgSasUrl(rgName, MultiRole2Worker1WebRolesPackageSasUri), + roleNameToPropertiesMapping: roleNameToPropertiesMapping, + publicIPAddressName: publicIPAddressName, + vnetName: vnetName, + subnetName: subnetName, + lbName: lbName, + lbFrontendName: lbfeName); + + CloudService getResponse = CreateCloudService_NoAsyncTracking( + rgName, + csName, + cloudService); + + /// + /// Update[1]: Delete WorkerRole1, ScaleUp WorkerRole2 and ScaleIn WebRole1 + /// + + roleNameToPropertiesMapping = new Dictionary + { + /// Delete WorkerRole1 + /// { "WorkerRole1", new RoleConfiguration { InstanceCount = 1, RoleInstanceSize = supportedRoleInstanceSizes[0] } }, + /// Scale-Up WorkerRole2 + { "WorkerRole2", new RoleConfiguration { InstanceCount = 1, RoleInstanceSize = supportedRoleInstanceSizes[0] } }, + /// Scale-In WebRole1 + { "WebRole1", new RoleConfiguration { InstanceCount = 1, RoleInstanceSize = supportedRoleInstanceSizes[3] } } + }; + + cloudService = GenerateCloudServiceWithNetworkProfile( + resourceGroupName: rgName, + serviceName: cloudServiceName, + cspkgSasUri: CreateCspkgSasUrl(rgName, MultiRole1Worker1WebRolesPackageSasUri), + roleNameToPropertiesMapping: roleNameToPropertiesMapping, + publicIPAddressName: publicIPAddressName, + vnetName: vnetName, + subnetName: subnetName, + lbName: lbName, + lbFrontendName: lbfeName); + + CloudServiceExtensionProfile extensionProfile = new CloudServiceExtensionProfile() + { + Extensions = new List() { CreateRDPExtension("RDPExtension") } + }; + + cloudService.Properties.ExtensionProfile = extensionProfile; + + UpdateCloudService(rgName, csName, cloudService); + + var getUpdatedResponse = m_CrpClient.CloudServices.Get(rgName, csName); + ValidateCloudService(cloudService, getUpdatedResponse, rgName, csName); + + m_CrpClient.CloudServices.Delete(rgName, csName); + } + finally + { + // Fire and forget. No need to wait for RG deletion completion + try + { + m_ResourcesClient.ResourceGroups.BeginDelete(rgName); + } + catch (Exception e) + { + // Swallow this exception so that the original exception is thrown + Console.WriteLine(e); + } + } + } + } + + /// + /// Covers following Operations: + /// Create RG + /// Create Network Resources + /// Create CloudService + /// ScaleOut CloudService + /// ScaleIn CloudService + /// Delete CloudService + /// Delete RG + /// + [Fact] + public void TestCloudServiceOperations_ScaleIn_ScaleOut() + { + using (MockContext context = MockContext.Start(this.GetType())) + { + EnsureClientsInitialized(context); + + // Create resource group + var rgName = TestUtilities.GenerateName(TestPrefix); + var csName = TestUtilities.GenerateName("cs"); + string cloudServiceName = "HelloWorldTest_WorkerRoleWithEndpoint"; + string publicIPAddressName = TestUtilities.GenerateName("cspip"); + string vnetName = TestUtilities.GenerateName("csvnet"); + string subnetName = TestUtilities.GenerateName("subnet"); + string dnsName = TestUtilities.GenerateName("dns"); + string lbName = TestUtilities.GenerateName("lb"); + string lbfeName = TestUtilities.GenerateName("lbfe"); + const string welcomeMessage = "Hello world from PaaS CloudService!"; + + + try + { + CreateVirtualNetwork(rgName, vnetName, subnetName); + PublicIPAddress publicIPAddress = CreatePublicIP(publicIPAddressName, rgName, dnsName); + #region Create new PaaS CloudService + Dictionary roleSettings = new Dictionary + { + { "Application.WelcomeString", welcomeMessage } + }; + + List supportedRoleInstanceSizes = GetSupportedRoleInstanceSizes(); + Dictionary roleNameToPropertiesMapping = new Dictionary + { + { "WorkerRole1", new RoleConfiguration { InstanceCount = 1, RoleInstanceSize = supportedRoleInstanceSizes[0], Settings = roleSettings } } + }; + string cspkgSasUri = CreateCspkgSasUrl(rgName, WorkerRoleWithInputEndpointSasUri); + CloudService cloudService = GenerateCloudServiceWithNetworkProfile( + serviceName: cloudServiceName, + cspkgSasUri: cspkgSasUri, + resourceGroupName: rgName, + roleNameToPropertiesMapping: roleNameToPropertiesMapping, + publicIPAddressName: publicIPAddressName, + vnetName: vnetName, + subnetName: subnetName, + lbName: lbName, + lbFrontendName: lbfeName); + + CloudService getResponse = CreateCloudService_NoAsyncTracking( + rgName, + csName, + cloudService); + + #endregion + + #region Update existing PaaS CloudService with new value for role setting + const string updatedWelcomeMessage = "Hello world from updated PaaS CloudService!"; + Dictionary updatedRoleSettings = new Dictionary + { + { "Application.WelcomeString", updatedWelcomeMessage } + }; + + roleNameToPropertiesMapping = new Dictionary + { + { "WorkerRole1", new RoleConfiguration { InstanceCount = 1, RoleInstanceSize = supportedRoleInstanceSizes[0], Settings = updatedRoleSettings } } + }; + + cloudService = GenerateCloudServiceWithNetworkProfile(serviceName: cloudServiceName, + cspkgSasUri: cspkgSasUri, + resourceGroupName: rgName, + roleNameToPropertiesMapping: roleNameToPropertiesMapping, + publicIPAddressName: publicIPAddressName, + vnetName: vnetName, + subnetName: subnetName, + lbName: lbName, + lbFrontendName: lbfeName); + + getResponse = CreateCloudService_NoAsyncTracking( + rgName, + csName, + cloudService); + #endregion + + #region Scale-out existing PaaS CloudService + + roleNameToPropertiesMapping = new Dictionary + { + { "WorkerRole1", new RoleConfiguration { InstanceCount = 2, RoleInstanceSize = supportedRoleInstanceSizes[0], Settings = roleSettings } } + }; + + cloudService = GenerateCloudServiceWithNetworkProfile(serviceName: cloudServiceName, + cspkgSasUri: cspkgSasUri, + resourceGroupName: rgName, + roleNameToPropertiesMapping: roleNameToPropertiesMapping, + publicIPAddressName: publicIPAddressName, + vnetName: vnetName, + subnetName: subnetName, + lbName: lbName, + lbFrontendName: lbfeName); + + getResponse = CreateCloudService_NoAsyncTracking( + rgName, + csName, + cloudService); + + // Now verify by calling instances API to assert we have two instances + IPage roleInstanceList = m_CrpClient.CloudServiceRoleInstances.List(rgName, csName); + Assert.True(roleInstanceList.Count() == 2, "Returned CloudService does not have two RoleInstance. Postcondition failed."); + #endregion + + #region Scale-in existing PaaS CloudService + roleNameToPropertiesMapping = new Dictionary + { + { "WorkerRole1", new RoleConfiguration { InstanceCount = 1, RoleInstanceSize = supportedRoleInstanceSizes[0], Settings = roleSettings } } + }; + + cloudService = GenerateCloudServiceWithNetworkProfile(serviceName: cloudServiceName, + cspkgSasUri: cspkgSasUri, + resourceGroupName: rgName, + roleNameToPropertiesMapping: roleNameToPropertiesMapping, + publicIPAddressName: publicIPAddressName, + vnetName: vnetName, + subnetName: subnetName, + lbName: lbName, + lbFrontendName: lbfeName); + getResponse = CreateCloudService_NoAsyncTracking( + rgName, + csName, + cloudService); + + // Now verify by calling instances API to assert we have one instance + roleInstanceList = m_CrpClient.CloudServiceRoleInstances.List(rgName, csName); + Assert.True(roleInstanceList.Count() == 1, "Returned CloudService does not have 1 RoleInstance. Postcondition failed."); + #endregion + + m_CrpClient.CloudServices.Delete(rgName, csName); + } + finally + { + // Fire and forget. No need to wait for RG deletion completion + try + { + m_ResourcesClient.ResourceGroups.BeginDelete(rgName); + } + catch (Exception e) + { + // Swallow this exception so that the original exception is thrown + Console.WriteLine(e); + } + } + } + } + } +} diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/Helpers/ServiceConfigurationHelpers.cs b/sdk/compute/Microsoft.Azure.Management.Compute/tests/Helpers/ServiceConfigurationHelpers.cs new file mode 100644 index 0000000000000..f0c3c5e27cc3a --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/Helpers/ServiceConfigurationHelpers.cs @@ -0,0 +1,163 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + +using System.Collections.Generic; +using System.Diagnostics.CodeAnalysis; +using System.IO; +using System.Linq; +using System.Xml.Serialization; +using static Compute.Tests.CloudServiceTestsBase; + +namespace Compute.Tests +{ + public static class ServiceConfigurationHelpers + { + + [SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] + internal const string CertStatusBlobSasUri = "https://paastest2.blob.core.windows.net/deploymentstatus/statusBlob.txt?st=2019-12-06T00%3A20%3A39Z&se=2025-12-07T00%3A20%3A00Z&sp=rl&sv=2018-03-28&sr=b&sig=RzHk3kJ2SBxeDYVBugH1n1BxQ8QNo4FRunUNzH9wq%2Bs%3D"; + + public static string GenerateServiceConfiguration( + string serviceName, + int osFamily, + string osVersion, + string schemaVersion, + Dictionary roleNameToPropertiesMapping, + string vNetName, + string subnetName, + ServiceConfigurationNetworkConfigurationAddressAssignmentsReservedIPs reservedIPs = null, + List certificates = null, + ServiceConfigurationRoleSecurityConfigurations securityConfigurations = null, + Setting[] serviceSettings = null) + { + ConfigureRoleSettings(roleNameToPropertiesMapping, certificates); + + List roles = new List(); + List roleInstanceAddresses = new List(); + + AddRoleConfigurations(roleNameToPropertiesMapping, roles, certificates, securityConfigurations, roleInstanceAddresses, subnetName); + + ServiceConfiguration serviceConfiguration = GenerateServiceConfiguration(serviceName, osFamily, osVersion, schemaVersion, roles, vNetName, roleInstanceAddresses, serviceSettings, reservedIPs); + + return SerializeToXML(serviceConfiguration); + } + + private static void ConfigureRoleSettings(Dictionary roleNameToPropertiesMapping, List certificates) + { + foreach (string roleName in roleNameToPropertiesMapping.Keys) + { + if (roleNameToPropertiesMapping[roleName].Settings == null) + { + roleNameToPropertiesMapping[roleName].Settings = new Dictionary + { + { "Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString", "UseDevelopmentStorage=true" } + }; + } + + Dictionary roleSettings = roleNameToPropertiesMapping[roleName].Settings; + + if (!roleSettings.ContainsKey("Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString")) + { + roleSettings["Microsoft.WindowsAzure.Plugins.Diagnostics.ConnectionString"] = "UseDevelopmentStorage=true"; + } + + if (certificates != null) + { + string thumbprints = ""; + thumbprints = string.Join(",", certificates.Select(c => c.thumbprint)); + if (!string.IsNullOrEmpty(thumbprints)) + { + roleSettings["Microsoft.WindowsAzure.StatusBlobUri"] = CertStatusBlobSasUri; + roleSettings["Microsoft.WindowsAzure.Thumbprints"] = thumbprints; + } + } + } + } + + private static void AddRoleConfigurations( + Dictionary roleNameToPropertiesMapping, + List roles, + List certificates, + ServiceConfigurationRoleSecurityConfigurations securityConfigurations, + List roleInstanceAddresses, + string subnetName) + { + foreach (string roleName in roleNameToPropertiesMapping.Keys) + { + RoleConfiguration roleConfiguration = roleNameToPropertiesMapping[roleName]; + ServiceConfigurationRoleSetting[] settingsArray = roleConfiguration.Settings.Keys.Select(key => new ServiceConfigurationRoleSetting { name = key, value = roleConfiguration.Settings[key] }).ToArray(); + + // Add Configuration for each role + roles.Add(new ServiceConfigurationRole() + { + name = roleName, + Instances = new ServiceConfigurationRoleInstances() + { + count = roleConfiguration.InstanceCount.ToString() + }, + // Note: For now these settings and certificates are same for all roles. + // They can be handled later as we add support for other scenarios. + ConfigurationSettings = settingsArray, + Certificates = certificates?.ToArray(), + SecurityConfigurations = securityConfigurations + }); + + // Add the required subnet for each role + roleInstanceAddresses.Add(new ServiceConfigurationNetworkConfigurationAddressAssignmentsInstanceAddress() + { + roleName = roleName, + Subnets = new ServiceConfigurationNetworkConfigurationAddressAssignmentsInstanceAddressSubnets() + { + Subnet = new ServiceConfigurationNetworkConfigurationAddressAssignmentsInstanceAddressSubnetsSubnet() + { + name = subnetName + } + } + }); + } + } + + private static ServiceConfiguration GenerateServiceConfiguration(string serviceName, + int osFamily, + string osVersion, + string schemaVersion, + List roles, + string vNetName, + List roleInstanceAddresses, + Setting[] serviceSettings, + ServiceConfigurationNetworkConfigurationAddressAssignmentsReservedIPs reservedIPs = null) + { + return new ServiceConfiguration() + { + serviceName = serviceName, + osFamily = osFamily.ToString(), + osVersion = osVersion, + schemaVersion = schemaVersion, + Role = roles.ToArray(), + NetworkConfiguration = new ServiceConfigurationNetworkConfiguration() + { + VirtualNetworkSite = new ServiceConfigurationNetworkConfigurationVirtualNetworkSite() + { + name = vNetName + }, + AddressAssignments = new ServiceConfigurationNetworkConfigurationAddressAssignments() + { + InstanceAddress = roleInstanceAddresses.ToArray(), + ReservedIPs = reservedIPs + } + }, + ServiceSettings = serviceSettings + }; + } + + private static string SerializeToXML(ServiceConfiguration serviceConfiguration) + { + using (var stringWriter = new StringWriter()) + { + var serializer = new XmlSerializer(typeof(ServiceConfiguration)); + serializer.Serialize(stringWriter, serviceConfiguration); + return stringWriter.ToString(); + }; + } + } +} + diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceExtensionTests/MultiRole_CreateUpdateGetAndDeleteWithExtension_WorkerAndWebRole.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceExtensionTests/MultiRole_CreateUpdateGetAndDeleteWithExtension_WorkerAndWebRole.json new file mode 100644 index 0000000000000..3238a4c5b17e6 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceExtensionTests/MultiRole_CreateUpdateGetAndDeleteWithExtension_WorkerAndWebRole.json @@ -0,0 +1,3741 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar3006?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjMwMDY/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar3006\": \"2021-03-14 07:11:28Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4264f83c-2c9b-4dec-a33a-b240cb240828" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "93" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "d9c807a7-43ec-41d1-ae84-f8048436d3e0" + ], + "x-ms-correlation-request-id": [ + "d9c807a7-43ec-41d1-ae84-f8048436d3e0" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T071130Z:d9c807a7-43ec-41d1-ae84-f8048436d3e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:11:30 GMT" + ], + "Content-Length": [ + "228" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006\",\r\n \"name\": \"crptestar3006\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar3006\": \"2021-03-14 07:11:28Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar3006?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjMwMDY/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar3006\": \"2021-03-14 07:11:47Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d778aff-db6f-466f-ada5-cff7e3f41a10" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "93" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "baa95a59-ca9f-43f3-9bc4-39a296ecc3aa" + ], + "x-ms-correlation-request-id": [ + "baa95a59-ca9f-43f3-9bc4-39a296ecc3aa" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T071148Z:baa95a59-ca9f-43f3-9bc4-39a296ecc3aa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:11:47 GMT" + ], + "Content-Length": [ + "228" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006\",\r\n \"name\": \"crptestar3006\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar3006\": \"2021-03-14 07:11:47Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar3006?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjMwMDY/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c7335f27-f5ec-44b6-a5b9-5f02b2496091" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "028ae8f5-d8bc-4518-ac62-1e649aaed43a" + ], + "x-ms-correlation-request-id": [ + "028ae8f5-d8bc-4518-ac62-1e649aaed43a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T071425Z:028ae8f5-d8bc-4518-ac62-1e649aaed43a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:14:25 GMT" + ], + "Content-Length": [ + "180" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006\",\r\n \"name\": \"crptestar3006\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar3006?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjMwMDY/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "987e45df-b8d8-4b67-956e-bfd62b365779" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "4ae65c03-4294-429b-9716-e9e9b0e644fa" + ], + "x-ms-correlation-request-id": [ + "4ae65c03-4294-429b-9716-e9e9b0e644fa" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T072141Z:4ae65c03-4294-429b-9716-e9e9b0e644fa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:21:40 GMT" + ], + "Content-Length": [ + "180" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006\",\r\n \"name\": \"crptestar3006\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar3006?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjMwMDY/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5c9ac0c7-ca77-4dce-849b-3ae6f21086af" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "d8463a9e-6ef0-4055-856c-57a00e48a4fc" + ], + "x-ms-correlation-request-id": [ + "d8463a9e-6ef0-4055-856c-57a00e48a4fc" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T072319Z:d8463a9e-6ef0-4055-856c-57a00e48a4fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:23:19 GMT" + ], + "Content-Length": [ + "180" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006\",\r\n \"name\": \"crptestar3006\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Network/virtualNetworks/csvnet2740?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9jc3ZuZXQyNzQwP2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"subnet8692\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9ef87742-fbc9-4db8-973e-9529bab3c479" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "297" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "b62ea7b2-654c-4209-8c12-16a6caaf60c0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/b62ea7b2-654c-4209-8c12-16a6caaf60c0?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "b99b8c34-9b50-4d16-8bf4-d5d6c14f75d1" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "cbbce949-cccf-49e9-8425-f3efe2da3c39" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T071137Z:b99b8c34-9b50-4d16-8bf4-d5d6c14f75d1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:11:37 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"csvnet2740\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Network/virtualNetworks/csvnet2740\",\r\n \"etag\": \"W/\\\"72899e4a-4e25-4728-b322-469457942a76\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"040fc245-5dd9-47f4-8f08-9e944fab321f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet8692\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Network/virtualNetworks/csvnet2740/subnets/subnet8692\",\r\n \"etag\": \"W/\\\"72899e4a-4e25-4728-b322-469457942a76\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/b62ea7b2-654c-4209-8c12-16a6caaf60c0?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2I2MmVhN2IyLTY1NGMtNDIwOS04YzEyLTE2YTZjYWFmNjBjMD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ec2d572f-4f81-4d58-8979-6ae990591f75" + ], + "x-ms-correlation-request-id": [ + "8a58e254-8d49-4ef0-b5ed-c521f63eec59" + ], + "x-ms-arm-service-request-id": [ + "a469030d-3981-4eb1-9dac-e426b51b2f79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T071141Z:8a58e254-8d49-4ef0-b5ed-c521f63eec59" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:11:40 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Network/virtualNetworks/csvnet2740?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9jc3ZuZXQyNzQwP2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"db9dddab-4d49-4f46-8246-a9a28c878162\"" + ], + "x-ms-request-id": [ + "cf1b03cc-d040-4e16-bd68-d3c279148e7b" + ], + "x-ms-correlation-request-id": [ + "5fdc4cc0-5759-4114-a485-143d1b8e898e" + ], + "x-ms-arm-service-request-id": [ + "2eedd111-485f-429e-acf1-6aa21c24db64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T071141Z:5fdc4cc0-5759-4114-a485-143d1b8e898e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:11:40 GMT" + ], + "Content-Length": [ + "1234" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"csvnet2740\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Network/virtualNetworks/csvnet2740\",\r\n \"etag\": \"W/\\\"db9dddab-4d49-4f46-8246-a9a28c878162\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"040fc245-5dd9-47f4-8f08-9e944fab321f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet8692\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Network/virtualNetworks/csvnet2740/subnets/subnet8692\",\r\n \"etag\": \"W/\\\"db9dddab-4d49-4f46-8246-a9a28c878162\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Network/publicIPAddresses/cspip3698?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2NzcGlwMzY5OD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns4678\"\r\n }\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2e7d8f0-89ec-4768-9f62-ef82f8b13f98" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "163" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "60add1a2-bf78-48a5-9e9a-652f4758b1b6" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/60add1a2-bf78-48a5-9e9a-652f4758b1b6?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "b480cf5f-85f6-4732-a03f-bd0ad24e0ff8" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "69fc5ba1-cbbf-4078-abd2-139324076b2a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T071145Z:b480cf5f-85f6-4732-a03f-bd0ad24e0ff8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:11:44 GMT" + ], + "Content-Length": [ + "724" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cspip3698\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Network/publicIPAddresses/cspip3698\",\r\n \"etag\": \"W/\\\"9a9bbed5-5fd7-4305-83ea-d4c7940ec495\\\"\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"2e36f7c2-89c9-480d-bf1e-ec0ee22f5767\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns4678\",\r\n \"fqdn\": \"dns4678.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/60add1a2-bf78-48a5-9e9a-652f4758b1b6?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzYwYWRkMWEyLWJmNzgtNDhhNS05ZTlhLTY1MmY0NzU4YjFiNj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "794721c8-e485-472b-8040-efbb7227ca01" + ], + "x-ms-correlation-request-id": [ + "7c76028d-860d-4455-ada6-3fd395550cb6" + ], + "x-ms-arm-service-request-id": [ + "b9239f84-02ec-41c1-b6fe-eff34d8fb92a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T071147Z:7c76028d-860d-4455-ada6-3fd395550cb6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:11:46 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Network/publicIPAddresses/cspip3698?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2NzcGlwMzY5OD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"81fb6af3-6156-4ded-b162-70e914bbdf73\"" + ], + "x-ms-request-id": [ + "9d3fe2a4-b55c-4697-98b0-a4648ac5318f" + ], + "x-ms-correlation-request-id": [ + "c55a38a0-09b1-44ca-82f8-1bbb3d967f61" + ], + "x-ms-arm-service-request-id": [ + "b4084450-4343-4d50-810e-29804882dc19" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T071147Z:c55a38a0-09b1-44ca-82f8-1bbb3d967f61" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:11:46 GMT" + ], + "Content-Length": [ + "725" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cspip3698\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Network/publicIPAddresses/cspip3698\",\r\n \"etag\": \"W/\\\"81fb6af3-6156-4ded-b162-70e914bbdf73\\\"\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2e36f7c2-89c9-480d-bf1e-ec0ee22f5767\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns4678\",\r\n \"fqdn\": \"dns4678.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Storage/storageAccounts/saforcspkg9141?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmNzcGtnOTE0MT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5b07d03-8076-4335-bc71-b74d52d7e6f9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "89" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Storage/locations/eastus2/asyncoperations/422faff5-95c1-4d80-b479-89d33aaf04bf?monitor=true&api-version=2015-06-15" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "422faff5-95c1-4d80-b479-89d33aaf04bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "52e52541-2fb6-48a6-8c1b-7b2a19408d7c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T071155Z:52e52541-2fb6-48a6-8c1b-7b2a19408d7c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:11:55 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Storage/locations/eastus2/asyncoperations/422faff5-95c1-4d80-b479-89d33aaf04bf?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvNDIyZmFmZjUtOTVjMS00ZDgwLWI0NzktODlkMzNhYWYwNGJmP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "39a020b7-39bb-4646-bd17-364b5efb8f06" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "e9a3433a-0258-473e-9a4d-a2d5f4c30488" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T071213Z:e9a3433a-0258-473e-9a4d-a2d5f4c30488" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:12:12 GMT" + ], + "Content-Length": [ + "89" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8ae75a28-5824-40b7-b28c-80341e64221c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "aaee434a-d648-4dd7-a754-6a1288e84500" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "f60d363a-a77e-4f99-93f1-c8f30521f5c2" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T071223Z:f60d363a-a77e-4f99-93f1-c8f30521f5c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:12:23 GMT" + ], + "Content-Length": [ + "747" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Storage/storageAccounts/saforcspkg9141\",\r\n \"name\": \"saforcspkg9141\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-03-14T07:11:55.2535871Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforcspkg9141.blob.core.windows.net/\",\r\n \"queue\": \"https://saforcspkg9141.queue.core.windows.net/\",\r\n \"table\": \"https://saforcspkg9141.table.core.windows.net/\",\r\n \"file\": \"https://saforcspkg9141.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Storage/storageAccounts/saforcspkg9141?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmNzcGtnOTE0MT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "855a04ae-bc9c-40f4-a9eb-9276190b94a7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "daa39eb3-1a28-4ca6-9083-c8a539ebb293" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "b2a5cdf5-220c-4226-a0f3-56c6e9f90db2" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T071223Z:b2a5cdf5-220c-4226-a0f3-56c6e9f90db2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:12:23 GMT" + ], + "Content-Length": [ + "735" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Storage/storageAccounts/saforcspkg9141\",\r\n \"name\": \"saforcspkg9141\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-03-14T07:11:55.2535871Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforcspkg9141.blob.core.windows.net/\",\r\n \"queue\": \"https://saforcspkg9141.queue.core.windows.net/\",\r\n \"table\": \"https://saforcspkg9141.table.core.windows.net/\",\r\n \"file\": \"https://saforcspkg9141.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Storage/storageAccounts/saforcspkg9141/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmNzcGtnOTE0MS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "148ae9a0-eefc-4e86-a485-442378ee7fdb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2dcd0814-bf4b-4f5b-a531-960fda60d570" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "9a59bf0f-a369-43ba-ac32-7d319b048242" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T071224Z:9a59bf0f-a369-43ba-ac32-7d319b048242" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:12:24 GMT" + ], + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"CjWOK8VCQKFmgVARuc5uO/fl8fC3QUZOw0FrtpFYYIAWb0iy34p+e4p9fMNZEWYJiRU6Ba3PKREfJimzbLZUxw==\",\r\n \"key2\": \"5ifDJeORL61yqj9sUbP9i8YkoIoggfznGA92V6lgCNBkhCuyZ94R80Dn1Pl5P8YFKChu4DN4FuYyWIetxmAiNQ==\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Compute/cloudServices/cs4154?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M0MTU0P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"packageUrl\": \"https://saforcspkg9141.blob.core.windows.net/sascontainer/TestCloudServiceMultiRole_WorkerRole1(Standard_D2_v2)(1)_WorkerRole2(Standard_D1_v2)(1)_WebRole1(Standard_A2_v2)(2).cspkg?sv=2017-04-17&sr=b&sig=JK2P87MY2CfqEXQ1ElH47PR2%2Fyw7gk950tStcE7ibEU%3D&st=2021-03-13T07%3A14%3A21Z&se=2021-03-16T07%3A14%3A21Z&sp=rw\",\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb7730\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"lbfe938\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Network/publicIPAddresses/cspip3698\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\",\r\n \"protectedSettings\": \"VsmrdpTest!\"\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8ce373ba-9ed2-4c19-abd6-a3d530b776fb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "4046" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/6c1b5a62-d154-4cc5-b983-106ad9ea0ade?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6c1b5a62-d154-4cc5-b983-106ad9ea0ade" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;292" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "5b676983-e789-4aa1-a8a6-11a800646188" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T071432Z:5b676983-e789-4aa1-a8a6-11a800646188" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:14:31 GMT" + ], + "Content-Length": [ + "3842" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs4154\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb7730\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe938\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Network/publicIPAddresses/cspip3698\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"rolesAppliedTo\": [\r\n \"*\"\r\n ],\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"uniqueId\": \"830c149b-7903-400d-af2c-98d19543863e\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Compute/cloudServices/cs4154?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M0MTU0P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"packageUrl\": \"https://saforcspkg9141.blob.core.windows.net/sascontainer/TestCloudServiceMultiRole_WorkerRole1(Standard_D2_v2)(1)_WorkerRole2(Standard_D1_v2)(1)_WebRole1(Standard_A2_v2)(2).cspkg?sv=2017-04-17&sr=b&sig=JK2P87MY2CfqEXQ1ElH47PR2%2Fyw7gk950tStcE7ibEU%3D&st=2021-03-13T07%3A14%3A21Z&se=2021-03-16T07%3A14%3A21Z&sp=rw\",\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb7730\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"lbfe938\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Network/publicIPAddresses/cspip3698\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"MonitoringExtension\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Security\",\r\n \"type\": \"Monitoring\",\r\n \"typeHandlerVersion\": \"3.1.0.0\",\r\n \"autoUpgradeMinorVersion\": false\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e4d076ab-3ef8-47d4-8287-816276fa4f18" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3817" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/44eed2b7-05c1-44fb-b37a-fd736bcff020?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "44eed2b7-05c1-44fb-b37a-fd736bcff020" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;293" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "88c9d906-672b-43ec-970d-9b185ccef8ed" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T072146Z:88c9d906-672b-43ec-970d-9b185ccef8ed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:21:45 GMT" + ], + "Content-Length": [ + "3714" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs4154\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb7730\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe938\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Network/publicIPAddresses/cspip3698\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"MonitoringExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Updating\",\r\n \"rolesAppliedTo\": [\r\n \"*\"\r\n ],\r\n \"publisher\": \"Microsoft.Azure.Security\",\r\n \"type\": \"Monitoring\",\r\n \"typeHandlerVersion\": \"3.1.0.0\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"uniqueId\": \"830c149b-7903-400d-af2c-98d19543863e\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Compute/cloudServices/cs4154?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M0MTU0P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"packageUrl\": \"https://saforcspkg9141.blob.core.windows.net/sascontainer/TestCloudServiceMultiRole_WorkerRole1(Standard_D2_v2)(1)_WorkerRole2(Standard_D1_v2)(1)_WebRole1(Standard_A2_v2)(2).cspkg?sv=2017-04-17&sr=b&sig=JK2P87MY2CfqEXQ1ElH47PR2%2Fyw7gk950tStcE7ibEU%3D&st=2021-03-13T07%3A14%3A21Z&se=2021-03-16T07%3A14%3A21Z&sp=rw\",\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb7730\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"lbfe938\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Network/publicIPAddresses/cspip3698\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9a0ece0e-997e-4179-b53e-3bccb9ec2593" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3465" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/c1a65b74-172d-4783-8436-cd0f3d638eeb?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c1a65b74-172d-4783-8436-cd0f3d638eeb" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;292" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "598034bd-948a-4789-8384-6d4bbfc70961" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T072324Z:598034bd-948a-4789-8384-6d4bbfc70961" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:23:24 GMT" + ], + "Content-Length": [ + "3714" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs4154\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb7730\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe938\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Network/publicIPAddresses/cspip3698\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"MonitoringExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Updating\",\r\n \"rolesAppliedTo\": [\r\n \"*\"\r\n ],\r\n \"publisher\": \"Microsoft.Azure.Security\",\r\n \"type\": \"Monitoring\",\r\n \"typeHandlerVersion\": \"3.1.0.0\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"uniqueId\": \"830c149b-7903-400d-af2c-98d19543863e\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/6c1b5a62-d154-4cc5-b983-106ad9ea0ade?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNmMxYjVhNjItZDE1NC00Y2M1LWI5ODMtMTA2YWQ5ZWEwYWRlP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "717a50b0-4a01-400f-8948-26d56798991e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "418bed2d-bbec-407e-93a0-f13c3e2d8373" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T071503Z:418bed2d-bbec-407e-93a0-f13c3e2d8373" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:15:03 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:44:30.1599309+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6c1b5a62-d154-4cc5-b983-106ad9ea0ade\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/6c1b5a62-d154-4cc5-b983-106ad9ea0ade?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNmMxYjVhNjItZDE1NC00Y2M1LWI5ODMtMTA2YWQ5ZWEwYWRlP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "4e038896-cdae-4f9e-9808-a709859170be" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "db7cdf61-5daa-47d8-b0d6-97d3c8559324" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T071533Z:db7cdf61-5daa-47d8-b0d6-97d3c8559324" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:15:32 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:44:30.1599309+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6c1b5a62-d154-4cc5-b983-106ad9ea0ade\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/6c1b5a62-d154-4cc5-b983-106ad9ea0ade?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNmMxYjVhNjItZDE1NC00Y2M1LWI5ODMtMTA2YWQ5ZWEwYWRlP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "db80fd0e-f810-4bda-a975-26eadc97f8e5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "7f12a315-8297-494d-8cdf-4140c4e513cc" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T071604Z:7f12a315-8297-494d-8cdf-4140c4e513cc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:16:03 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:44:30.1599309+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6c1b5a62-d154-4cc5-b983-106ad9ea0ade\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/6c1b5a62-d154-4cc5-b983-106ad9ea0ade?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNmMxYjVhNjItZDE1NC00Y2M1LWI5ODMtMTA2YWQ5ZWEwYWRlP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "9776baaf-89e2-497a-9474-2ce44f3dbd97" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "5f5723fb-ab30-4a9d-987a-1483e6350d78" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T071634Z:5f5723fb-ab30-4a9d-987a-1483e6350d78" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:16:33 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:44:30.1599309+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6c1b5a62-d154-4cc5-b983-106ad9ea0ade\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/6c1b5a62-d154-4cc5-b983-106ad9ea0ade?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNmMxYjVhNjItZDE1NC00Y2M1LWI5ODMtMTA2YWQ5ZWEwYWRlP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "2e271891-a6d5-4c32-ae87-8bd9e6737a99" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "4a9cd539-c3b6-4394-83cf-54c8d03de3e4" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T071704Z:4a9cd539-c3b6-4394-83cf-54c8d03de3e4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:17:04 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:44:30.1599309+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6c1b5a62-d154-4cc5-b983-106ad9ea0ade\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/6c1b5a62-d154-4cc5-b983-106ad9ea0ade?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNmMxYjVhNjItZDE1NC00Y2M1LWI5ODMtMTA2YWQ5ZWEwYWRlP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "8346e05b-d3b7-4a9d-bf61-b294e84cb383" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "9c2cf2d0-be19-4f54-b066-7abe0327dfcd" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T071734Z:9c2cf2d0-be19-4f54-b066-7abe0327dfcd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:17:34 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:44:30.1599309+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6c1b5a62-d154-4cc5-b983-106ad9ea0ade\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/6c1b5a62-d154-4cc5-b983-106ad9ea0ade?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNmMxYjVhNjItZDE1NC00Y2M1LWI5ODMtMTA2YWQ5ZWEwYWRlP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "af44fe82-b3e4-4b02-8207-1f6cb4a418fc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "2d2b0097-1a4d-4efe-a80f-756baa748407" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T071805Z:2d2b0097-1a4d-4efe-a80f-756baa748407" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:18:04 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:44:30.1599309+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6c1b5a62-d154-4cc5-b983-106ad9ea0ade\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/6c1b5a62-d154-4cc5-b983-106ad9ea0ade?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNmMxYjVhNjItZDE1NC00Y2M1LWI5ODMtMTA2YWQ5ZWEwYWRlP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "691ea23b-8f8b-4540-aff5-e0301aa05e4d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "c7a7fc1d-3722-47bb-bd83-725a1ed6ddc8" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T071835Z:c7a7fc1d-3722-47bb-bd83-725a1ed6ddc8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:18:35 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:44:30.1599309+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6c1b5a62-d154-4cc5-b983-106ad9ea0ade\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/6c1b5a62-d154-4cc5-b983-106ad9ea0ade?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNmMxYjVhNjItZDE1NC00Y2M1LWI5ODMtMTA2YWQ5ZWEwYWRlP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "ec3d0646-accf-477a-9938-38217d8f3a5a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "bdd9fda0-6338-4c42-8352-8340932c88e3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T071905Z:bdd9fda0-6338-4c42-8352-8340932c88e3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:19:04 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:44:30.1599309+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6c1b5a62-d154-4cc5-b983-106ad9ea0ade\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/6c1b5a62-d154-4cc5-b983-106ad9ea0ade?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNmMxYjVhNjItZDE1NC00Y2M1LWI5ODMtMTA2YWQ5ZWEwYWRlP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "6e7c5034-2cb9-41e5-9475-e6a503face15" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "6e88bf8c-7b4e-405f-b4a1-2c1c6d5d18d2" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T071935Z:6e88bf8c-7b4e-405f-b4a1-2c1c6d5d18d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:19:35 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:44:30.1599309+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6c1b5a62-d154-4cc5-b983-106ad9ea0ade\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/6c1b5a62-d154-4cc5-b983-106ad9ea0ade?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNmMxYjVhNjItZDE1NC00Y2M1LWI5ODMtMTA2YWQ5ZWEwYWRlP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "9ddfa2f4-2269-4755-820c-89d8afcdb0e4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "886fa7cc-2d85-4d56-8545-af3606073c25" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T072006Z:886fa7cc-2d85-4d56-8545-af3606073c25" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:20:06 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:44:30.1599309+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6c1b5a62-d154-4cc5-b983-106ad9ea0ade\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/6c1b5a62-d154-4cc5-b983-106ad9ea0ade?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNmMxYjVhNjItZDE1NC00Y2M1LWI5ODMtMTA2YWQ5ZWEwYWRlP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "0dac4a8f-600a-4296-b9ec-50bcea58193e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "928a40b3-c08b-4826-b722-37e4ba5e40e6" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T072036Z:928a40b3-c08b-4826-b722-37e4ba5e40e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:20:35 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:44:30.1599309+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6c1b5a62-d154-4cc5-b983-106ad9ea0ade\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/6c1b5a62-d154-4cc5-b983-106ad9ea0ade?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNmMxYjVhNjItZDE1NC00Y2M1LWI5ODMtMTA2YWQ5ZWEwYWRlP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "7a4c6ee3-b342-4c4e-8bd8-8da63f193939" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "e8e69f17-235d-4a9f-8289-f5edce0988a1" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T072107Z:e8e69f17-235d-4a9f-8289-f5edce0988a1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:21:07 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:44:30.1599309+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6c1b5a62-d154-4cc5-b983-106ad9ea0ade\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/6c1b5a62-d154-4cc5-b983-106ad9ea0ade?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNmMxYjVhNjItZDE1NC00Y2M1LWI5ODMtMTA2YWQ5ZWEwYWRlP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "72320860-58f9-4754-8cb2-e3061d3d6e9f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "98355416-fefb-4564-99a3-12a8f906a137" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T072137Z:98355416-fefb-4564-99a3-12a8f906a137" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:21:36 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:44:30.1599309+05:30\",\r\n \"endTime\": \"2021-03-14T12:51:29.9275763+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"6c1b5a62-d154-4cc5-b983-106ad9ea0ade\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Compute/cloudServices/cs4154?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M0MTU0P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "531a3e2f-d7c9-4a81-8746-933ad16a50a3" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;398,Microsoft.Compute/GetCloudService30Min;2568" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "d0aa4339-d7dd-43ef-b570-3e8da1638549" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T072137Z:d0aa4339-d7dd-43ef-b570-3e8da1638549" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:21:36 GMT" + ], + "Content-Length": [ + "3844" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs4154\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb7730\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe938\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Network/publicIPAddresses/cspip3698\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"*\"\r\n ],\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"830c149b-7903-400d-af2c-98d19543863e\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Compute/cloudServices/cs4154?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M0MTU0P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7c9e8c30-4080-4d17-9cd3-33bbcfd1d3f3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "323e1399-a171-48d4-ab17-c02900d3269e" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;397,Microsoft.Compute/GetCloudService30Min;2567" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "588b959c-81b0-4c27-aab3-04dca30b133a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T072138Z:588b959c-81b0-4c27-aab3-04dca30b133a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:21:38 GMT" + ], + "Content-Length": [ + "3844" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs4154\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb7730\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe938\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Network/publicIPAddresses/cspip3698\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"*\"\r\n ],\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"830c149b-7903-400d-af2c-98d19543863e\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Compute/cloudServices/cs4154?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M0MTU0P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "970e274c-4fa6-424e-ac1e-3c1f771a4867" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "aa30680a-19b9-485f-b226-30b1c3a01905" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;396,Microsoft.Compute/GetCloudService30Min;2566" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "0b86dc22-15ec-4538-be0a-e1435bb1d1d2" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T072138Z:0b86dc22-15ec-4538-be0a-e1435bb1d1d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:21:38 GMT" + ], + "Content-Length": [ + "3844" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs4154\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb7730\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe938\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Network/publicIPAddresses/cspip3698\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"*\"\r\n ],\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"830c149b-7903-400d-af2c-98d19543863e\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Compute/cloudServices/cs4154?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M0MTU0P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cbee24be-53e8-4382-97b7-726eddc53462" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;392,Microsoft.Compute/GetCloudService30Min;2562" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "d3cc4bd7-1513-4974-a8b2-1ea4db497cd4" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T072317Z:d3cc4bd7-1513-4974-a8b2-1ea4db497cd4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:23:16 GMT" + ], + "Content-Length": [ + "3716" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs4154\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb7730\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe938\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Network/publicIPAddresses/cspip3698\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"MonitoringExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"*\"\r\n ],\r\n \"publisher\": \"Microsoft.Azure.Security\",\r\n \"type\": \"Monitoring\",\r\n \"typeHandlerVersion\": \"3.1.0.0\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"830c149b-7903-400d-af2c-98d19543863e\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Compute/cloudServices/cs4154?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M0MTU0P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "218ddf0c-a6a7-425b-93ef-05a68018f4e2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "01936e72-0f6e-45f6-a9d0-294d418b85b9" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;391,Microsoft.Compute/GetCloudService30Min;2561" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-correlation-request-id": [ + "9d8d4fbc-93db-4451-8f5f-a3eba127caab" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T072317Z:9d8d4fbc-93db-4451-8f5f-a3eba127caab" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:23:16 GMT" + ], + "Content-Length": [ + "3716" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs4154\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb7730\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe938\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Network/publicIPAddresses/cspip3698\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"MonitoringExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"*\"\r\n ],\r\n \"publisher\": \"Microsoft.Azure.Security\",\r\n \"type\": \"Monitoring\",\r\n \"typeHandlerVersion\": \"3.1.0.0\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"830c149b-7903-400d-af2c-98d19543863e\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Compute/cloudServices/cs4154?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M0MTU0P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2216c298-bc1f-4074-bc3f-5ad1c2e21446" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "dbcc3673-cedd-44a2-8c8a-6a7f433de2f6" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;390,Microsoft.Compute/GetCloudService30Min;2560" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-correlation-request-id": [ + "1b6a1061-d9c8-45ff-a89e-d8c0524ca57e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T072317Z:1b6a1061-d9c8-45ff-a89e-d8c0524ca57e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:23:16 GMT" + ], + "Content-Length": [ + "3716" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs4154\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb7730\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe938\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Network/publicIPAddresses/cspip3698\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"MonitoringExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"*\"\r\n ],\r\n \"publisher\": \"Microsoft.Azure.Security\",\r\n \"type\": \"Monitoring\",\r\n \"typeHandlerVersion\": \"3.1.0.0\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"830c149b-7903-400d-af2c-98d19543863e\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Compute/cloudServices/cs4154?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M0MTU0P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "44d6a7d3-fac2-4f40-8fe7-7de615e1e4a0" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;394,Microsoft.Compute/GetCloudService30Min;2558" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-correlation-request-id": [ + "2a367d6e-cba6-475b-8ecc-4cd1983ec007" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T072455Z:2a367d6e-cba6-475b-8ecc-4cd1983ec007" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:24:54 GMT" + ], + "Content-Length": [ + "3716" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs4154\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb7730\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe938\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Network/publicIPAddresses/cspip3698\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"MonitoringExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"*\"\r\n ],\r\n \"publisher\": \"Microsoft.Azure.Security\",\r\n \"type\": \"Monitoring\",\r\n \"typeHandlerVersion\": \"3.1.0.0\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"830c149b-7903-400d-af2c-98d19543863e\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Compute/cloudServices/cs4154?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M0MTU0P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fe821356-9cb7-496b-ac69-bcecbcd9f5a1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "74926881-e10c-4410-b154-e5eec74ea9ef" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;393,Microsoft.Compute/GetCloudService30Min;2557" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-correlation-request-id": [ + "70253b97-b4b7-428a-a4fd-5ca2af9a4a3f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T072455Z:70253b97-b4b7-428a-a4fd-5ca2af9a4a3f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:24:55 GMT" + ], + "Content-Length": [ + "3716" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs4154\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb7730\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe938\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Network/publicIPAddresses/cspip3698\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"MonitoringExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"*\"\r\n ],\r\n \"publisher\": \"Microsoft.Azure.Security\",\r\n \"type\": \"Monitoring\",\r\n \"typeHandlerVersion\": \"3.1.0.0\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"830c149b-7903-400d-af2c-98d19543863e\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Compute/cloudServices/cs4154?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M0MTU0P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "205d5ece-40e6-4fc0-af55-5a5c5c10c155" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "72cf455a-9dda-4d7e-a13a-32570f44da7b" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;392,Microsoft.Compute/GetCloudService30Min;2556" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-correlation-request-id": [ + "cd91a063-c394-4a80-809f-decafd1251c2" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T072456Z:cd91a063-c394-4a80-809f-decafd1251c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:24:55 GMT" + ], + "Content-Length": [ + "3716" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs4154\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb7730\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe938\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Network/publicIPAddresses/cspip3698\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"MonitoringExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"*\"\r\n ],\r\n \"publisher\": \"Microsoft.Azure.Security\",\r\n \"type\": \"Monitoring\",\r\n \"typeHandlerVersion\": \"3.1.0.0\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"830c149b-7903-400d-af2c-98d19543863e\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Compute/cloudServices/cs4154/roleInstances?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M0MTU0L3JvbGVJbnN0YW5jZXM/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "442301fe-07e1-4ef4-a00c-fbbc7be156d1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3b5abe94-ddd6-4791-a72e-f90ee2c44833" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;395,Microsoft.Compute/GetCloudService30Min;2565" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "be786a55-0386-43e3-ae5b-f80e5049be72" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T072138Z:be786a55-0386-43e3-ae5b-f80e5049be72" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:21:38 GMT" + ], + "Content-Length": [ + "2748" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"WebRole1_IN_0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154/roleInstances/WebRole1_IN_0\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154/roleInstances/WebRole1_IN_0/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"WebRole1_IN_1\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154/roleInstances/WebRole1_IN_1\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154/roleInstances/WebRole1_IN_1/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1_IN_0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154/roleInstances/WorkerRole1_IN_0\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154/roleInstances/WorkerRole1_IN_0/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2_IN_0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154/roleInstances/WorkerRole2_IN_0\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154/roleInstances/WorkerRole2_IN_0/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Compute/cloudServices/cs4154/roleInstances?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M0MTU0L3JvbGVJbnN0YW5jZXM/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1398bfb2-d29e-463f-87ce-b0a257484b15" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9c2da39a-7370-4566-9543-750a2deea30f" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;389,Microsoft.Compute/GetCloudService30Min;2559" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-correlation-request-id": [ + "d3f985ae-3227-40fb-b55c-bfb0d8de592d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T072317Z:d3f985ae-3227-40fb-b55c-bfb0d8de592d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:23:17 GMT" + ], + "Content-Length": [ + "2748" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"WebRole1_IN_0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154/roleInstances/WebRole1_IN_0\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154/roleInstances/WebRole1_IN_0/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"WebRole1_IN_1\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154/roleInstances/WebRole1_IN_1\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154/roleInstances/WebRole1_IN_1/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1_IN_0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154/roleInstances/WorkerRole1_IN_0\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154/roleInstances/WorkerRole1_IN_0/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2_IN_0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154/roleInstances/WorkerRole2_IN_0\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154/roleInstances/WorkerRole2_IN_0/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Compute/cloudServices/cs4154/roleInstances?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M0MTU0L3JvbGVJbnN0YW5jZXM/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e47aa2bf-380c-48ab-ac8a-defd1f7d8cc1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2d2a1b2b-c863-485a-a7d0-3d336f2dd29d" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;391,Microsoft.Compute/GetCloudService30Min;2555" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-correlation-request-id": [ + "8e11ccab-ba9a-4d57-9c15-b27394913e20" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T072456Z:8e11ccab-ba9a-4d57-9c15-b27394913e20" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:24:55 GMT" + ], + "Content-Length": [ + "2748" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"WebRole1_IN_0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154/roleInstances/WebRole1_IN_0\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154/roleInstances/WebRole1_IN_0/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"WebRole1_IN_1\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154/roleInstances/WebRole1_IN_1\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154/roleInstances/WebRole1_IN_1/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1_IN_0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154/roleInstances/WorkerRole1_IN_0\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154/roleInstances/WorkerRole1_IN_0/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2_IN_0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154/roleInstances/WorkerRole2_IN_0\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3006/providers/Microsoft.Compute/cloudServices/cs4154/roleInstances/WorkerRole2_IN_0/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/44eed2b7-05c1-44fb-b37a-fd736bcff020?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNDRlZWQyYjctMDVjMS00NGZiLWIzN2EtZmQ3MzZiY2ZmMDIwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "21c85adc-ce6a-47e2-a9ff-b6534e8e0162" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "b5166b45-abbf-491f-939d-ca2d189a8868" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T072216Z:b5166b45-abbf-491f-939d-ca2d189a8868" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:22:15 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:51:42.3339276+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"44eed2b7-05c1-44fb-b37a-fd736bcff020\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/44eed2b7-05c1-44fb-b37a-fd736bcff020?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNDRlZWQyYjctMDVjMS00NGZiLWIzN2EtZmQ3MzZiY2ZmMDIwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "13c85655-31d9-4099-9669-28272d3bdeeb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "3af54435-1f16-4873-bf31-a58ce8955a30" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T072246Z:3af54435-1f16-4873-bf31-a58ce8955a30" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:22:46 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:51:42.3339276+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"44eed2b7-05c1-44fb-b37a-fd736bcff020\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/44eed2b7-05c1-44fb-b37a-fd736bcff020?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNDRlZWQyYjctMDVjMS00NGZiLWIzN2EtZmQ3MzZiY2ZmMDIwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "f56db045-927f-49b9-aab5-522069433f58" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "27d26eaa-70da-474e-a97e-69c3a8f13d9e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T072316Z:27d26eaa-70da-474e-a97e-69c3a8f13d9e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:23:15 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:51:42.3339276+05:30\",\r\n \"endTime\": \"2021-03-14T12:53:04.4122228+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"44eed2b7-05c1-44fb-b37a-fd736bcff020\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/c1a65b74-172d-4783-8436-cd0f3d638eeb?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvYzFhNjViNzQtMTcyZC00NzgzLTg0MzYtY2QwZjNkNjM4ZWViP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "81fc9b16-7c25-4aa3-8ab4-fb0a29945a94" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-correlation-request-id": [ + "79b17963-4295-497e-a4d0-3f89407c89ba" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T072354Z:79b17963-4295-497e-a4d0-3f89407c89ba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:23:54 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:53:21.1467948+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c1a65b74-172d-4783-8436-cd0f3d638eeb\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/c1a65b74-172d-4783-8436-cd0f3d638eeb?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvYzFhNjViNzQtMTcyZC00NzgzLTg0MzYtY2QwZjNkNjM4ZWViP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "a808e338-06b6-4130-8d6e-6ad620ac62f6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "a302a368-900b-4ce9-aea5-8775fe3b913d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T072425Z:a302a368-900b-4ce9-aea5-8775fe3b913d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:24:24 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:53:21.1467948+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c1a65b74-172d-4783-8436-cd0f3d638eeb\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/c1a65b74-172d-4783-8436-cd0f3d638eeb?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvYzFhNjViNzQtMTcyZC00NzgzLTg0MzYtY2QwZjNkNjM4ZWViP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "c94e5e73-ff27-4805-9cbc-f9b7dc48679e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-correlation-request-id": [ + "ab3812e5-ae32-4760-9fd3-c86da5e9600e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T072455Z:ab3812e5-ae32-4760-9fd3-c86da5e9600e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:24:54 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:53:21.1467948+05:30\",\r\n \"endTime\": \"2021-03-14T12:54:53.1940692+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c1a65b74-172d-4783-8436-cd0f3d638eeb\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3006/providers/Microsoft.Compute/cloudServices/cs4154?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjMwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M0MTU0P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6ce31a85-6161-417b-ba62-680518d244b1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/0e948fa8-bf4e-4dc7-8bf7-c1b4dc351c63?monitor=true&api-version=2021-03-01" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/0e948fa8-bf4e-4dc7-8bf7-c1b4dc351c63?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0e948fa8-bf4e-4dc7-8bf7-c1b4dc351c63" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;291" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "5dadaefa-64f1-4588-839e-59049a7b5da1" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T072457Z:5dadaefa-64f1-4588-839e-59049a7b5da1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:24:56 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/0e948fa8-bf4e-4dc7-8bf7-c1b4dc351c63?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMGU5NDhmYTgtYmY0ZS00ZGM3LThiZjctYzFiNGRjMzUxYzYzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "1b959bc8-0a08-4649-9be6-97c4a17c920c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-correlation-request-id": [ + "a7630605-1fa4-41ed-9e3c-c2429743918d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T072527Z:a7630605-1fa4-41ed-9e3c-c2429743918d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:25:27 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:54:57.2096808+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0e948fa8-bf4e-4dc7-8bf7-c1b4dc351c63\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/0e948fa8-bf4e-4dc7-8bf7-c1b4dc351c63?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMGU5NDhmYTgtYmY0ZS00ZGM3LThiZjctYzFiNGRjMzUxYzYzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "a701eafd-7a8d-4851-acd0-0aa434847e29" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-correlation-request-id": [ + "fe7e0a93-e605-46b4-a47e-bb0d6b4641a1" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T072557Z:fe7e0a93-e605-46b4-a47e-bb0d6b4641a1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:25:56 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:54:57.2096808+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0e948fa8-bf4e-4dc7-8bf7-c1b4dc351c63\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/0e948fa8-bf4e-4dc7-8bf7-c1b4dc351c63?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMGU5NDhmYTgtYmY0ZS00ZGM3LThiZjctYzFiNGRjMzUxYzYzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "e45a4791-7b15-4d6e-abaa-f66958a32a06" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-correlation-request-id": [ + "574dec08-af63-49f1-b950-11baefb81832" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T072628Z:574dec08-af63-49f1-b950-11baefb81832" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:26:27 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:54:57.2096808+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0e948fa8-bf4e-4dc7-8bf7-c1b4dc351c63\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/0e948fa8-bf4e-4dc7-8bf7-c1b4dc351c63?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMGU5NDhmYTgtYmY0ZS00ZGM3LThiZjctYzFiNGRjMzUxYzYzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "682bbb48-810d-4162-920b-19329b9949ba" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "80066035-31f9-47c8-aa9a-589a4b06c582" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T072658Z:80066035-31f9-47c8-aa9a-589a4b06c582" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:26:58 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:54:57.2096808+05:30\",\r\n \"endTime\": \"2021-03-14T12:56:37.9914853+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0e948fa8-bf4e-4dc7-8bf7-c1b4dc351c63\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/0e948fa8-bf4e-4dc7-8bf7-c1b4dc351c63?monitor=true&api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMGU5NDhmYTgtYmY0ZS00ZGM3LThiZjctYzFiNGRjMzUxYzYzP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "f499a1ea-faab-45fb-9a13-99f036ed8bd5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-correlation-request-id": [ + "728bac01-a70d-4c90-a4e3-45be380f16f6" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T072659Z:728bac01-a70d-4c90-a4e3-45be380f16f6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:26:59 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar3006?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjMwMDY/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e0a310f-3d98-4b91-a178-7d30e949ba87" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIzMDA2LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "5f02ec73-a5b7-4825-9b60-fd5995649d37" + ], + "x-ms-correlation-request-id": [ + "5f02ec73-a5b7-4825-9b60-fd5995649d37" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T072703Z:5f02ec73-a5b7-4825-9b60-fd5995649d37" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 07:27:02 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + } + ], + "Names": { + "MultiRole_CreateUpdateGetAndDeleteWithExtension_WorkerAndWebRole": [ + "crptestar3006", + "cs4154", + "cspip3698", + "csvnet2740", + "subnet8692", + "dns4678", + "lb7730", + "lbfe938" + ], + "CreateCspkgSasUrl": [ + "saforcspkg9141", + "asforcspkg6034" + ] + }, + "Variables": { + "SubscriptionId": "0296790d-427c-48ca-b204-8b729bbd8670" + } +} \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceExtensionTests/MultiRole_CreateUpdateGetAndDeleteWithExtension_WorkerAndWebRole_MultiRoleExtension.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceExtensionTests/MultiRole_CreateUpdateGetAndDeleteWithExtension_WorkerAndWebRole_MultiRoleExtension.json new file mode 100644 index 0000000000000..cbe414758cfb0 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceExtensionTests/MultiRole_CreateUpdateGetAndDeleteWithExtension_WorkerAndWebRole_MultiRoleExtension.json @@ -0,0 +1,5372 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar4006?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjQwMDY/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar4006\": \"2021-03-22 06:11:33Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1e8a0643-43ef-402c-ad8a-42e226d3b027" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "93" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "c73d971a-0605-4dcc-9da5-fabe6d613fcc" + ], + "x-ms-correlation-request-id": [ + "c73d971a-0605-4dcc-9da5-fabe6d613fcc" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T061135Z:c73d971a-0605-4dcc-9da5-fabe6d613fcc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:11:34 GMT" + ], + "Content-Length": [ + "228" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006\",\r\n \"name\": \"crptestar4006\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar4006\": \"2021-03-22 06:11:33Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar4006?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjQwMDY/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar4006\": \"2021-03-22 06:11:52Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "82bcbea7-7997-49ba-ae9f-e91baba55bc0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "93" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "7cec0b0a-a03e-42ee-83da-5c3d673df8ad" + ], + "x-ms-correlation-request-id": [ + "7cec0b0a-a03e-42ee-83da-5c3d673df8ad" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T061154Z:7cec0b0a-a03e-42ee-83da-5c3d673df8ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:11:53 GMT" + ], + "Content-Length": [ + "228" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006\",\r\n \"name\": \"crptestar4006\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar4006\": \"2021-03-22 06:11:52Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar4006?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjQwMDY/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0266ead7-31f1-468c-858d-a1bbb9ba11ba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "b8de30e9-7ba9-426c-8c10-48b7eafda467" + ], + "x-ms-correlation-request-id": [ + "b8de30e9-7ba9-426c-8c10-48b7eafda467" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T061421Z:b8de30e9-7ba9-426c-8c10-48b7eafda467" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:14:21 GMT" + ], + "Content-Length": [ + "180" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006\",\r\n \"name\": \"crptestar4006\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar4006?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjQwMDY/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0ac15f0d-6025-4e24-8b84-693290ed4187" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "117a2a18-10ab-4223-afa7-7748b8d7a721" + ], + "x-ms-correlation-request-id": [ + "117a2a18-10ab-4223-afa7-7748b8d7a721" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062138Z:117a2a18-10ab-4223-afa7-7748b8d7a721" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:21:37 GMT" + ], + "Content-Length": [ + "180" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006\",\r\n \"name\": \"crptestar4006\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar4006?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjQwMDY/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "19413744-1d38-443d-b477-63e3c0e35541" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "fd08081a-b1aa-4562-891b-213ec0404ddf" + ], + "x-ms-correlation-request-id": [ + "fd08081a-b1aa-4562-891b-213ec0404ddf" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062316Z:fd08081a-b1aa-4562-891b-213ec0404ddf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:23:15 GMT" + ], + "Content-Length": [ + "180" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006\",\r\n \"name\": \"crptestar4006\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar4006?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjQwMDY/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "414f8c5e-da56-4fd8-aa0b-c603f7342d8c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "e203dd20-8644-40fc-b3ce-02c130dd7495" + ], + "x-ms-correlation-request-id": [ + "e203dd20-8644-40fc-b3ce-02c130dd7495" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062526Z:e203dd20-8644-40fc-b3ce-02c130dd7495" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:25:26 GMT" + ], + "Content-Length": [ + "180" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006\",\r\n \"name\": \"crptestar4006\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar4006?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjQwMDY/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "738dd403-3a53-4b16-a2bc-e903533fa1a3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "a3479ea9-4bf4-41fe-9a98-51c5d2ccaa61" + ], + "x-ms-correlation-request-id": [ + "a3479ea9-4bf4-41fe-9a98-51c5d2ccaa61" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062705Z:a3479ea9-4bf4-41fe-9a98-51c5d2ccaa61" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:27:05 GMT" + ], + "Content-Length": [ + "180" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006\",\r\n \"name\": \"crptestar4006\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/virtualNetworks/csvnet9639?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9jc3ZuZXQ5NjM5P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"subnet399\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "60623ce0-f319-492b-a790-78f86a3b1510" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "296" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "98b116bd-04e7-4277-b372-3b60e148610e" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/98b116bd-04e7-4277-b372-3b60e148610e?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "2fb85681-1fdb-4755-90c4-ce1678c377fd" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "c13f285d-0a03-4db5-81f1-6d4f69f406de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T061143Z:2fb85681-1fdb-4755-90c4-ce1678c377fd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:11:42 GMT" + ], + "Content-Length": [ + "1230" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"csvnet9639\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/virtualNetworks/csvnet9639\",\r\n \"etag\": \"W/\\\"08507437-e63d-4bc8-9887-ab8371e59237\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ee92b3dc-1c42-423f-9d9e-fa40cd7dc318\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet399\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/virtualNetworks/csvnet9639/subnets/subnet399\",\r\n \"etag\": \"W/\\\"08507437-e63d-4bc8-9887-ab8371e59237\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/98b116bd-04e7-4277-b372-3b60e148610e?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzk4YjExNmJkLTA0ZTctNDI3Ny1iMzcyLTNiNjBlMTQ4NjEwZT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f9bd3a50-3cc9-467d-b848-198f471ffa13" + ], + "x-ms-correlation-request-id": [ + "b281e3a3-e68c-4327-b998-ff524da7acc5" + ], + "x-ms-arm-service-request-id": [ + "889f7686-19f6-4c45-a99d-2a8a3d55c826" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T061146Z:b281e3a3-e68c-4327-b998-ff524da7acc5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:11:46 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/virtualNetworks/csvnet9639?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9jc3ZuZXQ5NjM5P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"8944b6a8-0f50-4937-8be5-4f12e01c9342\"" + ], + "x-ms-request-id": [ + "d93902a3-803b-4e15-b2e9-6a689927b56d" + ], + "x-ms-correlation-request-id": [ + "f31890e1-8fff-4781-915e-f1a919f1235d" + ], + "x-ms-arm-service-request-id": [ + "2c9a53e0-4778-4481-b3b7-cc3ca82cf131" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T061146Z:f31890e1-8fff-4781-915e-f1a919f1235d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:11:46 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"csvnet9639\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/virtualNetworks/csvnet9639\",\r\n \"etag\": \"W/\\\"8944b6a8-0f50-4937-8be5-4f12e01c9342\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ee92b3dc-1c42-423f-9d9e-fa40cd7dc318\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet399\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/virtualNetworks/csvnet9639/subnets/subnet399\",\r\n \"etag\": \"W/\\\"8944b6a8-0f50-4937-8be5-4f12e01c9342\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/publicIPAddresses/cspip2917?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2NzcGlwMjkxNz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns3669\"\r\n }\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "13ee25eb-2c61-40ae-ba71-0e0b51186f69" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "163" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "7bda3b6d-5520-46bd-8118-733dbf12365d" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/7bda3b6d-5520-46bd-8118-733dbf12365d?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "383eea94-fce5-4f9a-8a02-89250e7dbd8f" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "799c4534-b8f2-4a7e-8740-d226d93f266d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T061151Z:383eea94-fce5-4f9a-8a02-89250e7dbd8f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:11:50 GMT" + ], + "Content-Length": [ + "724" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cspip2917\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/publicIPAddresses/cspip2917\",\r\n \"etag\": \"W/\\\"1309fabc-9f1f-4d6a-aecb-bb8b2d06e874\\\"\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a329840f-3d61-4910-be6d-d2e39babd913\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns3669\",\r\n \"fqdn\": \"dns3669.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/7bda3b6d-5520-46bd-8118-733dbf12365d?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzdiZGEzYjZkLTU1MjAtNDZiZC04MTE4LTczM2RiZjEyMzY1ZD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6a583198-5ca9-4a84-a40d-3ade59ba9a1d" + ], + "x-ms-correlation-request-id": [ + "f46e3bf2-85e2-4e69-ab1d-de56224c5078" + ], + "x-ms-arm-service-request-id": [ + "f910005e-f4b1-4c95-8b28-dc53892a37ee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T061152Z:f46e3bf2-85e2-4e69-ab1d-de56224c5078" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:11:51 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/publicIPAddresses/cspip2917?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2NzcGlwMjkxNz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"b4a4658d-03d6-4597-87ee-01aa329313f8\"" + ], + "x-ms-request-id": [ + "55fc6967-e4d6-4757-a7c6-0cac1670f839" + ], + "x-ms-correlation-request-id": [ + "38b4fc63-5554-4cd6-aa4b-4582a1930475" + ], + "x-ms-arm-service-request-id": [ + "083f0fe2-b190-4c4b-9e4c-461aaa45dbf4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T061152Z:38b4fc63-5554-4cd6-aa4b-4582a1930475" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:11:52 GMT" + ], + "Content-Length": [ + "725" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cspip2917\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/publicIPAddresses/cspip2917\",\r\n \"etag\": \"W/\\\"b4a4658d-03d6-4597-87ee-01aa329313f8\\\"\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a329840f-3d61-4910-be6d-d2e39babd913\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns3669\",\r\n \"fqdn\": \"dns3669.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Storage/storageAccounts/saforcspkg2720?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmNzcGtnMjcyMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "805045af-937d-4a60-b400-885495169332" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "89" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Storage/locations/eastus2/asyncoperations/eb6d5d67-9a56-467c-94e3-1d76258f6f61?monitor=true&api-version=2015-06-15" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "eb6d5d67-9a56-467c-94e3-1d76258f6f61" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "da24989c-a081-4f0e-b00e-8aa522d2fdfd" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T061200Z:da24989c-a081-4f0e-b00e-8aa522d2fdfd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:11:59 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Storage/locations/eastus2/asyncoperations/eb6d5d67-9a56-467c-94e3-1d76258f6f61?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvZWI2ZDVkNjctOWE1Ni00NjdjLTk0ZTMtMWQ3NjI1OGY2ZjYxP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e2a2e1ea-a7b1-482f-9654-5a64d5ada22d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "f66a2213-7732-4009-8412-aebdbd494d22" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T061217Z:f66a2213-7732-4009-8412-aebdbd494d22" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:12:16 GMT" + ], + "Content-Length": [ + "89" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7e3bd15f-06fc-4fd8-a8ca-359295e2013d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "dad5a87d-e162-4be0-8f8e-6580599a3eda" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "f791de2e-52e9-43d5-94f0-49aca1b0588c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T061227Z:f791de2e-52e9-43d5-94f0-49aca1b0588c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:12:27 GMT" + ], + "Content-Length": [ + "747" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Storage/storageAccounts/saforcspkg2720\",\r\n \"name\": \"saforcspkg2720\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-03-22T06:11:59.3454683Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforcspkg2720.blob.core.windows.net/\",\r\n \"queue\": \"https://saforcspkg2720.queue.core.windows.net/\",\r\n \"table\": \"https://saforcspkg2720.table.core.windows.net/\",\r\n \"file\": \"https://saforcspkg2720.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Storage/storageAccounts/saforcspkg2720?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmNzcGtnMjcyMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f7d80f83-6555-4ff4-bdeb-8c56a0fb6805" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "038dd42d-6252-4e68-8014-bc33f426327b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "0cff50a4-cc6f-41f5-b711-15e8cc77336b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T061227Z:0cff50a4-cc6f-41f5-b711-15e8cc77336b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:12:27 GMT" + ], + "Content-Length": [ + "735" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Storage/storageAccounts/saforcspkg2720\",\r\n \"name\": \"saforcspkg2720\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-03-22T06:11:59.3454683Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforcspkg2720.blob.core.windows.net/\",\r\n \"queue\": \"https://saforcspkg2720.queue.core.windows.net/\",\r\n \"table\": \"https://saforcspkg2720.table.core.windows.net/\",\r\n \"file\": \"https://saforcspkg2720.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Storage/storageAccounts/saforcspkg2720/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmNzcGtnMjcyMC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b60f3a73-8cff-46ad-8803-4103bc8e1924" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8620927c-c1da-49d8-9fe6-71be5fc9eaa0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "bebe3092-24b8-4818-ae6c-919e29558cc3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T061228Z:bebe3092-24b8-4818-ae6c-919e29558cc3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:12:28 GMT" + ], + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"ZCMhzHQpHQFShb7dBI69nF474CoIxeXcY3cmKAJbY9j4zCUbD+6iE0lj+7TSJnl7vRnmmkwQu3mBTOZoi3B7tA==\",\r\n \"key2\": \"yxDurjf7EXHdsflVsjZJruTOtRCPL/lR0gR+XqLBzoEbIKtv8OxrcsOoLX6fzkWuTmFyES8E4aH2H0kfNdP1cg==\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Compute/cloudServices/cs3038?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MzMDM4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"packageUrl\": \"https://saforcspkg2720.blob.core.windows.net/sascontainer/TestCloudServiceMultiRole_WorkerRole1(Standard_D2_v2)(1)_WorkerRole2(Standard_D1_v2)(1)_WebRole1(Standard_A2_v2)(2).cspkg?sv=2017-04-17&sr=b&sig=vVStEGEryInkX9fLGNz7Wn8XDQS4orlwyEvW6Y0q2nw%3D&st=2021-03-21T06%3A14%3A19Z&se=2021-03-24T06%3A14%3A19Z&sp=rw\",\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb3582\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"lbfe797\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/publicIPAddresses/cspip2917\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\",\r\n \"protectedSettings\": \"VsmrdpTest!\"\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a46646df-e367-48b8-a9cf-ecbd8478bce9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "4041" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/c488a854-b0b8-489f-b506-94796cddc662?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c488a854-b0b8-489f-b506-94796cddc662" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;297" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "b785a823-c558-47b6-a036-7cfead6472a7" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T061428Z:b785a823-c558-47b6-a036-7cfead6472a7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:14:27 GMT" + ], + "Content-Length": [ + "3839" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs3038\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb3582\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe797\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/publicIPAddresses/cspip2917\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"rolesAppliedTo\": [\r\n \"*\"\r\n ],\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"uniqueId\": \"d41ebfe8-e60e-4b18-a794-f5115de66b68\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Compute/cloudServices/cs3038?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MzMDM4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"packageUrl\": \"https://saforcspkg2720.blob.core.windows.net/sascontainer/TestCloudServiceMultiRole_WorkerRole1(Standard_D2_v2)(1)_WorkerRole2(Standard_D1_v2)(1)_WebRole1(Standard_A2_v2)(2).cspkg?sv=2017-04-17&sr=b&sig=vVStEGEryInkX9fLGNz7Wn8XDQS4orlwyEvW6Y0q2nw%3D&st=2021-03-21T06%3A14%3A19Z&se=2021-03-24T06%3A14%3A19Z&sp=rw\",\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb3582\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"lbfe797\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/publicIPAddresses/cspip2917\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\",\r\n \"protectedSettings\": \"VsmrdpTest!\"\r\n }\r\n },\r\n {\r\n \"name\": \"MonitoringExtension\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Security\",\r\n \"type\": \"Monitoring\",\r\n \"typeHandlerVersion\": \"3.1.0.0\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"rolesAppliedTo\": [\r\n \"WorkerRole1\"\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f6adb8c7-245f-4c47-8e87-a9c45fadb54f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "4405" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/78a8e225-aeba-4821-837c-2769b7d4b185?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "78a8e225-aeba-4821-837c-2769b7d4b185" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;297" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "e8df41ef-58aa-42b9-a23c-660a321e0431" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062142Z:e8df41ef-58aa-42b9-a23c-660a321e0431" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:21:42 GMT" + ], + "Content-Length": [ + "4249" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs3038\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb3582\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe797\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/publicIPAddresses/cspip2917\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"rolesAppliedTo\": [\r\n \"*\"\r\n ],\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\"\r\n }\r\n },\r\n {\r\n \"name\": \"MonitoringExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Updating\",\r\n \"rolesAppliedTo\": [\r\n \"WorkerRole1\"\r\n ],\r\n \"publisher\": \"Microsoft.Azure.Security\",\r\n \"type\": \"Monitoring\",\r\n \"typeHandlerVersion\": \"3.1.0.0\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"uniqueId\": \"d41ebfe8-e60e-4b18-a794-f5115de66b68\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Compute/cloudServices/cs3038?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MzMDM4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"packageUrl\": \"https://saforcspkg2720.blob.core.windows.net/sascontainer/TestCloudServiceMultiRole_WorkerRole1(Standard_D2_v2)(1)_WorkerRole2(Standard_D1_v2)(1)_WebRole1(Standard_A2_v2)(2).cspkg?sv=2017-04-17&sr=b&sig=vVStEGEryInkX9fLGNz7Wn8XDQS4orlwyEvW6Y0q2nw%3D&st=2021-03-21T06%3A14%3A19Z&se=2021-03-24T06%3A14%3A19Z&sp=rw\",\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb3582\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"lbfe797\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/publicIPAddresses/cspip2917\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"MonitoringExtension\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Security\",\r\n \"type\": \"Monitoring\",\r\n \"typeHandlerVersion\": \"3.1.0.0\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"rolesAppliedTo\": [\r\n \"WorkerRole1\"\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\",\r\n \"protectedSettings\": \"VsmrdpTest!\",\r\n \"rolesAppliedTo\": [\r\n \"WorkerRole2\"\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03ec80d4-0f74-4ad2-a575-6187c7ec9e6f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "4483" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/19dab4c9-c810-4b08-8650-69ec05cf9290?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "19dab4c9-c810-4b08-8650-69ec05cf9290" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;296" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "3a494ca5-1442-4c82-8a29-e79bf4aa1294" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062320Z:3a494ca5-1442-4c82-8a29-e79bf4aa1294" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:23:20 GMT" + ], + "Content-Length": [ + "4259" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs3038\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb3582\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe797\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/publicIPAddresses/cspip2917\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"rolesAppliedTo\": [\r\n \"WorkerRole2\"\r\n ],\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\"\r\n }\r\n },\r\n {\r\n \"name\": \"MonitoringExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Updating\",\r\n \"rolesAppliedTo\": [\r\n \"WorkerRole1\"\r\n ],\r\n \"publisher\": \"Microsoft.Azure.Security\",\r\n \"type\": \"Monitoring\",\r\n \"typeHandlerVersion\": \"3.1.0.0\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"uniqueId\": \"d41ebfe8-e60e-4b18-a794-f5115de66b68\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Compute/cloudServices/cs3038?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MzMDM4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"packageUrl\": \"https://saforcspkg2720.blob.core.windows.net/sascontainer/TestCloudServiceMultiRole_WorkerRole1(Standard_D2_v2)(1)_WorkerRole2(Standard_D1_v2)(1)_WebRole1(Standard_A2_v2)(2).cspkg?sv=2017-04-17&sr=b&sig=vVStEGEryInkX9fLGNz7Wn8XDQS4orlwyEvW6Y0q2nw%3D&st=2021-03-21T06%3A14%3A19Z&se=2021-03-24T06%3A14%3A19Z&sp=rw\",\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb3582\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"lbfe797\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/publicIPAddresses/cspip2917\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\",\r\n \"protectedSettings\": \"VsmrdpTest!\",\r\n \"rolesAppliedTo\": [\r\n \"WorkerRole2\"\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"MonitoringExtension\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Azure.Security\",\r\n \"type\": \"Monitoring\",\r\n \"typeHandlerVersion\": \"3.1.0.0\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"rolesAppliedTo\": [\r\n \"*\"\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e83f38f5-9f69-45d7-8ac6-8223cbaa100d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "4473" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/4ef36f44-2677-47a2-90a7-2b590bc8c953?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4ef36f44-2677-47a2-90a7-2b590bc8c953" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;296" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "6fe269a1-fde6-4aac-91c5-1932e0beda3e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062531Z:6fe269a1-fde6-4aac-91c5-1932e0beda3e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:25:30 GMT" + ], + "Content-Length": [ + "4249" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs3038\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb3582\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe797\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/publicIPAddresses/cspip2917\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"rolesAppliedTo\": [\r\n \"WorkerRole2\"\r\n ],\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\"\r\n }\r\n },\r\n {\r\n \"name\": \"MonitoringExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Updating\",\r\n \"rolesAppliedTo\": [\r\n \"*\"\r\n ],\r\n \"publisher\": \"Microsoft.Azure.Security\",\r\n \"type\": \"Monitoring\",\r\n \"typeHandlerVersion\": \"3.1.0.0\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"uniqueId\": \"d41ebfe8-e60e-4b18-a794-f5115de66b68\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Compute/cloudServices/cs3038?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MzMDM4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"packageUrl\": \"https://saforcspkg2720.blob.core.windows.net/sascontainer/TestCloudServiceMultiRole_WorkerRole1(Standard_D2_v2)(1)_WorkerRole2(Standard_D1_v2)(1)_WebRole1(Standard_A2_v2)(2).cspkg?sv=2017-04-17&sr=b&sig=vVStEGEryInkX9fLGNz7Wn8XDQS4orlwyEvW6Y0q2nw%3D&st=2021-03-21T06%3A14%3A19Z&se=2021-03-24T06%3A14%3A19Z&sp=rw\",\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb3582\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"lbfe797\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/publicIPAddresses/cspip2917\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\",\r\n \"protectedSettings\": \"VsmrdpTest!\",\r\n \"rolesAppliedTo\": [\r\n \"WorkerRole2\"\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5c65ff3-7970-4072-95f7-08b5cc6e44c5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "4119" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/02b5ea27-9223-439b-bb6b-83bd5b286982?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "02b5ea27-9223-439b-bb6b-83bd5b286982" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;295" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "55d8a74e-a463-4538-a524-bd6337c8db51" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062709Z:55d8a74e-a463-4538-a524-bd6337c8db51" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:27:08 GMT" + ], + "Content-Length": [ + "3849" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs3038\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb3582\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe797\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/publicIPAddresses/cspip2917\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"rolesAppliedTo\": [\r\n \"WorkerRole2\"\r\n ],\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"uniqueId\": \"d41ebfe8-e60e-4b18-a794-f5115de66b68\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/c488a854-b0b8-489f-b506-94796cddc662?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvYzQ4OGE4NTQtYjBiOC00ODlmLWI1MDYtOTQ3OTZjZGRjNjYyP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "a0896155-37ff-4eb2-81c7-361bd9ce0de4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "1ed01a6c-84e0-4eb0-8f4c-eb4677fcccaf" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T061459Z:1ed01a6c-84e0-4eb0-8f4c-eb4677fcccaf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:14:59 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:44:26.7687564+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c488a854-b0b8-489f-b506-94796cddc662\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/c488a854-b0b8-489f-b506-94796cddc662?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvYzQ4OGE4NTQtYjBiOC00ODlmLWI1MDYtOTQ3OTZjZGRjNjYyP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "d14eac04-a187-4d89-9716-ec0e9ab1e4cd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "fe5fded7-b3df-43e5-a749-94d5579e20aa" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T061529Z:fe5fded7-b3df-43e5-a749-94d5579e20aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:15:29 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:44:26.7687564+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c488a854-b0b8-489f-b506-94796cddc662\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/c488a854-b0b8-489f-b506-94796cddc662?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvYzQ4OGE4NTQtYjBiOC00ODlmLWI1MDYtOTQ3OTZjZGRjNjYyP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "afc66811-fe90-4139-8c09-103911a70dc0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "e3c31086-b670-4d8d-a66f-605cc7155216" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T061559Z:e3c31086-b670-4d8d-a66f-605cc7155216" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:15:59 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:44:26.7687564+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c488a854-b0b8-489f-b506-94796cddc662\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/c488a854-b0b8-489f-b506-94796cddc662?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvYzQ4OGE4NTQtYjBiOC00ODlmLWI1MDYtOTQ3OTZjZGRjNjYyP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "986544b3-afd4-465d-a058-c096f608b4fb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "9b5268fc-648b-4100-ba84-bda4913b15d5" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T061630Z:9b5268fc-648b-4100-ba84-bda4913b15d5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:16:30 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:44:26.7687564+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c488a854-b0b8-489f-b506-94796cddc662\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/c488a854-b0b8-489f-b506-94796cddc662?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvYzQ4OGE4NTQtYjBiOC00ODlmLWI1MDYtOTQ3OTZjZGRjNjYyP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "4badd4be-9a37-45d0-9bd3-a8b557c7683d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "86c99fc1-eeda-4050-824e-b475056999fb" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T061700Z:86c99fc1-eeda-4050-824e-b475056999fb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:17:00 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:44:26.7687564+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c488a854-b0b8-489f-b506-94796cddc662\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/c488a854-b0b8-489f-b506-94796cddc662?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvYzQ4OGE4NTQtYjBiOC00ODlmLWI1MDYtOTQ3OTZjZGRjNjYyP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "307039ee-1ef3-4098-809d-78127fafcb1a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "48df2b5a-19ba-4283-ae2e-3b2d885c91bb" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T061730Z:48df2b5a-19ba-4283-ae2e-3b2d885c91bb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:17:29 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:44:26.7687564+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c488a854-b0b8-489f-b506-94796cddc662\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/c488a854-b0b8-489f-b506-94796cddc662?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvYzQ4OGE4NTQtYjBiOC00ODlmLWI1MDYtOTQ3OTZjZGRjNjYyP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "d2d2e4cd-c1b4-4bc9-91a0-92a82a260d86" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "3980f01b-b9c1-4506-b599-b59a046a336b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T061801Z:3980f01b-b9c1-4506-b599-b59a046a336b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:18:00 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:44:26.7687564+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c488a854-b0b8-489f-b506-94796cddc662\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/c488a854-b0b8-489f-b506-94796cddc662?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvYzQ4OGE4NTQtYjBiOC00ODlmLWI1MDYtOTQ3OTZjZGRjNjYyP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "f41e34dc-45e8-4a0a-ace8-18f4e53d72b7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "914d0c24-55d0-41e0-924e-7159bbaf1966" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T061831Z:914d0c24-55d0-41e0-924e-7159bbaf1966" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:18:30 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:44:26.7687564+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c488a854-b0b8-489f-b506-94796cddc662\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/c488a854-b0b8-489f-b506-94796cddc662?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvYzQ4OGE4NTQtYjBiOC00ODlmLWI1MDYtOTQ3OTZjZGRjNjYyP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "9e157527-043b-4a88-ac3f-00691743b5f4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "ec7a3917-57d4-4c0b-a323-7e208dc4dcda" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T061901Z:ec7a3917-57d4-4c0b-a323-7e208dc4dcda" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:19:01 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:44:26.7687564+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c488a854-b0b8-489f-b506-94796cddc662\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/c488a854-b0b8-489f-b506-94796cddc662?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvYzQ4OGE4NTQtYjBiOC00ODlmLWI1MDYtOTQ3OTZjZGRjNjYyP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "a7dafa08-8332-4bbb-909f-efbc1f48a7dd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "97cc7919-501f-43a7-9745-cd0d711a67bf" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T061931Z:97cc7919-501f-43a7-9745-cd0d711a67bf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:19:31 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:44:26.7687564+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c488a854-b0b8-489f-b506-94796cddc662\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/c488a854-b0b8-489f-b506-94796cddc662?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvYzQ4OGE4NTQtYjBiOC00ODlmLWI1MDYtOTQ3OTZjZGRjNjYyP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "5bead816-c88c-4e41-8a23-3c2d12546158" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "98ffa8e5-bfdd-4506-94fc-e258af1997b1" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062002Z:98ffa8e5-bfdd-4506-94fc-e258af1997b1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:20:02 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:44:26.7687564+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c488a854-b0b8-489f-b506-94796cddc662\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/c488a854-b0b8-489f-b506-94796cddc662?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvYzQ4OGE4NTQtYjBiOC00ODlmLWI1MDYtOTQ3OTZjZGRjNjYyP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "e84b8570-182b-4c91-b62a-3ba015f4d531" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "d6bef366-6577-4e9c-a2a1-1a59caeb424a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062032Z:d6bef366-6577-4e9c-a2a1-1a59caeb424a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:20:32 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:44:26.7687564+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c488a854-b0b8-489f-b506-94796cddc662\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/c488a854-b0b8-489f-b506-94796cddc662?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvYzQ4OGE4NTQtYjBiOC00ODlmLWI1MDYtOTQ3OTZjZGRjNjYyP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "135eee92-f1c3-454b-90a5-51ec6d2d8f14" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "1140502f-f848-4654-9ca4-74b7f2040ce9" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062103Z:1140502f-f848-4654-9ca4-74b7f2040ce9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:21:02 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:44:26.7687564+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c488a854-b0b8-489f-b506-94796cddc662\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/c488a854-b0b8-489f-b506-94796cddc662?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvYzQ4OGE4NTQtYjBiOC00ODlmLWI1MDYtOTQ3OTZjZGRjNjYyP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "3a4ee09e-70a6-4d1b-a960-ae873010854f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "b3f0372c-3b01-43a9-bdd0-0a8c038165d6" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062133Z:b3f0372c-3b01-43a9-bdd0-0a8c038165d6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:21:32 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:44:26.7687564+05:30\",\r\n \"endTime\": \"2021-03-22T11:51:21.1618287+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c488a854-b0b8-489f-b506-94796cddc662\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Compute/cloudServices/cs3038?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MzMDM4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "80051af5-de0c-4bbb-abef-629c1466e3ef" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;398,Microsoft.Compute/GetCloudService30Min;2589" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "6999baa1-b56f-4be0-b5c6-5cf1d98aadd1" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062133Z:6999baa1-b56f-4be0-b5c6-5cf1d98aadd1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:21:32 GMT" + ], + "Content-Length": [ + "3841" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs3038\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb3582\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe797\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/publicIPAddresses/cspip2917\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"*\"\r\n ],\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"d41ebfe8-e60e-4b18-a794-f5115de66b68\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Compute/cloudServices/cs3038?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MzMDM4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0518078e-800a-4591-bd70-7083bbd7d71f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2a09af59-fcda-45d9-9da6-934c5a31a33f" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;397,Microsoft.Compute/GetCloudService30Min;2588" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-correlation-request-id": [ + "3d6d575c-ecde-4275-a110-fd5eafac9252" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062134Z:3d6d575c-ecde-4275-a110-fd5eafac9252" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:21:33 GMT" + ], + "Content-Length": [ + "3841" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs3038\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb3582\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe797\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/publicIPAddresses/cspip2917\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"*\"\r\n ],\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"d41ebfe8-e60e-4b18-a794-f5115de66b68\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Compute/cloudServices/cs3038?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MzMDM4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3eeb021b-c583-436a-89a0-db2169c189ec" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "272ce578-6ca1-4e5b-94d3-c83610479757" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;396,Microsoft.Compute/GetCloudService30Min;2587" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-correlation-request-id": [ + "9902dc57-0a72-45c7-9358-2414bf509a3a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062134Z:9902dc57-0a72-45c7-9358-2414bf509a3a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:21:33 GMT" + ], + "Content-Length": [ + "3841" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs3038\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb3582\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe797\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/publicIPAddresses/cspip2917\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"*\"\r\n ],\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"d41ebfe8-e60e-4b18-a794-f5115de66b68\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Compute/cloudServices/cs3038?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MzMDM4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f763ca0a-f8e4-4163-9f1c-2336e3b40835" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;390,Microsoft.Compute/GetCloudService30Min;2581" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-correlation-request-id": [ + "ec7c051c-291e-4d0e-833d-5823e5119ecf" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062314Z:ec7c051c-291e-4d0e-833d-5823e5119ecf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:23:13 GMT" + ], + "Content-Length": [ + "4252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs3038\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb3582\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe797\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/publicIPAddresses/cspip2917\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"*\"\r\n ],\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\"\r\n }\r\n },\r\n {\r\n \"name\": \"MonitoringExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"WorkerRole1\"\r\n ],\r\n \"publisher\": \"Microsoft.Azure.Security\",\r\n \"type\": \"Monitoring\",\r\n \"typeHandlerVersion\": \"3.1.0.0\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"d41ebfe8-e60e-4b18-a794-f5115de66b68\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Compute/cloudServices/cs3038?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MzMDM4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "135a7a98-54f6-4a55-9aa2-590481fdcbd9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d3340341-7246-4262-92b7-e26cfd898c19" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;389,Microsoft.Compute/GetCloudService30Min;2580" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-correlation-request-id": [ + "98a87c8a-8e63-44f5-8477-7534ce9edb84" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062314Z:98a87c8a-8e63-44f5-8477-7534ce9edb84" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:23:14 GMT" + ], + "Content-Length": [ + "4252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs3038\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb3582\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe797\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/publicIPAddresses/cspip2917\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"*\"\r\n ],\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\"\r\n }\r\n },\r\n {\r\n \"name\": \"MonitoringExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"WorkerRole1\"\r\n ],\r\n \"publisher\": \"Microsoft.Azure.Security\",\r\n \"type\": \"Monitoring\",\r\n \"typeHandlerVersion\": \"3.1.0.0\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"d41ebfe8-e60e-4b18-a794-f5115de66b68\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Compute/cloudServices/cs3038?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MzMDM4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e22782a7-76f7-42ff-b0c0-337094b285fc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "794b2ae6-3cbc-4c67-b9f8-2df0e05bf307" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;388,Microsoft.Compute/GetCloudService30Min;2579" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-correlation-request-id": [ + "f9b65a6d-08f1-488e-a41c-b876e0ac0c5e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062314Z:f9b65a6d-08f1-488e-a41c-b876e0ac0c5e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:23:14 GMT" + ], + "Content-Length": [ + "4252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs3038\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb3582\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe797\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/publicIPAddresses/cspip2917\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"*\"\r\n ],\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\"\r\n }\r\n },\r\n {\r\n \"name\": \"MonitoringExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"WorkerRole1\"\r\n ],\r\n \"publisher\": \"Microsoft.Azure.Security\",\r\n \"type\": \"Monitoring\",\r\n \"typeHandlerVersion\": \"3.1.0.0\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"d41ebfe8-e60e-4b18-a794-f5115de66b68\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Compute/cloudServices/cs3038?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MzMDM4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7f13dcc2-bd04-447f-9082-1130bfd0de34" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;393,Microsoft.Compute/GetCloudService30Min;2576" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-correlation-request-id": [ + "3e20f965-d165-4169-8398-550e24edf159" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062522Z:3e20f965-d165-4169-8398-550e24edf159" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:25:22 GMT" + ], + "Content-Length": [ + "4262" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs3038\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb3582\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe797\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/publicIPAddresses/cspip2917\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"WorkerRole2\"\r\n ],\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\"\r\n }\r\n },\r\n {\r\n \"name\": \"MonitoringExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"WorkerRole1\"\r\n ],\r\n \"publisher\": \"Microsoft.Azure.Security\",\r\n \"type\": \"Monitoring\",\r\n \"typeHandlerVersion\": \"3.1.0.0\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"d41ebfe8-e60e-4b18-a794-f5115de66b68\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Compute/cloudServices/cs3038?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MzMDM4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "96c1e43e-6e6c-4588-9e06-4aabc3a4e0a9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1708de14-950e-4708-a720-a5013c6f691a" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;392,Microsoft.Compute/GetCloudService30Min;2575" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-correlation-request-id": [ + "442d8453-4e5c-4d0d-b236-5734f7430fb2" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062523Z:442d8453-4e5c-4d0d-b236-5734f7430fb2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:25:22 GMT" + ], + "Content-Length": [ + "4262" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs3038\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb3582\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe797\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/publicIPAddresses/cspip2917\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"WorkerRole2\"\r\n ],\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\"\r\n }\r\n },\r\n {\r\n \"name\": \"MonitoringExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"WorkerRole1\"\r\n ],\r\n \"publisher\": \"Microsoft.Azure.Security\",\r\n \"type\": \"Monitoring\",\r\n \"typeHandlerVersion\": \"3.1.0.0\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"d41ebfe8-e60e-4b18-a794-f5115de66b68\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Compute/cloudServices/cs3038?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MzMDM4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6901ca41-a363-4261-be0b-d22116e62662" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7c7da914-8787-482e-8c07-ebef103ed51b" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;391,Microsoft.Compute/GetCloudService30Min;2574" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-correlation-request-id": [ + "e9a4edfd-c880-4641-b452-d3ced2f901cb" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062523Z:e9a4edfd-c880-4641-b452-d3ced2f901cb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:25:22 GMT" + ], + "Content-Length": [ + "4262" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs3038\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb3582\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe797\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/publicIPAddresses/cspip2917\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"WorkerRole2\"\r\n ],\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\"\r\n }\r\n },\r\n {\r\n \"name\": \"MonitoringExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"WorkerRole1\"\r\n ],\r\n \"publisher\": \"Microsoft.Azure.Security\",\r\n \"type\": \"Monitoring\",\r\n \"typeHandlerVersion\": \"3.1.0.0\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"d41ebfe8-e60e-4b18-a794-f5115de66b68\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Compute/cloudServices/cs3038?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MzMDM4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "47391231-a6e7-470e-88da-0e93f4346bf3" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;392,Microsoft.Compute/GetCloudService30Min;2570" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-correlation-request-id": [ + "2613bf3f-274d-4338-b646-d9b4a6e7f3b7" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062702Z:2613bf3f-274d-4338-b646-d9b4a6e7f3b7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:27:01 GMT" + ], + "Content-Length": [ + "4252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs3038\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb3582\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe797\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/publicIPAddresses/cspip2917\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"WorkerRole2\"\r\n ],\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\"\r\n }\r\n },\r\n {\r\n \"name\": \"MonitoringExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"*\"\r\n ],\r\n \"publisher\": \"Microsoft.Azure.Security\",\r\n \"type\": \"Monitoring\",\r\n \"typeHandlerVersion\": \"3.1.0.0\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"d41ebfe8-e60e-4b18-a794-f5115de66b68\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Compute/cloudServices/cs3038?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MzMDM4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6669115b-f935-40d4-bbe7-84f42328e678" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "910734c9-15ad-4ce6-9e46-cc6d1c3ab45e" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;391,Microsoft.Compute/GetCloudService30Min;2569" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-correlation-request-id": [ + "ade26266-7ddd-4d98-aa88-44628ede16df" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062702Z:ade26266-7ddd-4d98-aa88-44628ede16df" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:27:01 GMT" + ], + "Content-Length": [ + "4252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs3038\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb3582\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe797\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/publicIPAddresses/cspip2917\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"WorkerRole2\"\r\n ],\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\"\r\n }\r\n },\r\n {\r\n \"name\": \"MonitoringExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"*\"\r\n ],\r\n \"publisher\": \"Microsoft.Azure.Security\",\r\n \"type\": \"Monitoring\",\r\n \"typeHandlerVersion\": \"3.1.0.0\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"d41ebfe8-e60e-4b18-a794-f5115de66b68\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Compute/cloudServices/cs3038?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MzMDM4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e914236b-9694-414f-a0e7-a7cb5c3674ba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8fc872db-3fe4-4e7e-95fa-612708073efa" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;390,Microsoft.Compute/GetCloudService30Min;2568" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-correlation-request-id": [ + "3f035f8b-448a-43ba-b1d3-a07eb7b745df" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062702Z:3f035f8b-448a-43ba-b1d3-a07eb7b745df" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:27:02 GMT" + ], + "Content-Length": [ + "4252" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs3038\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb3582\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe797\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/publicIPAddresses/cspip2917\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"WorkerRole2\"\r\n ],\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\"\r\n }\r\n },\r\n {\r\n \"name\": \"MonitoringExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"*\"\r\n ],\r\n \"publisher\": \"Microsoft.Azure.Security\",\r\n \"type\": \"Monitoring\",\r\n \"typeHandlerVersion\": \"3.1.0.0\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"d41ebfe8-e60e-4b18-a794-f5115de66b68\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Compute/cloudServices/cs3038?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MzMDM4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b31e5526-7711-410d-a638-d6193b07c296" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;394,Microsoft.Compute/GetCloudService30Min;2566" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" + ], + "x-ms-correlation-request-id": [ + "fbb9a8fc-29a9-43a0-89cb-7628f862cc86" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062840Z:fbb9a8fc-29a9-43a0-89cb-7628f862cc86" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:28:39 GMT" + ], + "Content-Length": [ + "3851" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs3038\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb3582\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe797\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/publicIPAddresses/cspip2917\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"WorkerRole2\"\r\n ],\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"d41ebfe8-e60e-4b18-a794-f5115de66b68\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Compute/cloudServices/cs3038?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MzMDM4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9cc099c0-1c05-4a3a-9c56-d4a22fa78043" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8a0f102c-7052-4305-8a7f-977a603824bf" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;393,Microsoft.Compute/GetCloudService30Min;2565" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11947" + ], + "x-ms-correlation-request-id": [ + "efb76e40-d262-49f7-a785-d6c9e3c4de20" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062841Z:efb76e40-d262-49f7-a785-d6c9e3c4de20" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:28:40 GMT" + ], + "Content-Length": [ + "3851" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs3038\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb3582\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe797\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/publicIPAddresses/cspip2917\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"WorkerRole2\"\r\n ],\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"d41ebfe8-e60e-4b18-a794-f5115de66b68\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Compute/cloudServices/cs3038?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MzMDM4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0e631fbf-cc5c-499f-8017-d1b9cd5c85c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3cf0a374-6fe6-4d3f-98c8-d7799cc46133" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;392,Microsoft.Compute/GetCloudService30Min;2564" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], + "x-ms-correlation-request-id": [ + "77d8f64b-64f5-4e29-b093-62beee35c2e4" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062841Z:77d8f64b-64f5-4e29-b093-62beee35c2e4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:28:40 GMT" + ], + "Content-Length": [ + "3851" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs3038\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb3582\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe797\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Network/publicIPAddresses/cspip2917\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"WorkerRole2\"\r\n ],\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"d41ebfe8-e60e-4b18-a794-f5115de66b68\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MzMDM4L3JvbGVJbnN0YW5jZXM/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b0985ee1-ab89-4e6e-acc4-96231692cd43" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "43dbae31-9ddd-4380-84f2-412bd95de196" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;395,Microsoft.Compute/GetCloudService30Min;2586" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-correlation-request-id": [ + "70c36f0a-b76e-48b0-b8a0-f2b8911c548d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062134Z:70c36f0a-b76e-48b0-b8a0-f2b8911c548d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:21:33 GMT" + ], + "Content-Length": [ + "2748" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"WebRole1_IN_0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WebRole1_IN_0\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WebRole1_IN_0/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"WebRole1_IN_1\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WebRole1_IN_1\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WebRole1_IN_1/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1_IN_0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WorkerRole1_IN_0\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WorkerRole1_IN_0/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2_IN_0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WorkerRole2_IN_0\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WorkerRole2_IN_0/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MzMDM4L3JvbGVJbnN0YW5jZXM/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a17b9ef3-7e72-48a2-b204-334f6b480818" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2c110097-91cc-4c1f-8827-2814ebd5b254" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;387,Microsoft.Compute/GetCloudService30Min;2578" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-correlation-request-id": [ + "1699014e-b7dc-4f0f-89a7-8ddb2e1617ff" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062314Z:1699014e-b7dc-4f0f-89a7-8ddb2e1617ff" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:23:14 GMT" + ], + "Content-Length": [ + "2748" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"WebRole1_IN_0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WebRole1_IN_0\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WebRole1_IN_0/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"WebRole1_IN_1\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WebRole1_IN_1\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WebRole1_IN_1/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1_IN_0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WorkerRole1_IN_0\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WorkerRole1_IN_0/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2_IN_0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WorkerRole2_IN_0\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WorkerRole2_IN_0/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MzMDM4L3JvbGVJbnN0YW5jZXM/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6ba2d985-0d6c-4096-aeb6-e253007f5261" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d17391db-dcce-4035-b0c4-89fea5dac5dd" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;390,Microsoft.Compute/GetCloudService30Min;2573" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-correlation-request-id": [ + "bcf3a97e-d2bd-463b-bc52-8a6da34b4ef1" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062523Z:bcf3a97e-d2bd-463b-bc52-8a6da34b4ef1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:25:22 GMT" + ], + "Content-Length": [ + "2748" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"WebRole1_IN_0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WebRole1_IN_0\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WebRole1_IN_0/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"WebRole1_IN_1\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WebRole1_IN_1\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WebRole1_IN_1/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1_IN_0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WorkerRole1_IN_0\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WorkerRole1_IN_0/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2_IN_0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WorkerRole2_IN_0\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WorkerRole2_IN_0/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MzMDM4L3JvbGVJbnN0YW5jZXM/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "90882260-5c56-4f38-a745-80010a44763e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "03fe8ae7-0d42-4065-b8ef-9690d2e02446" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;389,Microsoft.Compute/GetCloudService30Min;2567" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-correlation-request-id": [ + "c895231d-21e0-4328-ad2c-b821f88a5bd7" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062703Z:c895231d-21e0-4328-ad2c-b821f88a5bd7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:27:02 GMT" + ], + "Content-Length": [ + "2748" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"WebRole1_IN_0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WebRole1_IN_0\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WebRole1_IN_0/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"WebRole1_IN_1\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WebRole1_IN_1\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WebRole1_IN_1/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1_IN_0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WorkerRole1_IN_0\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WorkerRole1_IN_0/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2_IN_0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WorkerRole2_IN_0\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WorkerRole2_IN_0/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MzMDM4L3JvbGVJbnN0YW5jZXM/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bd996983-b07e-4293-ad48-329f317d4504" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c3cae8a8-5485-411d-8002-25175d64f6a9" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;391,Microsoft.Compute/GetCloudService30Min;2563" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11945" + ], + "x-ms-correlation-request-id": [ + "ced91862-7b09-4cdb-be45-9156910a18a6" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062841Z:ced91862-7b09-4cdb-be45-9156910a18a6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:28:40 GMT" + ], + "Content-Length": [ + "2748" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"WebRole1_IN_0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WebRole1_IN_0\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WebRole1_IN_0/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"WebRole1_IN_1\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WebRole1_IN_1\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WebRole1_IN_1/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1_IN_0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WorkerRole1_IN_0\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WorkerRole1_IN_0/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2_IN_0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WorkerRole2_IN_0\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WorkerRole2_IN_0/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WorkerRole1_IN_0/remoteDesktopFile?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MzMDM4L3JvbGVJbnN0YW5jZXMvV29ya2VyUm9sZTFfSU5fMC9yZW1vdGVEZXNrdG9wRmlsZT9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "db510320-5089-4b4d-a293-ee24663afcf7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ed28ea4a-8fe5-409a-840b-f304e9d44bee" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;394,Microsoft.Compute/GetCloudService30Min;2585" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-correlation-request-id": [ + "39375729-4320-491e-af68-60cd6cc7b370" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062134Z:39375729-4320-491e-af68-60cd6cc7b370" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:21:34 GMT" + ], + "Content-Length": [ + "120" + ], + "Content-Type": [ + "application/x-rdp" + ], + "Expires": [ + "-1" + ], + "Content-Disposition": [ + "attachment; filename=cs3038-WorkerRole1_IN_0.rdp" + ] + }, + "ResponseBody": "full address:s:52.247.48.175\r\nusername:s:adminRdpTest\r\nLoadBalanceInfo:s:Cookie: mstshash=WorkerRole1#WorkerRole1_IN_0\r\n", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WorkerRole2_IN_0/remoteDesktopFile?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MzMDM4L3JvbGVJbnN0YW5jZXMvV29ya2VyUm9sZTJfSU5fMC9yZW1vdGVEZXNrdG9wRmlsZT9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04052063-4d0d-4b09-beb0-7efc531944a4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "acef5f9c-bbb2-4dd0-87b6-9cb39026bf22" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;393,Microsoft.Compute/GetCloudService30Min;2584" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "44e397fc-4621-402d-aafb-c59a00d8daf5" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062135Z:44e397fc-4621-402d-aafb-c59a00d8daf5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:21:34 GMT" + ], + "Content-Length": [ + "120" + ], + "Content-Type": [ + "application/x-rdp" + ], + "Expires": [ + "-1" + ], + "Content-Disposition": [ + "attachment; filename=cs3038-WorkerRole2_IN_0.rdp" + ] + }, + "ResponseBody": "full address:s:52.247.48.175\r\nusername:s:adminRdpTest\r\nLoadBalanceInfo:s:Cookie: mstshash=WorkerRole2#WorkerRole2_IN_0\r\n", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WorkerRole2_IN_0/remoteDesktopFile?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MzMDM4L3JvbGVJbnN0YW5jZXMvV29ya2VyUm9sZTJfSU5fMC9yZW1vdGVEZXNrdG9wRmlsZT9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ddef0213-ff99-40a5-9975-aaa210b5ee63" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6fd9c42b-3a74-4569-8e0f-7aaf04f357e3" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;389,Microsoft.Compute/GetCloudService30Min;2572" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-correlation-request-id": [ + "9045bc51-14c3-45d9-8f99-b118e3d56276" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062523Z:9045bc51-14c3-45d9-8f99-b118e3d56276" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:25:23 GMT" + ], + "Content-Length": [ + "120" + ], + "Content-Type": [ + "application/x-rdp" + ], + "Expires": [ + "-1" + ], + "Content-Disposition": [ + "attachment; filename=cs3038-WorkerRole2_IN_0.rdp" + ] + }, + "ResponseBody": "full address:s:52.247.48.175\r\nusername:s:adminRdpTest\r\nLoadBalanceInfo:s:Cookie: mstshash=WorkerRole2#WorkerRole2_IN_0\r\n", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WebRole1_IN_0/remoteDesktopFile?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MzMDM4L3JvbGVJbnN0YW5jZXMvV2ViUm9sZTFfSU5fMC9yZW1vdGVEZXNrdG9wRmlsZT9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c81ae1ff-d626-43b2-9634-3ed4d7b7acec" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "92bdd462-dee8-4f1f-82c3-7d6c6f7c8560" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;392,Microsoft.Compute/GetCloudService30Min;2583" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-correlation-request-id": [ + "173714f6-1ea1-470f-a81f-971a6aedb2c7" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062135Z:173714f6-1ea1-470f-a81f-971a6aedb2c7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:21:34 GMT" + ], + "Content-Length": [ + "114" + ], + "Content-Type": [ + "application/x-rdp" + ], + "Expires": [ + "-1" + ], + "Content-Disposition": [ + "attachment; filename=cs3038-WebRole1_IN_0.rdp" + ] + }, + "ResponseBody": "full address:s:52.247.48.175\r\nusername:s:adminRdpTest\r\nLoadBalanceInfo:s:Cookie: mstshash=WebRole1#WebRole1_IN_0\r\n", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Compute/cloudServices/cs3038/roleInstances/WebRole1_IN_1/remoteDesktopFile?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MzMDM4L3JvbGVJbnN0YW5jZXMvV2ViUm9sZTFfSU5fMS9yZW1vdGVEZXNrdG9wRmlsZT9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "30ff4a33-7718-4ce2-baa9-03a76f77b29b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "746fe90c-c8cd-4b04-bea6-360f6ee9ab74" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;391,Microsoft.Compute/GetCloudService30Min;2582" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-correlation-request-id": [ + "06d10f18-051f-4a79-941a-a5593180cd66" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062135Z:06d10f18-051f-4a79-941a-a5593180cd66" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:21:34 GMT" + ], + "Content-Length": [ + "114" + ], + "Content-Type": [ + "application/x-rdp" + ], + "Expires": [ + "-1" + ], + "Content-Disposition": [ + "attachment; filename=cs3038-WebRole1_IN_1.rdp" + ] + }, + "ResponseBody": "full address:s:52.247.48.175\r\nusername:s:adminRdpTest\r\nLoadBalanceInfo:s:Cookie: mstshash=WebRole1#WebRole1_IN_1\r\n", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/78a8e225-aeba-4821-837c-2769b7d4b185?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNzhhOGUyMjUtYWViYS00ODIxLTgzN2MtMjc2OWI3ZDRiMTg1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "bb8f73f4-4c28-4b3a-84da-3eee92d7c3b5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-correlation-request-id": [ + "d9b89cde-57ae-4deb-8eae-363f17fbee40" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062213Z:d9b89cde-57ae-4deb-8eae-363f17fbee40" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:22:12 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:51:39.3032471+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"78a8e225-aeba-4821-837c-2769b7d4b185\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/78a8e225-aeba-4821-837c-2769b7d4b185?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNzhhOGUyMjUtYWViYS00ODIxLTgzN2MtMjc2OWI3ZDRiMTg1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "6c6af9d2-83b9-434f-9d54-c609dcec6479" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-correlation-request-id": [ + "87935f09-06df-41ed-8cb5-320752ccea5c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062243Z:87935f09-06df-41ed-8cb5-320752ccea5c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:22:42 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:51:39.3032471+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"78a8e225-aeba-4821-837c-2769b7d4b185\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/78a8e225-aeba-4821-837c-2769b7d4b185?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNzhhOGUyMjUtYWViYS00ODIxLTgzN2MtMjc2OWI3ZDRiMTg1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "07f2bc2a-9f10-4aff-889e-a948ddc57a97" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-correlation-request-id": [ + "6bf2223c-ea8f-4973-aa5d-324c1597c101" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062313Z:6bf2223c-ea8f-4973-aa5d-324c1597c101" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:23:13 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:51:39.3032471+05:30\",\r\n \"endTime\": \"2021-03-22T11:53:11.5885249+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"78a8e225-aeba-4821-837c-2769b7d4b185\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/19dab4c9-c810-4b08-8650-69ec05cf9290?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMTlkYWI0YzktYzgxMC00YjA4LTg2NTAtNjllYzA1Y2Y5MjkwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "7ae365ba-0712-48d2-b40f-6b0d05edddf9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-correlation-request-id": [ + "f4f65d95-f661-4e52-8a94-82971c52665c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062350Z:f4f65d95-f661-4e52-8a94-82971c52665c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:23:50 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:53:17.9481815+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"19dab4c9-c810-4b08-8650-69ec05cf9290\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/19dab4c9-c810-4b08-8650-69ec05cf9290?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMTlkYWI0YzktYzgxMC00YjA4LTg2NTAtNjllYzA1Y2Y5MjkwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "8eabb3ff-fec3-49cf-bcff-db34b4f5ffda" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "12d254b5-a2b4-4392-88b2-9861e5137eed" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062421Z:12d254b5-a2b4-4392-88b2-9861e5137eed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:24:21 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:53:17.9481815+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"19dab4c9-c810-4b08-8650-69ec05cf9290\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/19dab4c9-c810-4b08-8650-69ec05cf9290?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMTlkYWI0YzktYzgxMC00YjA4LTg2NTAtNjllYzA1Y2Y5MjkwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "de801c70-d83c-44be-87a5-b44af1189fb7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-correlation-request-id": [ + "366c050d-60aa-4503-8ea8-ffd83c642ac8" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062452Z:366c050d-60aa-4503-8ea8-ffd83c642ac8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:24:51 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:53:17.9481815+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"19dab4c9-c810-4b08-8650-69ec05cf9290\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/19dab4c9-c810-4b08-8650-69ec05cf9290?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMTlkYWI0YzktYzgxMC00YjA4LTg2NTAtNjllYzA1Y2Y5MjkwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "0124e25c-b2d6-49fc-8018-990f58b4a39e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-correlation-request-id": [ + "01e5a36d-6d69-41de-806a-ca9329b7b982" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062522Z:01e5a36d-6d69-41de-806a-ca9329b7b982" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:25:21 GMT" + ], + "Content-Length": [ + "183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:53:17.9481815+05:30\",\r\n \"endTime\": \"2021-03-22T11:54:54.843065+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"19dab4c9-c810-4b08-8650-69ec05cf9290\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/4ef36f44-2677-47a2-90a7-2b590bc8c953?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNGVmMzZmNDQtMjY3Ny00N2EyLTkwYTctMmI1OTBiYzhjOTUzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "b51bc6ab-cb89-4b32-b2aa-bfe2cefa9202" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-correlation-request-id": [ + "bf3a87e2-d639-498a-9dec-6b77da7ac5b4" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062601Z:bf3a87e2-d639-498a-9dec-6b77da7ac5b4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:26:01 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:55:28.1569375+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ef36f44-2677-47a2-90a7-2b590bc8c953\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/4ef36f44-2677-47a2-90a7-2b590bc8c953?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNGVmMzZmNDQtMjY3Ny00N2EyLTkwYTctMmI1OTBiYzhjOTUzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "598a03f2-17fe-41b8-b58e-0982424c467e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-correlation-request-id": [ + "9c725d2f-1dea-41ac-bef4-d3974acd3ac6" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062631Z:9c725d2f-1dea-41ac-bef4-d3974acd3ac6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:26:31 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:55:28.1569375+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ef36f44-2677-47a2-90a7-2b590bc8c953\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/4ef36f44-2677-47a2-90a7-2b590bc8c953?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNGVmMzZmNDQtMjY3Ny00N2EyLTkwYTctMmI1OTBiYzhjOTUzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "08640605-9f17-4c49-9457-f5ecc772aa3e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-correlation-request-id": [ + "931fc0ce-ad21-4b53-9269-9afdb83a40c7" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062702Z:931fc0ce-ad21-4b53-9269-9afdb83a40c7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:27:01 GMT" + ], + "Content-Length": [ + "183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:55:28.1569375+05:30\",\r\n \"endTime\": \"2021-03-22T11:56:54.894687+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4ef36f44-2677-47a2-90a7-2b590bc8c953\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/02b5ea27-9223-439b-bb6b-83bd5b286982?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMDJiNWVhMjctOTIyMy00MzliLWJiNmItODNiZDViMjg2OTgyP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "9cf64e30-24b5-4d74-8ae9-630d95e8549e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], + "x-ms-correlation-request-id": [ + "19f953a5-8291-4e88-96fb-cc548835d4cf" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062740Z:19f953a5-8291-4e88-96fb-cc548835d4cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:27:39 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:57:06.2388727+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02b5ea27-9223-439b-bb6b-83bd5b286982\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/02b5ea27-9223-439b-bb6b-83bd5b286982?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMDJiNWVhMjctOTIyMy00MzliLWJiNmItODNiZDViMjg2OTgyP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "6e3d964c-08eb-4f9a-b61f-03608563925c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-correlation-request-id": [ + "03e05a2e-ef3b-4197-b897-4ab6213cb30e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062810Z:03e05a2e-ef3b-4197-b897-4ab6213cb30e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:28:09 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:57:06.2388727+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"02b5ea27-9223-439b-bb6b-83bd5b286982\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/02b5ea27-9223-439b-bb6b-83bd5b286982?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMDJiNWVhMjctOTIyMy00MzliLWJiNmItODNiZDViMjg2OTgyP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "c36328f0-d5b2-4673-a1f7-d2260f4f4d01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11949" + ], + "x-ms-correlation-request-id": [ + "bd7be032-5bcb-462e-819b-1da118df1300" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062840Z:bd7be032-5bcb-462e-819b-1da118df1300" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:28:39 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:57:06.2388727+05:30\",\r\n \"endTime\": \"2021-03-22T11:58:37.9924132+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"02b5ea27-9223-439b-bb6b-83bd5b286982\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4006/providers/Microsoft.Compute/cloudServices/cs3038?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQwMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MzMDM4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f25c5cf4-9b61-45bf-9699-5dbad65c90f8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/6fd827fa-aaad-4bd9-a420-bb6fc691f452?monitor=true&api-version=2021-03-01" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/6fd827fa-aaad-4bd9-a420-bb6fc691f452?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6fd827fa-aaad-4bd9-a420-bb6fc691f452" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;294" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "027b8961-6023-469a-8259-6fb2332b6d02" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062844Z:027b8961-6023-469a-8259-6fb2332b6d02" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:28:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/6fd827fa-aaad-4bd9-a420-bb6fc691f452?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNmZkODI3ZmEtYWFhZC00YmQ5LWE0MjAtYmI2ZmM2OTFmNDUyP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "5191396e-c685-43b8-a64d-15600f5c1d30" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11944" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "90d1af9b-7d50-46c9-8004-8c22cbc90a39" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062914Z:90d1af9b-7d50-46c9-8004-8c22cbc90a39" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:29:14 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:58:43.9301434+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6fd827fa-aaad-4bd9-a420-bb6fc691f452\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/6fd827fa-aaad-4bd9-a420-bb6fc691f452?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNmZkODI3ZmEtYWFhZC00YmQ5LWE0MjAtYmI2ZmM2OTFmNDUyP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "f7f5d924-4d84-4f75-b3e0-e4f3aa84304f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11943" + ], + "x-ms-correlation-request-id": [ + "29417725-18ce-4f7a-8b42-6319ff955837" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T062945Z:29417725-18ce-4f7a-8b42-6319ff955837" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:29:44 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:58:43.9301434+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6fd827fa-aaad-4bd9-a420-bb6fc691f452\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/6fd827fa-aaad-4bd9-a420-bb6fc691f452?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNmZkODI3ZmEtYWFhZC00YmQ5LWE0MjAtYmI2ZmM2OTFmNDUyP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "209ab575-10ac-4074-adad-50aa8a6f08af" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11942" + ], + "x-ms-correlation-request-id": [ + "4414db2b-7b87-44ca-a7f5-14d7b03188e9" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T063015Z:4414db2b-7b87-44ca-a7f5-14d7b03188e9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:30:14 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:58:43.9301434+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6fd827fa-aaad-4bd9-a420-bb6fc691f452\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/6fd827fa-aaad-4bd9-a420-bb6fc691f452?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNmZkODI3ZmEtYWFhZC00YmQ5LWE0MjAtYmI2ZmM2OTFmNDUyP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "79f9bb46-eb59-43ff-b650-4982190e46e5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11941" + ], + "x-ms-correlation-request-id": [ + "2a2a1fde-5e01-4e15-ba7d-fac4db37fd14" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T063045Z:2a2a1fde-5e01-4e15-ba7d-fac4db37fd14" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:30:45 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:58:43.9301434+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6fd827fa-aaad-4bd9-a420-bb6fc691f452\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/6fd827fa-aaad-4bd9-a420-bb6fc691f452?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNmZkODI3ZmEtYWFhZC00YmQ5LWE0MjAtYmI2ZmM2OTFmNDUyP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "af6f4633-df39-4d98-b2fb-9d259d3e2cc3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11940" + ], + "x-ms-correlation-request-id": [ + "14bfd19b-a569-4add-9b20-4c5c6ccba92b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T063116Z:14bfd19b-a569-4add-9b20-4c5c6ccba92b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:31:15 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:58:43.9301434+05:30\",\r\n \"endTime\": \"2021-03-22T12:01:04.8262055+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"6fd827fa-aaad-4bd9-a420-bb6fc691f452\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/6fd827fa-aaad-4bd9-a420-bb6fc691f452?monitor=true&api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNmZkODI3ZmEtYWFhZC00YmQ5LWE0MjAtYmI2ZmM2OTFmNDUyP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "7e4a91a0-907e-4bc5-bd35-9f23c58d544a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11939" + ], + "x-ms-correlation-request-id": [ + "ea2015e2-33c4-4528-8876-f90ed69d33b3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T063116Z:ea2015e2-33c4-4528-8876-f90ed69d33b3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:31:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar4006?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjQwMDY/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "830fc633-037d-4183-8815-d5ddca43285e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI0MDA2LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-request-id": [ + "6e0dc832-c4f1-4fd3-8c42-a701c480b13f" + ], + "x-ms-correlation-request-id": [ + "6e0dc832-c4f1-4fd3-8c42-a701c480b13f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T063120Z:6e0dc832-c4f1-4fd3-8c42-a701c480b13f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:31:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + } + ], + "Names": { + "MultiRole_CreateUpdateGetAndDeleteWithExtension_WorkerAndWebRole_MultiRoleExtension": [ + "crptestar4006", + "cs3038", + "cspip2917", + "csvnet9639", + "subnet399", + "dns3669", + "lb3582", + "lbfe797" + ], + "CreateCspkgSasUrl": [ + "saforcspkg2720", + "asforcspkg4515" + ] + }, + "Variables": { + "SubscriptionId": "0296790d-427c-48ca-b204-8b729bbd8670" + } +} \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceOperatingSystemTests/Test_CloudServiceOperatingSystemOperations.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceOperatingSystemTests/Test_CloudServiceOperatingSystemOperations.json new file mode 100644 index 0000000000000..c686030faf8bd --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceOperatingSystemTests/Test_CloudServiceOperatingSystemOperations.json @@ -0,0 +1,142 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOsVersions?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzMi9jbG91ZFNlcnZpY2VPc1ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1aa8c98-7375-41b6-87e5-a858af91ed4e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "55842e39-ff19-4719-9c79-56184bd38f43_132597424726364417" + ], + "x-ms-request-id": [ + "4fa5ea40-c6f4-4a09-b87a-2aa56c118f9d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "807dd1fa-d2dd-4b72-bfaf-2b4fc39f812a" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20210322T191907Z:807dd1fa-d2dd-4b72-bfaf-2b4fc39f812a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 19:19:07 GMT" + ], + "Content-Length": [ + "278766" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"WA-GUEST-OS-6.7_201905-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-6.7_201905-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-6.7_201905-01\",\r\n \"label\": \"Windows Azure Guest OS 6.7 (Release 201905-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"6\",\r\n \"familyLabel\": \"Windows Server 2019\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.21_201411-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.21_201411-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.21_201411-01\",\r\n \"label\": \"Windows Azure Guest OS 3.21 (Release 201411-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.34_201512-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.34_201512-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.34_201512-01\",\r\n \"label\": \"Windows Azure Guest OS 3.34 (Release 201512-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.26_201504-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.26_201504-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.26_201504-01\",\r\n \"label\": \"Windows Azure Guest OS 3.26 (Release 201504-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.6_201804-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.6_201804-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.6_201804-01\",\r\n \"label\": \"Windows Azure Guest OS 97.6 (Release 201804-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.46_201512-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.46_201512-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.46_201512-01\",\r\n \"label\": \"Windows Azure Guest OS 2.46 (Release 201512-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.33_201511-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.33_201511-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.33_201511-02\",\r\n \"label\": \"Windows Azure Guest OS 3.33 (Release 201511-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.48_201704-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.48_201704-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.48_201704-01\",\r\n \"label\": \"Windows Azure Guest OS 3.48 (Release 201704-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.78_202005-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.78_202005-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.78_202005-01\",\r\n \"label\": \"Windows Azure Guest OS 4.78 (Release 202005-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.29_201507-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.29_201507-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.29_201507-01\",\r\n \"label\": \"Windows Azure Guest OS 3.29 (Release 201507-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.91_201910-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.91_201910-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.91_201910-01\",\r\n \"label\": \"Windows Azure Guest OS 2.91 (Release 201910-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-98.51_201709-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-98.51_201709-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-98.51_201709-01\",\r\n \"label\": \"Windows Azure Guest OS 98.51 (Release 201709-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"98\",\r\n \"familyLabel\": \"Windows Server 2012 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.18_201904-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.18_201904-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.18_201904-01\",\r\n \"label\": \"Windows Azure Guest OS 97.18 (Release 201904-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.57_201611-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.57_201611-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.57_201611-01\",\r\n \"label\": \"Windows Azure Guest OS 2.57 (Release 201611-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.26_201511-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.26_201511-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.26_201511-02\",\r\n \"label\": \"Windows Azure Guest OS 4.26 (Release 201511-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.48_201602-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.48_201602-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.48_201602-01\",\r\n \"label\": \"Windows Azure Guest OS 2.48 (Release 201602-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.35_201608-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.35_201608-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.35_201608-01\",\r\n \"label\": \"Windows Azure Guest OS 4.35 (Release 201608-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.12_201409-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.12_201409-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.12_201409-02\",\r\n \"label\": \"Windows Azure Guest OS 4.12 (Release 201409-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.80_202007-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.80_202007-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.80_202007-01\",\r\n \"label\": \"Windows Azure Guest OS 4.80 (Release 202007-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.8_201310-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.8_201310-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.8_201310-01\",\r\n \"label\": \"Windows Azure Guest OS 3.8 (Release 201310-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.88_202008-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.88_202008-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.88_202008-01\",\r\n \"label\": \"Windows Azure Guest OS 3.88 (Release 202008-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.15_201405-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.15_201405-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.15_201405-01\",\r\n \"label\": \"Windows Azure Guest OS 3.15 (Release 201405-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.32_201410-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.32_201410-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.32_201410-01\",\r\n \"label\": \"Windows Azure Guest OS 2.32 (Release 201410-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.17_201502-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.17_201502-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.17_201502-01\",\r\n \"label\": \"Windows Azure Guest OS 4.17 (Release 201502-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.8_201109-03\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.8_201109-03\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.8_201109-03\",\r\n \"label\": \"Windows Azure Guest OS 2.8 (Release 201109-03)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.41_201507-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.41_201507-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.41_201507-01\",\r\n \"label\": \"Windows Azure Guest OS 2.41 (Release 201507-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.8_201109-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.8_201109-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.8_201109-02\",\r\n \"label\": \"Windows Azure Guest OS 2.8 (Release 201109-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.40_202002-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.40_202002-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.40_202002-01\",\r\n \"label\": \"Windows Azure Guest OS 5.40 (Release 202002-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.8_201109-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.8_201109-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.8_201109-01\",\r\n \"label\": \"Windows Azure Guest OS 2.8 (Release 201109-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.54_201608-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.54_201608-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.54_201608-01\",\r\n \"label\": \"Windows Azure Guest OS 2.54 (Release 201608-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.39_201505-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.39_201505-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.39_201505-01\",\r\n \"label\": \"Windows Azure Guest OS 2.39 (Release 201505-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-6.6_201904-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-6.6_201904-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-6.6_201904-01\",\r\n \"label\": \"Windows Azure Guest OS 6.6 (Release 201904-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"6\",\r\n \"familyLabel\": \"Windows Server 2019\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.60_201804-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.60_201804-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.60_201804-01\",\r\n \"label\": \"Windows Azure Guest OS 3.60 (Release 201804-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.54_201710-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.54_201710-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.54_201710-01\",\r\n \"label\": \"Windows Azure Guest OS 3.54 (Release 201710-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.26_201404-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.26_201404-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.26_201404-01\",\r\n \"label\": \"Windows Azure Guest OS 2.26 (Release 201404-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.60_201703-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.60_201703-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.60_201703-01\",\r\n \"label\": \"Windows Azure Guest OS 2.60 (Release 201703-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.12_201710-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.12_201710-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.12_201710-01\",\r\n \"label\": \"Windows Azure Guest OS 5.12 (Release 201710-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-6.0_201810-00\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-6.0_201810-00\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-6.0_201810-00\",\r\n \"label\": \"Windows Azure Guest OS 6.0 (Release 201810-00)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"6\",\r\n \"familyLabel\": \"Windows Server 2019\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-6.0_201810-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-6.0_201810-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-6.0_201810-01\",\r\n \"label\": \"Windows Azure Guest OS 6.0 (Release 201810-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"6\",\r\n \"familyLabel\": \"Windows Server 2019\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.2_201712-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.2_201712-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.2_201712-01\",\r\n \"label\": \"Windows Azure Guest OS 97.2 (Release 201712-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.8_201405-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.8_201405-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.8_201405-01\",\r\n \"label\": \"Windows Azure Guest OS 4.8 (Release 201405-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.30_201408-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.30_201408-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.30_201408-01\",\r\n \"label\": \"Windows Azure Guest OS 2.30 (Release 201408-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.20_201505-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.20_201505-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.20_201505-02\",\r\n \"label\": \"Windows Azure Guest OS 4.20 (Release 201505-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.63_201807-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.63_201807-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.63_201807-02\",\r\n \"label\": \"Windows Azure Guest OS 3.63 (Release 201807-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.25_201811-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.25_201811-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.25_201811-01\",\r\n \"label\": \"Windows Azure Guest OS 5.25 (Release 201811-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.36_201602-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.36_201602-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.36_201602-01\",\r\n \"label\": \"Windows Azure Guest OS 3.36 (Release 201602-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.29_201407-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.29_201407-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.29_201407-01\",\r\n \"label\": \"Windows Azure Guest OS 2.29 (Release 201407-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-98.52_201710-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-98.52_201710-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-98.52_201710-01\",\r\n \"label\": \"Windows Azure Guest OS 98.52 (Release 201710-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"98\",\r\n \"familyLabel\": \"Windows Server 2012 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-98.52_201710-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-98.52_201710-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-98.52_201710-02\",\r\n \"label\": \"Windows Azure Guest OS 98.52 (Release 201710-02)\",\r\n \"isDefault\": true,\r\n \"isActive\": false,\r\n \"family\": \"98\",\r\n \"familyLabel\": \"Windows Server 2012 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.10_201202-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.10_201202-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.10_201202-01\",\r\n \"label\": \"Windows Azure Guest OS 2.10 (Release 201202-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.68_201711-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.68_201711-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.68_201711-01\",\r\n \"label\": \"Windows Azure Guest OS 2.68 (Release 201711-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.34_201607-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.34_201607-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.34_201607-01\",\r\n \"label\": \"Windows Azure Guest OS 4.34 (Release 201607-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.21_201506-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.21_201506-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.21_201506-01\",\r\n \"label\": \"Windows Azure Guest OS 4.21 (Release 201506-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.33_201411-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.33_201411-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.33_201411-01\",\r\n \"label\": \"Windows Azure Guest OS 2.33 (Release 201411-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.31_201905-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.31_201905-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.31_201905-01\",\r\n \"label\": \"Windows Azure Guest OS 5.31 (Release 201905-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.11_201408-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.11_201408-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.11_201408-02\",\r\n \"label\": \"Windows Azure Guest OS 4.11 (Release 201408-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.10_201708-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.10_201708-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.10_201708-01\",\r\n \"label\": \"Windows Azure Guest OS 5.10 (Release 201708-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.97_202004-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.97_202004-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.97_202004-01\",\r\n \"label\": \"Windows Azure Guest OS 2.97 (Release 202004-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.6_201704-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.6_201704-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.6_201704-01\",\r\n \"label\": \"Windows Azure Guest OS 5.6 (Release 201704-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.55_201711-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.55_201711-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.55_201711-01\",\r\n \"label\": \"Windows Azure Guest OS 3.55 (Release 201711-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.28_201601-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.28_201601-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.28_201601-01\",\r\n \"label\": \"Windows Azure Guest OS 4.28 (Release 201601-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.13_201711-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.13_201711-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.13_201711-01\",\r\n \"label\": \"Windows Azure Guest OS 5.13 (Release 201711-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.18_201804-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.18_201804-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.18_201804-01\",\r\n \"label\": \"WindowsAzureGuestOS5.18 (Release 201804-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.42_201508-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.42_201508-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.42_201508-02\",\r\n \"label\": \"Windows Azure Guest OS 2.42 (Release 201508-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.9_201406-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.9_201406-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.9_201406-01\",\r\n \"label\": \"Windows Azure Guest OS 4.9 (Release 201406-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.6_201308-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.6_201308-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.6_201308-01\",\r\n \"label\": \"Windows Azure Guest OS 3.6 (Release 201308-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.65_201809-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.65_201809-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.65_201809-01\",\r\n \"label\": \"Windows Azure Guest OS 3.65 (Release 201809-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.14_201411-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.14_201411-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.14_201411-01\",\r\n \"label\": \"Windows Azure Guest OS 4.14 (Release 201411-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.35_202009-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.35_202009-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.35_202009-01\",\r\n \"label\": \"Windows Azure Guest OS 97.35 (Release 202009-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": true,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.26_201511-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.26_201511-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.26_201511-01\",\r\n \"label\": \"Windows Azure Guest OS 4.26 (Release 201511-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.48_201602-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.48_201602-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.48_201602-02\",\r\n \"label\": \"Windows Azure Guest OS 2.48 (Release 201602-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.69_201712-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.69_201712-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.69_201712-01\",\r\n \"label\": \"Windows Azure Guest OS 2.69 (Release 201712-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-6.24_202010-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-6.24_202010-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-6.24_202010-01\",\r\n \"label\": \"Windows Azure Guest OS 6.24 (Release 202010-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"6\",\r\n \"familyLabel\": \"Windows Server 2019\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.39_202001-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.39_202001-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.39_202001-01\",\r\n \"label\": \"Windows Azure Guest OS 5.39 (Release 202001-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.56_201807-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.56_201807-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.56_201807-01\",\r\n \"label\": \"Windows Azure Guest OS 4.56 (Release 201807-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.27_201505-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.27_201505-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.27_201505-02\",\r\n \"label\": \"Windows Azure Guest OS 3.27 (Release 201505-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.22_201312-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.22_201312-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.22_201312-01\",\r\n \"label\": \"Windows Azure Guest OS 2.22 (Release 201312-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-6.22_202008-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-6.22_202008-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-6.22_202008-01\",\r\n \"label\": \"Windows Azure Guest OS 6.22 (Release 202008-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"6\",\r\n \"familyLabel\": \"Windows Server 2019\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.3_201305-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.3_201305-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.3_201305-01\",\r\n \"label\": \"Windows Azure Guest OS 3.3 (Release 201305-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.68_201812-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.68_201812-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.68_201812-01\",\r\n \"label\": \"Windows Azure Guest OS 3.68 (Release 201812-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.55_201609-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.55_201609-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.55_201609-01\",\r\n \"label\": \"Windows Azure Guest OS 2.55 (Release 201609-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.16_201306-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.16_201306-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.16_201306-01\",\r\n \"label\": \"Windows Azure Guest OS 2.16 (Release 201306-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.40_201606-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.40_201606-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.40_201606-01\",\r\n \"label\": \"Windows Azure Guest OS 3.40 (Release 201606-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.67_201710-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.67_201710-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.67_201710-02\",\r\n \"label\": \"Windows Azure Guest OS 2.67 (Release 201710-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.30_201408-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.30_201408-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.30_201408-02\",\r\n \"label\": \"Windows Azure Guest OS 2.30 (Release 201408-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.63_201807-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.63_201807-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.63_201807-01\",\r\n \"label\": \"Windows Azure Guest OS 3.63 (Release 201807-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.27_201512-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.27_201512-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.27_201512-01\",\r\n \"label\": \"Windows Azure Guest OS 4.27 (Release 201512-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.45_202007-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.45_202007-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.45_202007-01\",\r\n \"label\": \"Windows Azure Guest OS 5.45 (Release 202007-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.102_202009-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.102_202009-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.102_202009-01\",\r\n \"label\": \"Windows Azure Guest OS 2.102 (Release 202009-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": true,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.104_202011-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.104_202011-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.104_202011-01\",\r\n \"label\": \"Windows Azure Guest OS 2.104 (Release 202011-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.43_202005-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.43_202005-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.43_202005-01\",\r\n \"label\": \"Windows Azure Guest OS 5.43 (Release 202005-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.12_201402-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.12_201402-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.12_201402-01\",\r\n \"label\": \"Windows Azure Guest OS 3.12 (Release 201402-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.79_202006-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.79_202006-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.79_202006-02\",\r\n \"label\": \"Windows Azure Guest OS 4.79 (Release 202006-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.31_201409-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.31_201409-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.31_201409-01\",\r\n \"label\": \"Windows Azure Guest OS 2.31 (Release 201409-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.2_201302-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.2_201302-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.2_201302-01\",\r\n \"label\": \"Windows Azure Guest OS 3.2 (Release 201302-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.2_201302-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.2_201302-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.2_201302-02\",\r\n \"label\": \"Windows Azure Guest OS 3.2 (Release 201302-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.74_201906-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.74_201906-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.74_201906-01\",\r\n \"label\": \"Windows Azure Guest OS 3.74 (Release 201906-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.2_201302-03\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.2_201302-03\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.2_201302-03\",\r\n \"label\": \"Windows Azure Guest OS 3.2 (Release 201302-03)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.75_201806-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.75_201806-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.75_201806-01\",\r\n \"label\": \"Windows Azure Guest OS 2.75 (Release 201806-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.2_201302-04\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.2_201302-04\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.2_201302-04\",\r\n \"label\": \"Windows Azure Guest OS 3.2 (Release 201302-04)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.46_202008-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.46_202008-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.46_202008-02\",\r\n \"label\": \"Windows Azure Guest OS 5.46 (Release 202008-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": true,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.24_201509-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.24_201509-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.24_201509-01\",\r\n \"label\": \"Windows Azure Guest OS 4.24 (Release 201509-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.103_202010-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.103_202010-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.103_202010-02\",\r\n \"label\": \"Windows Azure Guest OS 2.103 (Release 202010-02)\",\r\n \"isDefault\": true,\r\n \"isActive\": true,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.103_202010-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.103_202010-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.103_202010-01\",\r\n \"label\": \"Windows Azure Guest OS 2.103 (Release 202010-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.57_201801-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.57_201801-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.57_201801-01\",\r\n \"label\": \"Windows Azure Guest OS 3.57 (Release 201801-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.69_201908-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.69_201908-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.69_201908-01\",\r\n \"label\": \"Windows Azure Guest OS 4.69 (Release 201908-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.11_201809-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.11_201809-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.11_201809-01\",\r\n \"label\": \"Windows Azure Guest OS 97.11 (Release 201809-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.4_201802-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.4_201802-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.4_201802-01\",\r\n \"label\": \"Windows Azure Guest OS 97.4 (Release 201802-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-6.19_202005-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-6.19_202005-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-6.19_202005-01\",\r\n \"label\": \"Windows Azure Guest OS 6.19 (Release 202005-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"6\",\r\n \"familyLabel\": \"Windows Server 2019\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.11_201709-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.11_201709-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.11_201709-01\",\r\n \"label\": \"Windows Azure Guest OS 5.11 (Release 201709-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.44_201510-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.44_201510-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.44_201510-01\",\r\n \"label\": \"Windows Azure Guest OS 2.44 (Release 201510-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.86_202006-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.86_202006-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.86_202006-02\",\r\n \"label\": \"Windows Azure Guest OS 3.86 (Release 202006-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.25_201911-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.25_201911-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.25_201911-01\",\r\n \"label\": \"Windows Azure Guest OS 97.25 (Release 201911-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.32_201510-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.32_201510-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.32_201510-01\",\r\n \"label\": \"Windows Azure Guest OS 3.32 (Release 201510-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.66_201905-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.66_201905-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.66_201905-01\",\r\n \"label\": \"Windows Azure Guest OS 4.66 (Release 201905-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.52_201708-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.52_201708-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.52_201708-01\",\r\n \"label\": \"Windows Azure Guest OS 3.52 (Release 201708-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.32_202006-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.32_202006-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.32_202006-02\",\r\n \"label\": \"Windows Azure Guest OS 97.32 (Release 202006-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.83_202010-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.83_202010-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.83_202010-02\",\r\n \"label\": \"Windows Azure Guest OS 4.83 (Release 202010-02)\",\r\n \"isDefault\": true,\r\n \"isActive\": true,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.37_201603-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.37_201603-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.37_201603-01\",\r\n \"label\": \"Windows Azure Guest OS 3.37 (Release 201603-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.77_201808-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.77_201808-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.77_201808-01\",\r\n \"label\": \"Windows Azure Guest OS 2.77 (Release 201808-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.27_201505-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.27_201505-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.27_201505-01\",\r\n \"label\": \"Windows Azure Guest OS 3.27 (Release 201505-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.7_201805-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.7_201805-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.7_201805-01\",\r\n \"label\": \"Windows Azure Guest OS 97.7 (Release 201805-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.43_202005-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.43_202005-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.43_202005-02\",\r\n \"label\": \"Windows Azure Guest OS 5.43 (Release 202005-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.28_201902-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.28_201902-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.28_201902-01\",\r\n \"label\": \"Windows Azure Guest OS 5.28 (Release 201902-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.1_201310-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.1_201310-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.1_201310-01\",\r\n \"label\": \"Windows Azure Guest OS 4.1 (Release 201310-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.24_201502-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.24_201502-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.24_201502-01\",\r\n \"label\": \"Windows Azure Guest OS 3.24 (Release 201502-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.14_201302-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.14_201302-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.14_201302-01\",\r\n \"label\": \"Windows Azure Guest OS 2.14 (Release 201302-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.30_201508-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.30_201508-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.30_201508-01\",\r\n \"label\": \"Windows Azure Guest OS 3.30 (Release 201508-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.66_201709-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.66_201709-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.66_201709-01\",\r\n \"label\": \"Windows Azure Guest OS 2.66 (Release 201709-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.61_201805-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.61_201805-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.61_201805-01\",\r\n \"label\": \"Windows Azure Guest OS 3.61 (Release 201805-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.54_201805-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.54_201805-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.54_201805-01\",\r\n \"label\": \"Windows Azure Guest OS 4.54 (Release 201805-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.82_202002-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.82_202002-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.82_202002-01\",\r\n \"label\": \"Windows Azure Guest OS 3.82 (Release 202002-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.12_201810-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.12_201810-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.12_201810-01\",\r\n \"label\": \"Windows Azure Guest OS 97.12 (Release 201810-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.69_201901-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.69_201901-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.69_201901-01\",\r\n \"label\": \"Windows Azure Guest OS 3.69 (Release 201901-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.34_201512-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.34_201512-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.34_201512-02\",\r\n \"label\": \"Windows Azure Guest OS 3.34 (Release 201512-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.64_201903-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.64_201903-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.64_201903-01\",\r\n \"label\": \"Windows Azure Guest OS 4.64 (Release 201903-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-6.12_201910-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-6.12_201910-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-6.12_201910-01\",\r\n \"label\": \"Windows Azure Guest OS 6.12 (Release 201910-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"6\",\r\n \"familyLabel\": \"Windows Server 2019\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.29_201602-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.29_201602-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.29_201602-01\",\r\n \"label\": \"Windows Azure Guest OS 4.29 (Release 201602-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.49_201603-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.49_201603-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.49_201603-01\",\r\n \"label\": \"Windows Azure Guest OS 2.49 (Release 201603-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.33_201511-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.33_201511-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.33_201511-01\",\r\n \"label\": \"Windows Azure Guest OS 3.33 (Release 201511-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.18_201408-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.18_201408-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.18_201408-01\",\r\n \"label\": \"Windows Azure Guest OS 3.18 (Release 201408-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-6.21_202007-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-6.21_202007-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-6.21_202007-01\",\r\n \"label\": \"Windows Azure Guest OS 6.21 (Release 202007-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"6\",\r\n \"familyLabel\": \"Windows Server 2019\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.80_201912-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.80_201912-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.80_201912-01\",\r\n \"label\": \"Windows Azure Guest OS 3.80 (Release 201912-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.19_201805-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.19_201805-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.19_201805-01\",\r\n \"label\": \"Windows Azure Guest OS 5.19 (Release 201805-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.76_201908-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.76_201908-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.76_201908-01\",\r\n \"label\": \"Windows Azure Guest OS 3.76 (Release 201908-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.29_201507-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.29_201507-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.29_201507-02\",\r\n \"label\": \"Windows Azure Guest OS 3.29 (Release 201507-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.101_202008-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.101_202008-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.101_202008-01\",\r\n \"label\": \"Windows Azure Guest OS 2.101 (Release 202008-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.101_202008-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.101_202008-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.101_202008-02\",\r\n \"label\": \"Windows Azure Guest OS 2.101 (Release 202008-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": true,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.1_201011-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.1_201011-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.1_201011-01\",\r\n \"label\": \"Windows Azure Guest OS 2.1 (Release 201011-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.27_202001-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.27_202001-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.27_202001-01\",\r\n \"label\": \"Windows Azure Guest OS 97.27 (Release 202001-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.14_201301-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.14_201301-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.14_201301-02\",\r\n \"label\": \"Windows Azure Guest OS 2.14 (Release 201301-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.81_202001-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.81_202001-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.81_202001-01\",\r\n \"label\": \"Windows Azure Guest OS 3.81 (Release 202001-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-6.17_202003-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-6.17_202003-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-6.17_202003-01\",\r\n \"label\": \"Windows Azure Guest OS 6.17 (Release 202003-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"6\",\r\n \"familyLabel\": \"Windows Server 2019\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.84_201903-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.84_201903-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.84_201903-01\",\r\n \"label\": \"Windows Azure Guest OS 2.84 (Release 201903-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.72_201911-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.72_201911-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.72_201911-01\",\r\n \"label\": \"Windows Azure Guest OS 4.72 (Release 201911-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.86_201905-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.86_201905-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.86_201905-01\",\r\n \"label\": \"Windows Azure Guest OS 2.86 (Release 201905-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.45_201511-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.45_201511-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.45_201511-01\",\r\n \"label\": \"Windows Azure Guest OS 2.45 (Release 201511-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.36_201910-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.36_201910-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.36_201910-01\",\r\n \"label\": \"Windows Azure Guest OS 5.36 (Release 201910-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.72_201803-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.72_201803-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.72_201803-01\",\r\n \"label\": \"Windows Azure Guest OS 2.72 (Release 201803-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.27_201405-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.27_201405-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.27_201405-01\",\r\n \"label\": \"Windows Azure Guest OS 2.27 (Release 201405-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.11_201204-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.11_201204-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.11_201204-01\",\r\n \"label\": \"Windows Azure Guest OS 2.11 (Release 201204-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-98.53_201711-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-98.53_201711-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-98.53_201711-01\",\r\n \"label\": \"Windows Azure Guest OS 98.53 (Release 201711-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"98\",\r\n \"familyLabel\": \"Windows Server 2012 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.91_202011-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.91_202011-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.91_202011-01\",\r\n \"label\": \"Windows Azure Guest OS 3.91 (Release 202011-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.4_201103-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.4_201103-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.4_201103-01\",\r\n \"label\": \"Windows Azure Guest OS 2.4 (Release 201103-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.7_201404-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.7_201404-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.7_201404-01\",\r\n \"label\": \"Windows Azure Guest OS 4.7 (Release 201404-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.29_202003-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.29_202003-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.29_202003-01\",\r\n \"label\": \"Windows Azure Guest OS 97.29 (Release 202003-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.75_201907-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.75_201907-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.75_201907-01\",\r\n \"label\": \"Windows Azure Guest OS 3.75 (Release 201907-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.32_201605-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.32_201605-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.32_201605-01\",\r\n \"label\": \"Windows Azure Guest OS 4.32 (Release 201605-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.41_201507-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.41_201507-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.41_201507-02\",\r\n \"label\": \"Windows Azure Guest OS 2.41 (Release 201507-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.20_201310-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.20_201310-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.20_201310-01\",\r\n \"label\": \"Windows Azure Guest OS 2.20 (Release 201310-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.74_202001-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.74_202001-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.74_202001-01\",\r\n \"label\": \"Windows Azure Guest OS 4.74 (Release 202001-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.38_201611-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.38_201611-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.38_201611-01\",\r\n \"label\": \"Windows Azure Guest OS 4.38 (Release 201611-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.54_201710-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.54_201710-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.54_201710-02\",\r\n \"label\": \"Windows Azure Guest OS 3.54 (Release 201710-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.20_201806-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.20_201806-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.20_201806-01\",\r\n \"label\": \"Windows Azure Guest OS 5.20 (Release 201806-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.17_201307-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.17_201307-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.17_201307-01\",\r\n \"label\": \"Windows Azure Guest OS 2.17 (Release 201307-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.36_201502-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.36_201502-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.36_201502-01\",\r\n \"label\": \"Windows Azure Guest OS 2.36 (Release 201502-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.46_201612-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.46_201612-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.46_201612-01\",\r\n \"label\": \"Windows Azure Guest OS 3.46 (Release 201612-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.16_201902-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.16_201902-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.16_201902-01\",\r\n \"label\": \"Windows Azure Guest OS 97.16 (Release 201902-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.18_201408-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.18_201408-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.18_201408-02\",\r\n \"label\": \"Windows Azure Guest OS 3.18 (Release 201408-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.81_202008-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.81_202008-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.81_202008-02\",\r\n \"label\": \"Windows Azure Guest OS 4.81 (Release 202008-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": true,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.15_201412-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.15_201412-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.15_201412-01\",\r\n \"label\": \"Windows Azure Guest OS 4.15 (Release 201412-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.67_201906-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.67_201906-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.67_201906-01\",\r\n \"label\": \"Windows Azure Guest OS 4.67 (Release 201906-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.0_201208-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.0_201208-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.0_201208-02\",\r\n \"label\": \"Windows Azure Guest OS 3.0 (Release 201208-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.25_201510-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"label\": \"Windows Azure Guest OS 4.25 (Release 201510-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.13_201403-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.13_201403-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.13_201403-01\",\r\n \"label\": \"Windows Azure Guest OS 3.13 (Release 201403-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.5_201307-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.5_201307-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.5_201307-01\",\r\n \"label\": \"Windows Azure Guest OS 3.5 (Release 201307-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.53_201709-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.53_201709-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.53_201709-01\",\r\n \"label\": \"Windows Azure Guest OS 3.53 (Release 201709-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.98_202005-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.98_202005-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.98_202005-02\",\r\n \"label\": \"Windows Azure Guest OS 2.98 (Release 202005-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.37_201911-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.37_201911-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.37_201911-01\",\r\n \"label\": \"Windows Azure Guest OS 5.37 (Release 201911-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.61_201704-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.61_201704-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.61_201704-01\",\r\n \"label\": \"Windows Azure Guest OS 2.61 (Release 201704-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.14_201301-03\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.14_201301-03\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.14_201301-03\",\r\n \"label\": \"Windows Azure Guest OS 2.14 (Release 201301-03)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.40_201703-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.40_201703-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.40_201703-01\",\r\n \"label\": \"Windows Azure Guest OS 4.40 (Release 201703-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.14_201302-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.14_201302-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.14_201302-02\",\r\n \"label\": \"Windows Azure Guest OS 2.14 (Release 201302-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.30_201508-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.30_201508-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.30_201508-02\",\r\n \"label\": \"Windows Azure Guest OS 3.30 (Release 201508-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.12_201208-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.12_201208-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.12_201208-02\",\r\n \"label\": \"Windows Azure Guest OS 2.12 (Release 201208-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.24_201402-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.24_201402-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.24_201402-01\",\r\n \"label\": \"Windows Azure Guest OS 2.24 (Release 201402-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-6.13_201911-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-6.13_201911-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-6.13_201911-01\",\r\n \"label\": \"Windows Azure Guest OS 6.13 (Release 201911-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"6\",\r\n \"familyLabel\": \"Windows Server 2019\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.39_201505-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.39_201505-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.39_201505-02\",\r\n \"label\": \"Windows Azure Guest OS 2.39 (Release 201505-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.4_201401-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.4_201401-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.4_201401-01\",\r\n \"label\": \"Windows Azure Guest OS 4.4 (Release 201401-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.95_202002-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.95_202002-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.95_202002-01\",\r\n \"label\": \"Windows Azure Guest OS 2.95 (Release 202002-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.31_201509-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.31_201509-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.31_201509-01\",\r\n \"label\": \"Windows Azure Guest OS 3.31 (Release 201509-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.48_201711-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.48_201711-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.48_201711-01\",\r\n \"label\": \"Windows Azure Guest OS 4.48 (Release 201711-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.96_202003-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.96_202003-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.96_202003-01\",\r\n \"label\": \"Windows Azure Guest OS 2.96 (Release 202003-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.47_202009-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.47_202009-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.47_202009-01\",\r\n \"label\": \"Windows Azure Guest OS 5.47 (Release 202009-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": true,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.84_202011-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.84_202011-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.84_202011-01\",\r\n \"label\": \"Windows Azure Guest OS 4.84 (Release 202011-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.41_201607-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.41_201607-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.41_201607-01\",\r\n \"label\": \"Windows Azure Guest OS 3.41 (Release 201607-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.22_201507-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.22_201507-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.22_201507-02\",\r\n \"label\": \"Windows Azure Guest OS 4.22 (Release 201507-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.26_201912-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.26_201912-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.26_201912-01\",\r\n \"label\": \"Windows Azure Guest OS 97.26 (Release 201912-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.84_202004-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.84_202004-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.84_202004-01\",\r\n \"label\": \"Windows Azure Guest OS 3.84 (Release 202004-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.10_201808-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.10_201808-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.10_201808-01\",\r\n \"label\": \"Windows Azure Guest OS 97.10 (Release 201808-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.42_201508-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.42_201508-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.42_201508-01\",\r\n \"label\": \"Windows Azure Guest OS 2.42 (Release 201508-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.2_201101-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.2_201101-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.2_201101-01\",\r\n \"label\": \"Windows Azure Guest OS 2.2 (Release 201101-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.70_201801-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.70_201801-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.70_201801-01\",\r\n \"label\": \"Windows Azure Guest OS 2.70 (Release 201801-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.66_201810-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.66_201810-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.66_201810-01\",\r\n \"label\": \"Windows Azure Guest OS 3.66 (Release 201810-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.73_201912-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.73_201912-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.73_201912-01\",\r\n \"label\": \"Windows Azure Guest OS 4.73 (Release 201912-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.30_201603-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.30_201603-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.30_201603-01\",\r\n \"label\": \"Windows Azure Guest OS 4.30 (Release 201603-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.87_202007-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.87_202007-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.87_202007-01\",\r\n \"label\": \"Windows Azure Guest OS 3.87 (Release 202007-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.76_201807-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.76_201807-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.76_201807-02\",\r\n \"label\": \"Windows Azure Guest OS 2.76 (Release 201807-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.77_201909-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.77_201909-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.77_201909-01\",\r\n \"label\": \"Windows Azure Guest OS 3.77 (Release 201909-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.45_201511-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.45_201511-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.45_201511-02\",\r\n \"label\": \"Windows Azure Guest OS 2.45 (Release 201511-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.35_201601-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.35_201601-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.35_201601-01\",\r\n \"label\": \"Windows Azure Guest OS 3.35 (Release 201601-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.5_201803-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.5_201803-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.5_201803-01\",\r\n \"label\": \"Windows Azure Guest OS 97.5 (Release 201803-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.14_201302-03\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.14_201302-03\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.14_201302-03\",\r\n \"label\": \"Windows Azure Guest OS 2.14 (Release 201302-03)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.72_201904-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.72_201904-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.72_201904-01\",\r\n \"label\": \"Windows Azure Guest OS 3.72 (Release 201904-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.73_201804-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.73_201804-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.73_201804-01\",\r\n \"label\": \"Windows Azure Guest OS 2.73 (Release 201804-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.49_201712-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.49_201712-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.49_201712-01\",\r\n \"label\": \"Windows Azure Guest OS 4.49 (Release 201712-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.87_201906-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.87_201906-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.87_201906-01\",\r\n \"label\": \"Windows Azure Guest OS 2.87 (Release 201906-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.49_202011-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.49_202011-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.49_202011-01\",\r\n \"label\": \"Windows Azure Guest OS 5.49 (Release 202011-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-6.22_202008-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-6.22_202008-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-6.22_202008-02\",\r\n \"label\": \"Windows Azure Guest OS 6.22 (Release 202008-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": true,\r\n \"family\": \"6\",\r\n \"familyLabel\": \"Windows Server 2019\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.57_201808-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.57_201808-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.57_201808-01\",\r\n \"label\": \"Windows Azure Guest OS 4.57 (Release 201808-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.1_201609-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.1_201609-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.1_201609-01\",\r\n \"label\": \"Windows Azure Guest OS 5.1 (Release 201609-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.19_201409-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.19_201409-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.19_201409-01\",\r\n \"label\": \"Windows Azure Guest OS 3.19 (Release 201409-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-6.2_201812-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-6.2_201812-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-6.2_201812-01\",\r\n \"label\": \"Windows Azure Guest OS 6.2 (Release 201812-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"6\",\r\n \"familyLabel\": \"Windows Server 2019\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.67_201710-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.67_201710-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.67_201710-01\",\r\n \"label\": \"Windows Azure Guest OS 2.67 (Release 201710-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.20_201906-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.20_201906-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.20_201906-01\",\r\n \"label\": \"Windows Azure Guest OS 97.20 (Release 201906-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.21_201311-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.21_201311-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.21_201311-01\",\r\n \"label\": \"Windows Azure Guest OS 2.21 (Release 201311-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.90_202010-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.90_202010-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.90_202010-02\",\r\n \"label\": \"Windows Azure Guest OS 3.90 (Release 202010-02)\",\r\n \"isDefault\": true,\r\n \"isActive\": true,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.7_201309-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.7_201309-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.7_201309-01\",\r\n \"label\": \"Windows Azure Guest OS 3.7 (Release 201309-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.5_201402-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.5_201402-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.5_201402-01\",\r\n \"label\": \"Windows Azure Guest OS 4.5 (Release 201402-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.60_201811-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.60_201811-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.60_201811-01\",\r\n \"label\": \"Windows Azure Guest OS 4.60 (Release 201811-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.7_201309-03\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.7_201309-03\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.7_201309-03\",\r\n \"label\": \"Windows Azure Guest OS 3.7 (Release 201309-03)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.33_202007-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.33_202007-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.33_202007-01\",\r\n \"label\": \"Windows Azure Guest OS 97.33 (Release 202007-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.98_202005-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.98_202005-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.98_202005-01\",\r\n \"label\": \"Windows Azure Guest OS 2.98 (Release 202005-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.15_201305-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.15_201305-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.15_201305-01\",\r\n \"label\": \"Windows Azure Guest OS 2.15 (Release 201305-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.18_201503-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.18_201503-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.18_201503-01\",\r\n \"label\": \"Windows Azure Guest OS 4.18 (Release 201503-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.44_201610-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.44_201610-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.44_201610-01\",\r\n \"label\": \"Windows Azure Guest OS 3.44 (Release 201610-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.61_201812-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.61_201812-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.61_201812-01\",\r\n \"label\": \"Windows Azure Guest OS 4.61 (Release 201812-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.31_201409-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.31_201409-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.31_201409-02\",\r\n \"label\": \"Windows Azure Guest OS 2.31 (Release 201409-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.47_201710-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.47_201710-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.47_201710-02\",\r\n \"label\": \"Windows Azure Guest OS 4.47 (Release 201710-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.8_201806-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.8_201806-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.8_201806-01\",\r\n \"label\": \"Windows Azure Guest OS 97.8 (Release 201806-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.21_201907-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.21_201907-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.21_201907-01\",\r\n \"label\": \"Windows Azure Guest OS 97.21 (Release 201907-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.41_201704-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.41_201704-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.41_201704-01\",\r\n \"label\": \"Windows Azure Guest OS 4.41 (Release 201704-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.47_201703-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.47_201703-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.47_201703-01\",\r\n \"label\": \"Windows Azure Guest OS 3.47 (Release 201703-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.18_201308-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.18_201308-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.18_201308-01\",\r\n \"label\": \"Windows Azure Guest OS 2.18 (Release 201308-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.9_201112-03\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.9_201112-03\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.9_201112-03\",\r\n \"label\": \"Windows Azure Guest OS 2.9 (Release 201112-03)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.9_201112-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.9_201112-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.9_201112-02\",\r\n \"label\": \"Windows Azure Guest OS 2.9 (Release 201112-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.9_201112-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.9_201112-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.9_201112-01\",\r\n \"label\": \"Windows Azure Guest OS 2.9 (Release 201112-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.52_201803-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.52_201803-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.52_201803-01\",\r\n \"label\": \"WindowsAzureGuestOS4.52 (Release 201803-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.80_201811-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.80_201811-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.80_201811-01\",\r\n \"label\": \"Windows Azure Guest OS 2.80 (Release 201811-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.41_202003-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.41_202003-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.41_202003-01\",\r\n \"label\": \"Windows Azure Guest OS 5.41 (Release 202003-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.15_201901-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.15_201901-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.15_201901-01\",\r\n \"label\": \"Windows Azure Guest OS 97.15 (Release 201901-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.13_201811-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.13_201811-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.13_201811-01\",\r\n \"label\": \"Windows Azure Guest OS 97.13 (Release 201811-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.29_201903-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.29_201903-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.29_201903-01\",\r\n \"label\": \"Windows Azure Guest OS 5.29 (Release 201903-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.37_201503-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.37_201503-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.37_201503-01\",\r\n \"label\": \"Windows Azure Guest OS 2.37 (Release 201503-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.81_201812-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.81_201812-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.81_201812-01\",\r\n \"label\": \"Windows Azure Guest OS 2.81 (Release 201812-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.25_201503-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.25_201503-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.25_201503-01\",\r\n \"label\": \"Windows Azure Guest OS 3.25 (Release 201503-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.47_201601-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.47_201601-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.47_201601-01\",\r\n \"label\": \"Windows Azure Guest OS 2.47 (Release 201601-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.36_201609-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.36_201609-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.36_201609-01\",\r\n \"label\": \"Windows Azure Guest OS 4.36 (Release 201609-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.22_201808-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.22_201808-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.22_201808-01\",\r\n \"label\": \"Windows Azure Guest OS 5.22 (Release 201808-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.37_201610-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.37_201610-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.37_201610-02\",\r\n \"label\": \"Windows Azure Guest OS 4.37 (Release 201610-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-6.5_201903-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-6.5_201903-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-6.5_201903-01\",\r\n \"label\": \"Windows Azure Guest OS 6.5 (Release 201903-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"6\",\r\n \"familyLabel\": \"Windows Server 2019\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.59_201701-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.59_201701-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.59_201701-01\",\r\n \"label\": \"Windows Azure Guest OS 2.59 (Release 201701-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.1_201711-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.1_201711-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.1_201711-01\",\r\n \"label\": \"Windows Azure Guest OS 97.1 (Release 201711-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.44_202006-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.44_202006-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.44_202006-02\",\r\n \"label\": \"Windows Azure Guest OS 5.44 (Release 202006-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.16_201802-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.16_201802-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.16_201802-01\",\r\n \"label\": \"WindowsAzureGuestOS5.16 (Release 201802-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.11_201401-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.11_201401-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.11_201401-01\",\r\n \"label\": \"Windows Azure Guest OS 3.11 (Release 201401-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.89_202009-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.89_202009-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.89_202009-01\",\r\n \"label\": \"Windows Azure Guest OS 3.89 (Release 202009-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": true,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.67_201811-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.67_201811-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.67_201811-01\",\r\n \"label\": \"Windows Azure Guest OS 3.67 (Release 201811-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.48_202010-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.48_202010-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.48_202010-02\",\r\n \"label\": \"Windows Azure Guest OS 5.48 (Release 202010-02)\",\r\n \"isDefault\": true,\r\n \"isActive\": true,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.23_201508-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.23_201508-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.23_201508-02\",\r\n \"label\": \"Windows Azure Guest OS 4.23 (Release 201508-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-6.20_202006-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-6.20_202006-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-6.20_202006-02\",\r\n \"label\": \"Windows Azure Guest OS 6.20 (Release 202006-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"6\",\r\n \"familyLabel\": \"Windows Server 2019\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.21_201807-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.21_201807-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.21_201807-01\",\r\n \"label\": \"Windows Azure Guest OS 5.21 (Release 201807-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.5_201104-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.5_201104-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.5_201104-01\",\r\n \"label\": \"Windows Azure Guest OS 2.5 (Release 201104-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.73_201905-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.73_201905-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.73_201905-01\",\r\n \"label\": \"Windows Azure Guest OS 3.73 (Release 201905-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.79_201810-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.79_201810-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.79_201810-01\",\r\n \"label\": \"Windows Azure Guest OS 2.79 (Release 201810-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.29_201602-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.29_201602-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.29_201602-02\",\r\n \"label\": \"Windows Azure Guest OS 4.29 (Release 201602-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.39_201612-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.39_201612-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.39_201612-01\",\r\n \"label\": \"Windows Azure Guest OS 4.39 (Release 201612-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.46_201709-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.46_201709-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.46_201709-01\",\r\n \"label\": \"Windows Azure Guest OS 4.46 (Release 201709-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.22_201908-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.22_201908-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.22_201908-01\",\r\n \"label\": \"Windows Azure Guest OS 97.22 (Release 201908-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.30_202004-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.30_202004-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.30_202004-01\",\r\n \"label\": \"Windows Azure Guest OS 97.30 (Release 202004-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.77_202004-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.77_202004-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.77_202004-01\",\r\n \"label\": \"Windows Azure Guest OS 4.77 (Release 202004-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.55_201806-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.55_201806-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.55_201806-01\",\r\n \"label\": \"Windows Azure Guest OS 4.55 (Release 201806-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.19_201905-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.19_201905-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.19_201905-01\",\r\n \"label\": \"Windows Azure Guest OS 97.19 (Release 201905-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.65_201904-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.65_201904-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.65_201904-01\",\r\n \"label\": \"Windows Azure Guest OS 4.65 (Release 201904-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.0_201309-03\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.0_201309-03\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.0_201309-03\",\r\n \"label\": \"Windows Azure Guest OS 4.0 (Release 201309-03)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.85_202005-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.85_202005-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.85_202005-02\",\r\n \"label\": \"Windows Azure Guest OS 3.85 (Release 202005-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.13_201410-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.13_201410-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.13_201410-01\",\r\n \"label\": \"Windows Azure Guest OS 4.13 (Release 201410-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-6.9_201907-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-6.9_201907-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-6.9_201907-01\",\r\n \"label\": \"Windows Azure Guest OS 6.9 (Release 201907-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"6\",\r\n \"familyLabel\": \"Windows Server 2019\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.50_201801-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.50_201801-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.50_201801-01\",\r\n \"label\": \"WindowsAzureGuestOS4.50(Release201801-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-6.1_201811-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-6.1_201811-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-6.1_201811-01\",\r\n \"label\": \"Windows Azure Guest OS 6.1 (Release 201811-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"6\",\r\n \"familyLabel\": \"Windows Server 2019\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.11_201204-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.11_201204-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.11_201204-02\",\r\n \"label\": \"Windows Azure Guest OS 2.11 (Release 201204-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-6.4_201902-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-6.4_201902-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-6.4_201902-01\",\r\n \"label\": \"Windows Azure Guest OS 6.4 (Release 201902-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"6\",\r\n \"familyLabel\": \"Windows Server 2019\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.12_201400-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.12_201400-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.12_201400-01\",\r\n \"label\": \"Windows Azure Guest OS 4.12 (Release 201409-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.35_201501-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.35_201501-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.35_201501-01\",\r\n \"label\": \"Windows Azure Guest OS 2.35 (Release 201501-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.62_201901-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.62_201901-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.62_201901-01\",\r\n \"label\": \"Windows Azure Guest OS 4.62 (Release 201901-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.65_201708-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.65_201708-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.65_201708-01\",\r\n \"label\": \"Windows Azure Guest OS 2.65 (Release 201708-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.42_202004-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.42_202004-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.42_202004-01\",\r\n \"label\": \"Windows Azure Guest OS 5.42 (Release 202004-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.43_201509-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.43_201509-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.43_201509-01\",\r\n \"label\": \"Windows Azure Guest OS 2.43 (Release 201509-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.45_201611-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.45_201611-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.45_201611-01\",\r\n \"label\": \"Windows Azure Guest OS 3.45 (Release 201611-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.16_201406-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.16_201406-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.16_201406-01\",\r\n \"label\": \"Windows Azure Guest OS 3.16 (Release 201406-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.85_201904-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.85_201904-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.85_201904-01\",\r\n \"label\": \"Windows Azure Guest OS 2.85 (Release 201904-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.33_201606-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.33_201606-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.33_201606-01\",\r\n \"label\": \"Windows Azure Guest OS 4.33 (Release 201606-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.25_201403-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.25_201403-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.25_201403-01\",\r\n \"label\": \"Windows Azure Guest OS 2.25 (Release 201403-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.71_201910-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.71_201910-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.71_201910-01\",\r\n \"label\": \"Windows Azure Guest OS 4.71 (Release 201910-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.78_201910-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.78_201910-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.78_201910-01\",\r\n \"label\": \"Windows Azure Guest OS 3.78 (Release 201910-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.81_202008-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.81_202008-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.81_202008-01\",\r\n \"label\": \"Windows Azure Guest OS 4.81 (Release 202008-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.3_201102-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.3_201102-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.3_201102-01\",\r\n \"label\": \"Windows Azure Guest OS 2.3 (Release 201102-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.6_201403-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.6_201403-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.6_201403-01\",\r\n \"label\": \"Windows Azure Guest OS 4.6 (Release 201403-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.78_201809-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.78_201809-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.78_201809-01\",\r\n \"label\": \"Windows Azure Guest OS 2.78 (Release 201809-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.23_201909-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.23_201909-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.23_201909-01\",\r\n \"label\": \"Windows Azure Guest OS 97.23 (Release 201909-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.58_201802-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.58_201802-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.58_201802-01\",\r\n \"label\": \"Windows Azure Guest OS 3.58 (Release 201802-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.82_201901-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.82_201901-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.82_201901-01\",\r\n \"label\": \"Windows Azure Guest OS 2.82 (Release 201901-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.52_201606-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.52_201606-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.52_201606-01\",\r\n \"label\": \"Windows Azure Guest OS 2.52 (Release 201606-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.12_201208-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.12_201208-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.12_201208-01\",\r\n \"label\": \"Windows Azure Guest OS 2.12 (Release 201208-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.24_201910-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.24_201910-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.24_201910-01\",\r\n \"label\": \"Windows Azure Guest OS 97.24 (Release 201910-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.23_201508-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.23_201508-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.23_201508-01\",\r\n \"label\": \"Windows Azure Guest OS 4.23 (Release 201508-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.42_201608-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.42_201608-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.42_201608-01\",\r\n \"label\": \"Windows Azure Guest OS 3.42 (Release 201608-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.99_202006-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.99_202006-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.99_202006-02\",\r\n \"label\": \"Windows Azure Guest OS 2.99 (Release 202006-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-6.8_201906-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-6.8_201906-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-6.8_201906-01\",\r\n \"label\": \"Windows Azure Guest OS 6.8 (Release 201906-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"6\",\r\n \"familyLabel\": \"Windows Server 2019\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.58_201612-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.58_201612-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.58_201612-01\",\r\n \"label\": \"Windows Azure Guest OS 2.58 (Release 201612-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.14_201712-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.14_201712-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.14_201712-01\",\r\n \"label\": \"Windows Azure Guest OS 5.14 (Release 201712-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.37_202011-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.37_202011-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.37_202011-01\",\r\n \"label\": \"Windows Azure Guest OS 97.37 (Release 202011-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-6.23_202009-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-6.23_202009-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-6.23_202009-01\",\r\n \"label\": \"Windows Azure Guest OS 6.23 (Release 202009-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": true,\r\n \"family\": \"6\",\r\n \"familyLabel\": \"Windows Server 2019\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.19_201309-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.19_201309-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.19_201309-01\",\r\n \"label\": \"Windows Azure Guest OS 2.19 (Release 201309-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.92_201911-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.92_201911-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.92_201911-01\",\r\n \"label\": \"Windows Azure Guest OS 2.92 (Release 201911-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.38_201604-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.38_201604-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.38_201604-01\",\r\n \"label\": \"Windows Azure Guest OS 3.38 (Release 201604-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.28_201506-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.28_201506-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.28_201506-01\",\r\n \"label\": \"Windows Azure Guest OS 3.28 (Release 201506-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.79_201911-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.79_201911-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.79_201911-01\",\r\n \"label\": \"Windows Azure Guest OS 3.79 (Release 201911-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.26_201812-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.26_201812-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.26_201812-01\",\r\n \"label\": \"Windows Azure Guest OS 5.26 (Release 201812-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.2_201610-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.2_201610-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.2_201610-02\",\r\n \"label\": \"Windows Azure Guest OS 5.2 (Release 201610-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.2_201610-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.2_201610-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.2_201610-01\",\r\n \"label\": \"Windows Azure Guest OS 5.2 (Release 201610-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.14_201302-04\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.14_201302-04\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.14_201302-04\",\r\n \"label\": \"Windows Azure Guest OS 2.14 (Release 201302-04)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.22_201412-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.22_201412-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.22_201412-01\",\r\n \"label\": \"Windows Azure Guest OS 3.22 (Release 201412-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.76_201807-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.76_201807-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.76_201807-01\",\r\n \"label\": \"Windows Azure Guest OS 2.76 (Release 201807-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.0_201010-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.0_201010-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.0_201010-01\",\r\n \"label\": \"Windows Azure Guest OS 2.0 (Release 201010-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.9_201807-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.9_201807-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.9_201807-01\",\r\n \"label\": \"Windows Azure Guest OS 97.9 (Release 201807-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.70_201902-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.70_201902-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.70_201902-01\",\r\n \"label\": \"Windows Azure Guest OS 3.70 (Release 201902-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.58_201802-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.58_201802-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.58_201802-02\",\r\n \"label\": \"Windows Azure Guest OS 3.58 (Release 201802-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.71_201802-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.71_201802-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.71_201802-01\",\r\n \"label\": \"Windows Azure Guest OS 2.71 (Release 201802-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.90_201909-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.90_201909-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.90_201909-01\",\r\n \"label\": \"Windows Azure Guest OS 2.90 (Release 201909-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.6_201105-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.6_201105-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.6_201105-01\",\r\n \"label\": \"Windows Azure Guest OS 2.6 (Release 201105-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.17_201803-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.17_201803-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.17_201803-01\",\r\n \"label\": \"WindowsAzureGuestOS5.17 (Release 201803-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-6.10_201908-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-6.10_201908-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-6.10_201908-01\",\r\n \"label\": \"Windows Azure Guest OS 6.10 (Release 201908-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"6\",\r\n \"familyLabel\": \"Windows Server 2019\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.31_201604-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.31_201604-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.31_201604-01\",\r\n \"label\": \"Windows Azure Guest OS 4.31 (Release 201604-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.16_201501-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.16_201501-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.16_201501-01\",\r\n \"label\": \"Windows Azure Guest OS 4.16 (Release 201501-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.22_201507-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.22_201507-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.22_201507-01\",\r\n \"label\": \"Windows Azure Guest OS 4.22 (Release 201507-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.32_201906-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.32_201906-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.32_201906-01\",\r\n \"label\": \"Windows Azure Guest OS 5.32 (Release 201906-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-6.18_202004-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-6.18_202004-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-6.18_202004-01\",\r\n \"label\": \"Windows Azure Guest OS 6.18 (Release 202004-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"6\",\r\n \"familyLabel\": \"Windows Server 2019\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.7_201107-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.7_201107-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.7_201107-01\",\r\n \"label\": \"Windows Azure Guest OS 2.7 (Release 201107-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-6.15_202001-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-6.15_202001-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-6.15_202001-01\",\r\n \"label\": \"Windows Azure Guest OS 6.15 (Release 202001-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"6\",\r\n \"familyLabel\": \"Windows Server 2019\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-6.25_202011-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-6.25_202011-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-6.25_202011-01\",\r\n \"label\": \"Windows Azure Guest OS 6.25 (Release 202011-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"6\",\r\n \"familyLabel\": \"Windows Server 2019\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.3_201611-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.3_201611-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.3_201611-01\",\r\n \"label\": \"Windows Azure Guest OS 5.3 (Release 201611-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.36_201602-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.36_201602-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.36_201602-02\",\r\n \"label\": \"Windows Azure Guest OS 3.36 (Release 201602-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.63_201902-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.63_201902-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.63_201902-01\",\r\n \"label\": \"Windows Azure Guest OS 4.63 (Release 201902-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.34_201412-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.34_201412-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.34_201412-01\",\r\n \"label\": \"Windows Azure Guest OS 2.34 (Release 201412-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.19_201504-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.19_201504-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.19_201504-01\",\r\n \"label\": \"Windows Azure Guest OS 4.19 (Release 201504-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.50_201604-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.50_201604-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.50_201604-01\",\r\n \"label\": \"Windows Azure Guest OS 2.50 (Release 201604-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.23_201809-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.23_201809-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.23_201809-01\",\r\n \"label\": \"Windows Azure Guest OS 5.23 (Release 201809-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.19_201409-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.19_201409-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.19_201409-02\",\r\n \"label\": \"Windows Azure Guest OS 3.19 (Release 201409-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.11_201408-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.11_201408-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.11_201408-01\",\r\n \"label\": \"Windows Azure Guest OS 4.11 (Release 201408-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-6.24_202010-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-6.24_202010-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-6.24_202010-02\",\r\n \"label\": \"Windows Azure Guest OS 6.24 (Release 202010-02)\",\r\n \"isDefault\": true,\r\n \"isActive\": true,\r\n \"family\": \"6\",\r\n \"familyLabel\": \"Windows Server 2019\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.28_201406-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.28_201406-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.28_201406-01\",\r\n \"label\": \"Windows Azure Guest OS 2.28 (Release 201406-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.70_201909-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.70_201909-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.70_201909-01\",\r\n \"label\": \"Windows Azure Guest OS 4.70 (Release 201909-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.90_202010-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.90_202010-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.90_202010-01\",\r\n \"label\": \"Windows Azure Guest OS 3.90 (Release 202010-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.34_201908-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.34_201908-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.34_201908-01\",\r\n \"label\": \"Windows Azure Guest OS 5.34 (Release 201908-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.59_201810-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.59_201810-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.59_201810-01\",\r\n \"label\": \"Windows Azure Guest OS 4.59 (Release 201810-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.23_201501-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.23_201501-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.23_201501-01\",\r\n \"label\": \"Windows Azure Guest OS 3.23 (Release 201501-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.3_201801-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.3_201801-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.3_201801-01\",\r\n \"label\": \"Windows Azure Guest OS 97.3 (Release 201801-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.44_201610-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.44_201610-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.44_201610-02\",\r\n \"label\": \"Windows Azure Guest OS 3.44 (Release 201610-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.2_201311-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.2_201311-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.2_201311-01\",\r\n \"label\": \"Windows Azure Guest OS 4.2 (Release 201311-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.40_201506-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.40_201506-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.40_201506-01\",\r\n \"label\": \"Windows Azure Guest OS 2.40 (Release 201506-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.83_201902-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.83_201902-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.83_201902-01\",\r\n \"label\": \"Windows Azure Guest OS 2.83 (Release 201902-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.47_201710-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.47_201710-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.47_201710-01\",\r\n \"label\": \"Windows Azure Guest OS 4.47 (Release 201710-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.93_201912-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.93_201912-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.93_201912-01\",\r\n \"label\": \"Windows Azure Guest OS 2.93 (Release 201912-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.53_201607-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.53_201607-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.53_201607-01\",\r\n \"label\": \"Windows Azure Guest OS 2.53 (Release 201607-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.4_201612-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.4_201612-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.4_201612-01\",\r\n \"label\": \"Windows Azure Guest OS 5.4 (Release 201612-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.82_202009-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.82_202009-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.82_202009-01\",\r\n \"label\": \"Windows Azure Guest OS 4.82 (Release 202009-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": true,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.20_201410-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.20_201410-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.20_201410-01\",\r\n \"label\": \"Windows Azure Guest OS 3.20 (Release 201410-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.83_202003-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.83_202003-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.83_202003-01\",\r\n \"label\": \"Windows Azure Guest OS 3.83 (Release 202003-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.17_201407-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.17_201407-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.17_201407-01\",\r\n \"label\": \"Windows Azure Guest OS 3.17 (Release 201407-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.56_201807-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.56_201807-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.56_201807-02\",\r\n \"label\": \"Windows Azure Guest OS 4.56 (Release 201807-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.56_201610-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.56_201610-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.56_201610-02\",\r\n \"label\": \"Windows Azure Guest OS 2.56 (Release 201610-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.100_202007-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.100_202007-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.100_202007-01\",\r\n \"label\": \"Windows Azure Guest OS 2.100 (Release 202007-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": true,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.14_201404-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.14_201404-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.14_201404-01\",\r\n \"label\": \"Windows Azure Guest OS 3.14 (Release 201404-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.15_201801-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.15_201801-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.15_201801-01\",\r\n \"label\": \"WindowsAzureGuestOS5.15(Release201801-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.3_201312-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.3_201312-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.3_201312-01\",\r\n \"label\": \"Windows Azure Guest OS 4.3 (Release 201312-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.94_202001-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.94_202001-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.94_202001-01\",\r\n \"label\": \"Windows Azure Guest OS 2.94 (Release 202001-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.10_201407-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.10_201407-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.10_201407-01\",\r\n \"label\": \"Windows Azure Guest OS 4.10 (Release 201407-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.37_201610-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.37_201610-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.37_201610-01\",\r\n \"label\": \"Windows Azure Guest OS 4.37 (Release 201610-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.2_201301-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.2_201301-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.2_201301-02\",\r\n \"label\": \"Windows Azure Guest OS 3.2 (Release 201301-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.2_201301-03\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.2_201301-03\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.2_201301-03\",\r\n \"label\": \"Windows Azure Guest OS 3.2 (Release 201301-03)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.59_201803-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.59_201803-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.59_201803-01\",\r\n \"label\": \"Windows Azure Guest OS 3.59 (Release 201803-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.9_201807-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.9_201807-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.9_201807-02\",\r\n \"label\": \"Windows Azure Guest OS 97.9 (Release 201807-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.76_202003-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.76_202003-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.76_202003-01\",\r\n \"label\": \"Windows Azure Guest OS 4.76 (Release 202003-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.53_201804-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.53_201804-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.53_201804-01\",\r\n \"label\": \"WindowsAzureGuestOS4.53 (Release 201804-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-6.16_202002-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-6.16_202002-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-6.16_202002-01\",\r\n \"label\": \"Windows Azure Guest OS 6.16 (Release 202002-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"6\",\r\n \"familyLabel\": \"Windows Server 2019\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.46_201512-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.46_201512-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.46_201512-02\",\r\n \"label\": \"Windows Azure Guest OS 2.46 (Release 201512-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.74_201805-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.74_201805-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.74_201805-01\",\r\n \"label\": \"Windows Azure Guest OS 2.74 (Release 201805-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.34_202008-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.34_202008-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.34_202008-01\",\r\n \"label\": \"Windows Azure Guest OS 97.34 (Release 202008-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.48_202010-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.48_202010-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.48_202010-01\",\r\n \"label\": \"Windows Azure Guest OS 5.48 (Release 202010-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.71_201903-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.71_201903-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.71_201903-01\",\r\n \"label\": \"Windows Azure Guest OS 3.71 (Release 201903-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.34_202008-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.34_202008-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.34_202008-02\",\r\n \"label\": \"Windows Azure Guest OS 97.34 (Release 202008-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": true,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.78_202005-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.78_202005-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.78_202005-02\",\r\n \"label\": \"Windows Azure Guest OS 4.78 (Release 202005-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.27_201512-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.27_201512-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.27_201512-02\",\r\n \"label\": \"Windows Azure Guest OS 4.27 (Release 201512-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.58_201809-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.58_201809-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.58_201809-01\",\r\n \"label\": \"Windows Azure Guest OS 4.58 (Release 201809-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.68_201907-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.68_201907-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.68_201907-01\",\r\n \"label\": \"Windows Azure Guest OS 4.68 (Release 201907-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.21_201807-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.21_201807-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.21_201807-02\",\r\n \"label\": \"Windows Azure Guest OS 5.21 (Release 201807-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.27_201901-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.27_201901-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.27_201901-01\",\r\n \"label\": \"Windows Azure Guest OS 5.27 (Release 201901-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.10_201312-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.10_201312-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.10_201312-01\",\r\n \"label\": \"Windows Azure Guest OS 3.10 (Release 201312-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.64_201808-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.64_201808-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.64_201808-01\",\r\n \"label\": \"Windows Azure Guest OS 3.64 (Release 201808-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.31_202005-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.31_202005-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.31_202005-01\",\r\n \"label\": \"Windows Azure Guest OS 97.31 (Release 202005-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.31_202005-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.31_202005-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.31_202005-02\",\r\n \"label\": \"Windows Azure Guest OS 97.31 (Release 202005-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.33_201907-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.33_201907-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.33_201907-01\",\r\n \"label\": \"Windows Azure Guest OS 5.33 (Release 201907-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.75_202002-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.75_202002-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.75_202002-01\",\r\n \"label\": \"Windows Azure Guest OS 4.75 (Release 202002-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.39_201605-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.39_201605-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.39_201605-01\",\r\n \"label\": \"Windows Azure Guest OS 3.39 (Release 201605-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.1_201210-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.1_201210-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.1_201210-01\",\r\n \"label\": \"Windows Azure Guest OS 3.1 (Release 201210-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.46_202008-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.46_202008-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.46_202008-01\",\r\n \"label\": \"Windows Azure Guest OS 5.46 (Release 202008-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.38_201504-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.38_201504-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.38_201504-01\",\r\n \"label\": \"Windows Azure Guest OS 2.38 (Release 201504-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-6.3_201901-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-6.3_201901-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-6.3_201901-01\",\r\n \"label\": \"Windows Azure Guest OS 6.3 (Release 201901-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"6\",\r\n \"familyLabel\": \"Windows Server 2019\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.56_201712-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.56_201712-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.56_201712-01\",\r\n \"label\": \"Windows Azure Guest OS 3.56 (Release 201712-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.51_201605-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.51_201605-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.51_201605-01\",\r\n \"label\": \"Windows Azure Guest OS 2.51 (Release 201605-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.89_201908-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.89_201908-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.89_201908-01\",\r\n \"label\": \"Windows Azure Guest OS 2.89 (Release 201908-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.28_202002-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.28_202002-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.28_202002-01\",\r\n \"label\": \"Windows Azure Guest OS 97.28 (Release 202002-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-6.19_202005-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-6.19_202005-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-6.19_202005-02\",\r\n \"label\": \"Windows Azure Guest OS 6.19 (Release 202005-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"6\",\r\n \"familyLabel\": \"Windows Server 2019\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.23_201401-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.23_201401-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.23_201401-01\",\r\n \"label\": \"Windows Azure Guest OS 2.23 (Release 201401-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.85_202005-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.85_202005-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.85_202005-01\",\r\n \"label\": \"Windows Azure Guest OS 3.85 (Release 202005-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.13_201210-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.13_201210-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.13_201210-01\",\r\n \"label\": \"Windows Azure Guest OS 2.13 (Release 201210-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.43_201609-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.43_201609-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.43_201609-01\",\r\n \"label\": \"Windows Azure Guest OS 3.43 (Release 201609-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-6.14_201912-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-6.14_201912-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-6.14_201912-01\",\r\n \"label\": \"Windows Azure Guest OS 6.14 (Release 201912-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"6\",\r\n \"familyLabel\": \"Windows Server 2019\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.35_201909-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.35_201909-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.35_201909-01\",\r\n \"label\": \"Windows Azure Guest OS 5.35 (Release 201909-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.14_201812-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.14_201812-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.14_201812-01\",\r\n \"label\": \"Windows Azure Guest OS 97.14 (Release 201812-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-6.11_201909-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-6.11_201909-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-6.11_201909-01\",\r\n \"label\": \"Windows Azure Guest OS 6.11 (Release 201909-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"6\",\r\n \"familyLabel\": \"Windows Server 2019\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.12_201710-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.12_201710-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.12_201710-02\",\r\n \"label\": \"Windows Azure Guest OS 5.12 (Release 201710-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.5_201703-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.5_201703-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.5_201703-01\",\r\n \"label\": \"Windows Azure Guest OS 5.5 (Release 201703-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.0_201608-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.0_201608-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.0_201608-01\",\r\n \"label\": \"Windows Azure Guest OS 5.0 (Release 201608-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.19_201309-03\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.19_201309-03\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.19_201309-03\",\r\n \"label\": \"Windows Azure Guest OS 2.19 (Release 201309-03)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.83_202010-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.83_202010-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.83_202010-01\",\r\n \"label\": \"Windows Azure Guest OS 4.83 (Release 202010-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.20_201505-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.20_201505-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.20_201505-01\",\r\n \"label\": \"Windows Azure Guest OS 4.20 (Release 201505-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.9_201311-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.9_201311-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.9_201311-01\",\r\n \"label\": \"Windows Azure Guest OS 3.9 (Release 201311-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.88_202008-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.88_202008-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.88_202008-02\",\r\n \"label\": \"Windows Azure Guest OS 3.88 (Release 202008-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": true,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.30_201904-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.30_201904-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.30_201904-01\",\r\n \"label\": \"Windows Azure Guest OS 5.30 (Release 201904-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.51_201802-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.51_201802-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.51_201802-01\",\r\n \"label\": \"WindowsAzureGuestOS4.51 (Release 201802-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.62_201806-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.62_201806-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.62_201806-01\",\r\n \"label\": \"Windows Azure Guest OS 3.62 (Release 201806-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.56_201610-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.56_201610-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.56_201610-01\",\r\n \"label\": \"Windows Azure Guest OS 2.56 (Release 201610-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.17_201903-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.17_201903-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.17_201903-01\",\r\n \"label\": \"Windows Azure Guest OS 97.17 (Release 201903-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-3.4_201306-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-3.4_201306-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-3.4_201306-01\",\r\n \"label\": \"Windows Azure Guest OS 3.4 (Release 201306-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"3\",\r\n \"familyLabel\": \"Windows Server 2012\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.24_201810-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.24_201810-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.24_201810-01\",\r\n \"label\": \"Windows Azure Guest OS 5.24 (Release 201810-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.36_202010-02\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.36_202010-02\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.36_202010-02\",\r\n \"label\": \"Windows Azure Guest OS 97.36 (Release 202010-02)\",\r\n \"isDefault\": true,\r\n \"isActive\": true,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-4.45_201708-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-4.45_201708-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-4.45_201708-01\",\r\n \"label\": \"Windows Azure Guest OS 4.45 (Release 201708-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"4\",\r\n \"familyLabel\": \"Windows Server 2012 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-97.36_202010-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-97.36_202010-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-97.36_202010-01\",\r\n \"label\": \"Windows Azure Guest OS 97.36 (Release 202010-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"97\",\r\n \"familyLabel\": \"Windows Server 2016 Drawbridge\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-2.88_201907-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-2.88_201907-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-2.88_201907-01\",\r\n \"label\": \"Windows Azure Guest OS 2.88 (Release 201907-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"2\",\r\n \"familyLabel\": \"Windows Server 2008 R2\"\r\n }\r\n },\r\n {\r\n \"name\": \"WA-GUEST-OS-5.38_201912-01\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSVersions/WA-GUEST-OS-5.38_201912-01\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSVersions\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"version\": \"WA-GUEST-OS-5.38_201912-01\",\r\n \"label\": \"Windows Azure Guest OS 5.38 (Release 201912-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false,\r\n \"family\": \"5\",\r\n \"familyLabel\": \"Windows Server 2016\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOsFamilies?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzMi9jbG91ZFNlcnZpY2VPc0ZhbWlsaWVzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b827d8a-5f36-403f-9d93-8f7deb913112" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "55842e39-ff19-4719-9c79-56184bd38f43_132597424726364417" + ], + "x-ms-request-id": [ + "7365096e-fd25-49f7-9b87-f267062699eb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "1528f734-2ce1-423a-b0b2-7ad4c9846542" + ], + "x-ms-routing-request-id": [ + "BRAZILUS:20210322T191908Z:1528f734-2ce1-423a-b0b2-7ad4c9846542" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 19:19:07 GMT" + ], + "Content-Length": [ + "103483" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"5\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSFamilies/5\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSFamilies\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"name\": \"5\",\r\n \"label\": \"Windows Server 2016\",\r\n \"versions\": [\r\n {\r\n \"version\": \"WA-GUEST-OS-5.0_201608-01\",\r\n \"label\": \"Windows Azure Guest OS 5.0 (Release 201608-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.10_201708-01\",\r\n \"label\": \"Windows Azure Guest OS 5.10 (Release 201708-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.11_201709-01\",\r\n \"label\": \"Windows Azure Guest OS 5.11 (Release 201709-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.12_201710-01\",\r\n \"label\": \"Windows Azure Guest OS 5.12 (Release 201710-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.12_201710-02\",\r\n \"label\": \"Windows Azure Guest OS 5.12 (Release 201710-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.13_201711-01\",\r\n \"label\": \"Windows Azure Guest OS 5.13 (Release 201711-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.14_201712-01\",\r\n \"label\": \"Windows Azure Guest OS 5.14 (Release 201712-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.15_201801-01\",\r\n \"label\": \"WindowsAzureGuestOS5.15(Release201801-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.16_201802-01\",\r\n \"label\": \"WindowsAzureGuestOS5.16 (Release 201802-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.17_201803-01\",\r\n \"label\": \"WindowsAzureGuestOS5.17 (Release 201803-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.18_201804-01\",\r\n \"label\": \"WindowsAzureGuestOS5.18 (Release 201804-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.19_201805-01\",\r\n \"label\": \"Windows Azure Guest OS 5.19 (Release 201805-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.1_201609-01\",\r\n \"label\": \"Windows Azure Guest OS 5.1 (Release 201609-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.20_201806-01\",\r\n \"label\": \"Windows Azure Guest OS 5.20 (Release 201806-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.21_201807-01\",\r\n \"label\": \"Windows Azure Guest OS 5.21 (Release 201807-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.21_201807-02\",\r\n \"label\": \"Windows Azure Guest OS 5.21 (Release 201807-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.22_201808-01\",\r\n \"label\": \"Windows Azure Guest OS 5.22 (Release 201808-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.23_201809-01\",\r\n \"label\": \"Windows Azure Guest OS 5.23 (Release 201809-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.24_201810-01\",\r\n \"label\": \"Windows Azure Guest OS 5.24 (Release 201810-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.25_201811-01\",\r\n \"label\": \"Windows Azure Guest OS 5.25 (Release 201811-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.26_201812-01\",\r\n \"label\": \"Windows Azure Guest OS 5.26 (Release 201812-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.27_201901-01\",\r\n \"label\": \"Windows Azure Guest OS 5.27 (Release 201901-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.28_201902-01\",\r\n \"label\": \"Windows Azure Guest OS 5.28 (Release 201902-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.29_201903-01\",\r\n \"label\": \"Windows Azure Guest OS 5.29 (Release 201903-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.2_201610-01\",\r\n \"label\": \"Windows Azure Guest OS 5.2 (Release 201610-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.2_201610-02\",\r\n \"label\": \"Windows Azure Guest OS 5.2 (Release 201610-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.30_201904-01\",\r\n \"label\": \"Windows Azure Guest OS 5.30 (Release 201904-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.31_201905-01\",\r\n \"label\": \"Windows Azure Guest OS 5.31 (Release 201905-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.32_201906-01\",\r\n \"label\": \"Windows Azure Guest OS 5.32 (Release 201906-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.33_201907-01\",\r\n \"label\": \"Windows Azure Guest OS 5.33 (Release 201907-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.34_201908-01\",\r\n \"label\": \"Windows Azure Guest OS 5.34 (Release 201908-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.35_201909-01\",\r\n \"label\": \"Windows Azure Guest OS 5.35 (Release 201909-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.36_201910-01\",\r\n \"label\": \"Windows Azure Guest OS 5.36 (Release 201910-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.37_201911-01\",\r\n \"label\": \"Windows Azure Guest OS 5.37 (Release 201911-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.38_201912-01\",\r\n \"label\": \"Windows Azure Guest OS 5.38 (Release 201912-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.39_202001-01\",\r\n \"label\": \"Windows Azure Guest OS 5.39 (Release 202001-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.3_201611-01\",\r\n \"label\": \"Windows Azure Guest OS 5.3 (Release 201611-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.40_202002-01\",\r\n \"label\": \"Windows Azure Guest OS 5.40 (Release 202002-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.41_202003-01\",\r\n \"label\": \"Windows Azure Guest OS 5.41 (Release 202003-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.42_202004-01\",\r\n \"label\": \"Windows Azure Guest OS 5.42 (Release 202004-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.43_202005-01\",\r\n \"label\": \"Windows Azure Guest OS 5.43 (Release 202005-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.43_202005-02\",\r\n \"label\": \"Windows Azure Guest OS 5.43 (Release 202005-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.44_202006-02\",\r\n \"label\": \"Windows Azure Guest OS 5.44 (Release 202006-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.45_202007-01\",\r\n \"label\": \"Windows Azure Guest OS 5.45 (Release 202007-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.46_202008-01\",\r\n \"label\": \"Windows Azure Guest OS 5.46 (Release 202008-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.46_202008-02\",\r\n \"label\": \"Windows Azure Guest OS 5.46 (Release 202008-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": true\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.47_202009-01\",\r\n \"label\": \"Windows Azure Guest OS 5.47 (Release 202009-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": true\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.48_202010-01\",\r\n \"label\": \"Windows Azure Guest OS 5.48 (Release 202010-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.48_202010-02\",\r\n \"label\": \"Windows Azure Guest OS 5.48 (Release 202010-02)\",\r\n \"isDefault\": true,\r\n \"isActive\": true\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.49_202011-01\",\r\n \"label\": \"Windows Azure Guest OS 5.49 (Release 202011-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.4_201612-01\",\r\n \"label\": \"Windows Azure Guest OS 5.4 (Release 201612-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.5_201703-01\",\r\n \"label\": \"Windows Azure Guest OS 5.5 (Release 201703-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-5.6_201704-01\",\r\n \"label\": \"Windows Azure Guest OS 5.6 (Release 201704-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"4\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSFamilies/4\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSFamilies\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"name\": \"4\",\r\n \"label\": \"Windows Server 2012 R2\",\r\n \"versions\": [\r\n {\r\n \"version\": \"WA-GUEST-OS-4.0_201309-03\",\r\n \"label\": \"Windows Azure Guest OS 4.0 (Release 201309-03)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.10_201407-01\",\r\n \"label\": \"Windows Azure Guest OS 4.10 (Release 201407-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.11_201408-01\",\r\n \"label\": \"Windows Azure Guest OS 4.11 (Release 201408-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.11_201408-02\",\r\n \"label\": \"Windows Azure Guest OS 4.11 (Release 201408-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.12_201400-01\",\r\n \"label\": \"Windows Azure Guest OS 4.12 (Release 201409-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.12_201409-02\",\r\n \"label\": \"Windows Azure Guest OS 4.12 (Release 201409-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.13_201410-01\",\r\n \"label\": \"Windows Azure Guest OS 4.13 (Release 201410-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.14_201411-01\",\r\n \"label\": \"Windows Azure Guest OS 4.14 (Release 201411-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.15_201412-01\",\r\n \"label\": \"Windows Azure Guest OS 4.15 (Release 201412-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.16_201501-01\",\r\n \"label\": \"Windows Azure Guest OS 4.16 (Release 201501-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.17_201502-01\",\r\n \"label\": \"Windows Azure Guest OS 4.17 (Release 201502-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.18_201503-01\",\r\n \"label\": \"Windows Azure Guest OS 4.18 (Release 201503-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.19_201504-01\",\r\n \"label\": \"Windows Azure Guest OS 4.19 (Release 201504-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.1_201310-01\",\r\n \"label\": \"Windows Azure Guest OS 4.1 (Release 201310-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.20_201505-01\",\r\n \"label\": \"Windows Azure Guest OS 4.20 (Release 201505-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.20_201505-02\",\r\n \"label\": \"Windows Azure Guest OS 4.20 (Release 201505-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.21_201506-01\",\r\n \"label\": \"Windows Azure Guest OS 4.21 (Release 201506-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.22_201507-01\",\r\n \"label\": \"Windows Azure Guest OS 4.22 (Release 201507-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.22_201507-02\",\r\n \"label\": \"Windows Azure Guest OS 4.22 (Release 201507-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.23_201508-01\",\r\n \"label\": \"Windows Azure Guest OS 4.23 (Release 201508-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.23_201508-02\",\r\n \"label\": \"Windows Azure Guest OS 4.23 (Release 201508-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.24_201509-01\",\r\n \"label\": \"Windows Azure Guest OS 4.24 (Release 201509-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.25_201510-01\",\r\n \"label\": \"Windows Azure Guest OS 4.25 (Release 201510-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.26_201511-01\",\r\n \"label\": \"Windows Azure Guest OS 4.26 (Release 201511-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.26_201511-02\",\r\n \"label\": \"Windows Azure Guest OS 4.26 (Release 201511-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.27_201512-01\",\r\n \"label\": \"Windows Azure Guest OS 4.27 (Release 201512-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.27_201512-02\",\r\n \"label\": \"Windows Azure Guest OS 4.27 (Release 201512-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.28_201601-01\",\r\n \"label\": \"Windows Azure Guest OS 4.28 (Release 201601-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.29_201602-01\",\r\n \"label\": \"Windows Azure Guest OS 4.29 (Release 201602-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.29_201602-02\",\r\n \"label\": \"Windows Azure Guest OS 4.29 (Release 201602-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.2_201311-01\",\r\n \"label\": \"Windows Azure Guest OS 4.2 (Release 201311-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.30_201603-01\",\r\n \"label\": \"Windows Azure Guest OS 4.30 (Release 201603-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.31_201604-01\",\r\n \"label\": \"Windows Azure Guest OS 4.31 (Release 201604-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.32_201605-01\",\r\n \"label\": \"Windows Azure Guest OS 4.32 (Release 201605-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.33_201606-01\",\r\n \"label\": \"Windows Azure Guest OS 4.33 (Release 201606-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.34_201607-01\",\r\n \"label\": \"Windows Azure Guest OS 4.34 (Release 201607-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.35_201608-01\",\r\n \"label\": \"Windows Azure Guest OS 4.35 (Release 201608-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.36_201609-01\",\r\n \"label\": \"Windows Azure Guest OS 4.36 (Release 201609-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.37_201610-01\",\r\n \"label\": \"Windows Azure Guest OS 4.37 (Release 201610-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.37_201610-02\",\r\n \"label\": \"Windows Azure Guest OS 4.37 (Release 201610-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.38_201611-01\",\r\n \"label\": \"Windows Azure Guest OS 4.38 (Release 201611-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.39_201612-01\",\r\n \"label\": \"Windows Azure Guest OS 4.39 (Release 201612-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.3_201312-01\",\r\n \"label\": \"Windows Azure Guest OS 4.3 (Release 201312-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.40_201703-01\",\r\n \"label\": \"Windows Azure Guest OS 4.40 (Release 201703-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.41_201704-01\",\r\n \"label\": \"Windows Azure Guest OS 4.41 (Release 201704-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.45_201708-01\",\r\n \"label\": \"Windows Azure Guest OS 4.45 (Release 201708-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.46_201709-01\",\r\n \"label\": \"Windows Azure Guest OS 4.46 (Release 201709-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.47_201710-01\",\r\n \"label\": \"Windows Azure Guest OS 4.47 (Release 201710-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.47_201710-02\",\r\n \"label\": \"Windows Azure Guest OS 4.47 (Release 201710-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.48_201711-01\",\r\n \"label\": \"Windows Azure Guest OS 4.48 (Release 201711-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.49_201712-01\",\r\n \"label\": \"Windows Azure Guest OS 4.49 (Release 201712-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.4_201401-01\",\r\n \"label\": \"Windows Azure Guest OS 4.4 (Release 201401-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.50_201801-01\",\r\n \"label\": \"WindowsAzureGuestOS4.50(Release201801-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.51_201802-01\",\r\n \"label\": \"WindowsAzureGuestOS4.51 (Release 201802-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.52_201803-01\",\r\n \"label\": \"WindowsAzureGuestOS4.52 (Release 201803-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.53_201804-01\",\r\n \"label\": \"WindowsAzureGuestOS4.53 (Release 201804-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.54_201805-01\",\r\n \"label\": \"Windows Azure Guest OS 4.54 (Release 201805-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.55_201806-01\",\r\n \"label\": \"Windows Azure Guest OS 4.55 (Release 201806-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.56_201807-01\",\r\n \"label\": \"Windows Azure Guest OS 4.56 (Release 201807-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.56_201807-02\",\r\n \"label\": \"Windows Azure Guest OS 4.56 (Release 201807-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.57_201808-01\",\r\n \"label\": \"Windows Azure Guest OS 4.57 (Release 201808-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.58_201809-01\",\r\n \"label\": \"Windows Azure Guest OS 4.58 (Release 201809-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.59_201810-01\",\r\n \"label\": \"Windows Azure Guest OS 4.59 (Release 201810-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.5_201402-01\",\r\n \"label\": \"Windows Azure Guest OS 4.5 (Release 201402-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.60_201811-01\",\r\n \"label\": \"Windows Azure Guest OS 4.60 (Release 201811-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.61_201812-01\",\r\n \"label\": \"Windows Azure Guest OS 4.61 (Release 201812-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.62_201901-01\",\r\n \"label\": \"Windows Azure Guest OS 4.62 (Release 201901-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.63_201902-01\",\r\n \"label\": \"Windows Azure Guest OS 4.63 (Release 201902-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.64_201903-01\",\r\n \"label\": \"Windows Azure Guest OS 4.64 (Release 201903-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.65_201904-01\",\r\n \"label\": \"Windows Azure Guest OS 4.65 (Release 201904-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.66_201905-01\",\r\n \"label\": \"Windows Azure Guest OS 4.66 (Release 201905-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.67_201906-01\",\r\n \"label\": \"Windows Azure Guest OS 4.67 (Release 201906-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.68_201907-01\",\r\n \"label\": \"Windows Azure Guest OS 4.68 (Release 201907-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.69_201908-01\",\r\n \"label\": \"Windows Azure Guest OS 4.69 (Release 201908-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.6_201403-01\",\r\n \"label\": \"Windows Azure Guest OS 4.6 (Release 201403-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.70_201909-01\",\r\n \"label\": \"Windows Azure Guest OS 4.70 (Release 201909-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.71_201910-01\",\r\n \"label\": \"Windows Azure Guest OS 4.71 (Release 201910-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.72_201911-01\",\r\n \"label\": \"Windows Azure Guest OS 4.72 (Release 201911-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.73_201912-01\",\r\n \"label\": \"Windows Azure Guest OS 4.73 (Release 201912-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.74_202001-01\",\r\n \"label\": \"Windows Azure Guest OS 4.74 (Release 202001-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.75_202002-01\",\r\n \"label\": \"Windows Azure Guest OS 4.75 (Release 202002-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.76_202003-01\",\r\n \"label\": \"Windows Azure Guest OS 4.76 (Release 202003-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.77_202004-01\",\r\n \"label\": \"Windows Azure Guest OS 4.77 (Release 202004-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.78_202005-01\",\r\n \"label\": \"Windows Azure Guest OS 4.78 (Release 202005-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.78_202005-02\",\r\n \"label\": \"Windows Azure Guest OS 4.78 (Release 202005-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.79_202006-02\",\r\n \"label\": \"Windows Azure Guest OS 4.79 (Release 202006-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.7_201404-01\",\r\n \"label\": \"Windows Azure Guest OS 4.7 (Release 201404-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.80_202007-01\",\r\n \"label\": \"Windows Azure Guest OS 4.80 (Release 202007-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.81_202008-01\",\r\n \"label\": \"Windows Azure Guest OS 4.81 (Release 202008-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.81_202008-02\",\r\n \"label\": \"Windows Azure Guest OS 4.81 (Release 202008-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": true\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.82_202009-01\",\r\n \"label\": \"Windows Azure Guest OS 4.82 (Release 202009-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": true\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.83_202010-01\",\r\n \"label\": \"Windows Azure Guest OS 4.83 (Release 202010-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.83_202010-02\",\r\n \"label\": \"Windows Azure Guest OS 4.83 (Release 202010-02)\",\r\n \"isDefault\": true,\r\n \"isActive\": true\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.84_202011-01\",\r\n \"label\": \"Windows Azure Guest OS 4.84 (Release 202011-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.8_201405-01\",\r\n \"label\": \"Windows Azure Guest OS 4.8 (Release 201405-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-4.9_201406-01\",\r\n \"label\": \"Windows Azure Guest OS 4.9 (Release 201406-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"6\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSFamilies/6\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSFamilies\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"name\": \"6\",\r\n \"label\": \"Windows Server 2019\",\r\n \"versions\": [\r\n {\r\n \"version\": \"WA-GUEST-OS-6.0_201810-00\",\r\n \"label\": \"Windows Azure Guest OS 6.0 (Release 201810-00)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-6.0_201810-01\",\r\n \"label\": \"Windows Azure Guest OS 6.0 (Release 201810-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-6.10_201908-01\",\r\n \"label\": \"Windows Azure Guest OS 6.10 (Release 201908-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-6.11_201909-01\",\r\n \"label\": \"Windows Azure Guest OS 6.11 (Release 201909-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-6.12_201910-01\",\r\n \"label\": \"Windows Azure Guest OS 6.12 (Release 201910-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-6.13_201911-01\",\r\n \"label\": \"Windows Azure Guest OS 6.13 (Release 201911-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-6.14_201912-01\",\r\n \"label\": \"Windows Azure Guest OS 6.14 (Release 201912-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-6.15_202001-01\",\r\n \"label\": \"Windows Azure Guest OS 6.15 (Release 202001-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-6.16_202002-01\",\r\n \"label\": \"Windows Azure Guest OS 6.16 (Release 202002-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-6.17_202003-01\",\r\n \"label\": \"Windows Azure Guest OS 6.17 (Release 202003-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-6.18_202004-01\",\r\n \"label\": \"Windows Azure Guest OS 6.18 (Release 202004-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-6.19_202005-01\",\r\n \"label\": \"Windows Azure Guest OS 6.19 (Release 202005-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-6.19_202005-02\",\r\n \"label\": \"Windows Azure Guest OS 6.19 (Release 202005-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-6.1_201811-01\",\r\n \"label\": \"Windows Azure Guest OS 6.1 (Release 201811-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-6.20_202006-02\",\r\n \"label\": \"Windows Azure Guest OS 6.20 (Release 202006-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-6.21_202007-01\",\r\n \"label\": \"Windows Azure Guest OS 6.21 (Release 202007-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-6.22_202008-01\",\r\n \"label\": \"Windows Azure Guest OS 6.22 (Release 202008-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-6.22_202008-02\",\r\n \"label\": \"Windows Azure Guest OS 6.22 (Release 202008-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": true\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-6.23_202009-01\",\r\n \"label\": \"Windows Azure Guest OS 6.23 (Release 202009-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": true\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-6.24_202010-01\",\r\n \"label\": \"Windows Azure Guest OS 6.24 (Release 202010-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-6.24_202010-02\",\r\n \"label\": \"Windows Azure Guest OS 6.24 (Release 202010-02)\",\r\n \"isDefault\": true,\r\n \"isActive\": true\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-6.25_202011-01\",\r\n \"label\": \"Windows Azure Guest OS 6.25 (Release 202011-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-6.2_201812-01\",\r\n \"label\": \"Windows Azure Guest OS 6.2 (Release 201812-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-6.3_201901-01\",\r\n \"label\": \"Windows Azure Guest OS 6.3 (Release 201901-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-6.4_201902-01\",\r\n \"label\": \"Windows Azure Guest OS 6.4 (Release 201902-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-6.5_201903-01\",\r\n \"label\": \"Windows Azure Guest OS 6.5 (Release 201903-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-6.6_201904-01\",\r\n \"label\": \"Windows Azure Guest OS 6.6 (Release 201904-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-6.7_201905-01\",\r\n \"label\": \"Windows Azure Guest OS 6.7 (Release 201905-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-6.8_201906-01\",\r\n \"label\": \"Windows Azure Guest OS 6.8 (Release 201906-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-6.9_201907-01\",\r\n \"label\": \"Windows Azure Guest OS 6.9 (Release 201907-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"3\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSFamilies/3\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSFamilies\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"name\": \"3\",\r\n \"label\": \"Windows Server 2012\",\r\n \"versions\": [\r\n {\r\n \"version\": \"WA-GUEST-OS-3.0_201208-02\",\r\n \"label\": \"Windows Azure Guest OS 3.0 (Release 201208-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.10_201312-01\",\r\n \"label\": \"Windows Azure Guest OS 3.10 (Release 201312-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.11_201401-01\",\r\n \"label\": \"Windows Azure Guest OS 3.11 (Release 201401-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.12_201402-01\",\r\n \"label\": \"Windows Azure Guest OS 3.12 (Release 201402-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.13_201403-01\",\r\n \"label\": \"Windows Azure Guest OS 3.13 (Release 201403-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.14_201404-01\",\r\n \"label\": \"Windows Azure Guest OS 3.14 (Release 201404-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.15_201405-01\",\r\n \"label\": \"Windows Azure Guest OS 3.15 (Release 201405-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.16_201406-01\",\r\n \"label\": \"Windows Azure Guest OS 3.16 (Release 201406-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.17_201407-01\",\r\n \"label\": \"Windows Azure Guest OS 3.17 (Release 201407-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.18_201408-01\",\r\n \"label\": \"Windows Azure Guest OS 3.18 (Release 201408-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.18_201408-02\",\r\n \"label\": \"Windows Azure Guest OS 3.18 (Release 201408-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.19_201409-01\",\r\n \"label\": \"Windows Azure Guest OS 3.19 (Release 201409-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.19_201409-02\",\r\n \"label\": \"Windows Azure Guest OS 3.19 (Release 201409-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.1_201210-01\",\r\n \"label\": \"Windows Azure Guest OS 3.1 (Release 201210-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.20_201410-01\",\r\n \"label\": \"Windows Azure Guest OS 3.20 (Release 201410-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.21_201411-01\",\r\n \"label\": \"Windows Azure Guest OS 3.21 (Release 201411-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.22_201412-01\",\r\n \"label\": \"Windows Azure Guest OS 3.22 (Release 201412-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.23_201501-01\",\r\n \"label\": \"Windows Azure Guest OS 3.23 (Release 201501-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.24_201502-01\",\r\n \"label\": \"Windows Azure Guest OS 3.24 (Release 201502-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.25_201503-01\",\r\n \"label\": \"Windows Azure Guest OS 3.25 (Release 201503-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.26_201504-01\",\r\n \"label\": \"Windows Azure Guest OS 3.26 (Release 201504-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.27_201505-01\",\r\n \"label\": \"Windows Azure Guest OS 3.27 (Release 201505-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.27_201505-02\",\r\n \"label\": \"Windows Azure Guest OS 3.27 (Release 201505-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.28_201506-01\",\r\n \"label\": \"Windows Azure Guest OS 3.28 (Release 201506-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.29_201507-01\",\r\n \"label\": \"Windows Azure Guest OS 3.29 (Release 201507-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.29_201507-02\",\r\n \"label\": \"Windows Azure Guest OS 3.29 (Release 201507-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.2_201301-02\",\r\n \"label\": \"Windows Azure Guest OS 3.2 (Release 201301-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.2_201301-03\",\r\n \"label\": \"Windows Azure Guest OS 3.2 (Release 201301-03)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.2_201302-01\",\r\n \"label\": \"Windows Azure Guest OS 3.2 (Release 201302-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.2_201302-02\",\r\n \"label\": \"Windows Azure Guest OS 3.2 (Release 201302-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.2_201302-03\",\r\n \"label\": \"Windows Azure Guest OS 3.2 (Release 201302-03)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.2_201302-04\",\r\n \"label\": \"Windows Azure Guest OS 3.2 (Release 201302-04)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.30_201508-01\",\r\n \"label\": \"Windows Azure Guest OS 3.30 (Release 201508-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.30_201508-02\",\r\n \"label\": \"Windows Azure Guest OS 3.30 (Release 201508-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.31_201509-01\",\r\n \"label\": \"Windows Azure Guest OS 3.31 (Release 201509-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.32_201510-01\",\r\n \"label\": \"Windows Azure Guest OS 3.32 (Release 201510-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.33_201511-01\",\r\n \"label\": \"Windows Azure Guest OS 3.33 (Release 201511-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.33_201511-02\",\r\n \"label\": \"Windows Azure Guest OS 3.33 (Release 201511-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.34_201512-01\",\r\n \"label\": \"Windows Azure Guest OS 3.34 (Release 201512-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.34_201512-02\",\r\n \"label\": \"Windows Azure Guest OS 3.34 (Release 201512-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.35_201601-01\",\r\n \"label\": \"Windows Azure Guest OS 3.35 (Release 201601-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.36_201602-01\",\r\n \"label\": \"Windows Azure Guest OS 3.36 (Release 201602-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.36_201602-02\",\r\n \"label\": \"Windows Azure Guest OS 3.36 (Release 201602-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.37_201603-01\",\r\n \"label\": \"Windows Azure Guest OS 3.37 (Release 201603-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.38_201604-01\",\r\n \"label\": \"Windows Azure Guest OS 3.38 (Release 201604-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.39_201605-01\",\r\n \"label\": \"Windows Azure Guest OS 3.39 (Release 201605-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.3_201305-01\",\r\n \"label\": \"Windows Azure Guest OS 3.3 (Release 201305-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.40_201606-01\",\r\n \"label\": \"Windows Azure Guest OS 3.40 (Release 201606-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.41_201607-01\",\r\n \"label\": \"Windows Azure Guest OS 3.41 (Release 201607-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.42_201608-01\",\r\n \"label\": \"Windows Azure Guest OS 3.42 (Release 201608-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.43_201609-01\",\r\n \"label\": \"Windows Azure Guest OS 3.43 (Release 201609-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.44_201610-01\",\r\n \"label\": \"Windows Azure Guest OS 3.44 (Release 201610-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.44_201610-02\",\r\n \"label\": \"Windows Azure Guest OS 3.44 (Release 201610-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.45_201611-01\",\r\n \"label\": \"Windows Azure Guest OS 3.45 (Release 201611-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.46_201612-01\",\r\n \"label\": \"Windows Azure Guest OS 3.46 (Release 201612-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.47_201703-01\",\r\n \"label\": \"Windows Azure Guest OS 3.47 (Release 201703-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.48_201704-01\",\r\n \"label\": \"Windows Azure Guest OS 3.48 (Release 201704-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.4_201306-01\",\r\n \"label\": \"Windows Azure Guest OS 3.4 (Release 201306-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.52_201708-01\",\r\n \"label\": \"Windows Azure Guest OS 3.52 (Release 201708-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.53_201709-01\",\r\n \"label\": \"Windows Azure Guest OS 3.53 (Release 201709-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.54_201710-01\",\r\n \"label\": \"Windows Azure Guest OS 3.54 (Release 201710-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.54_201710-02\",\r\n \"label\": \"Windows Azure Guest OS 3.54 (Release 201710-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.55_201711-01\",\r\n \"label\": \"Windows Azure Guest OS 3.55 (Release 201711-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.56_201712-01\",\r\n \"label\": \"Windows Azure Guest OS 3.56 (Release 201712-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.57_201801-01\",\r\n \"label\": \"Windows Azure Guest OS 3.57 (Release 201801-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.58_201802-01\",\r\n \"label\": \"Windows Azure Guest OS 3.58 (Release 201802-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.58_201802-02\",\r\n \"label\": \"Windows Azure Guest OS 3.58 (Release 201802-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.59_201803-01\",\r\n \"label\": \"Windows Azure Guest OS 3.59 (Release 201803-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.5_201307-01\",\r\n \"label\": \"Windows Azure Guest OS 3.5 (Release 201307-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.60_201804-01\",\r\n \"label\": \"Windows Azure Guest OS 3.60 (Release 201804-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.61_201805-01\",\r\n \"label\": \"Windows Azure Guest OS 3.61 (Release 201805-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.62_201806-01\",\r\n \"label\": \"Windows Azure Guest OS 3.62 (Release 201806-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.63_201807-01\",\r\n \"label\": \"Windows Azure Guest OS 3.63 (Release 201807-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.63_201807-02\",\r\n \"label\": \"Windows Azure Guest OS 3.63 (Release 201807-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.64_201808-01\",\r\n \"label\": \"Windows Azure Guest OS 3.64 (Release 201808-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.65_201809-01\",\r\n \"label\": \"Windows Azure Guest OS 3.65 (Release 201809-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.66_201810-01\",\r\n \"label\": \"Windows Azure Guest OS 3.66 (Release 201810-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.67_201811-01\",\r\n \"label\": \"Windows Azure Guest OS 3.67 (Release 201811-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.68_201812-01\",\r\n \"label\": \"Windows Azure Guest OS 3.68 (Release 201812-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.69_201901-01\",\r\n \"label\": \"Windows Azure Guest OS 3.69 (Release 201901-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.6_201308-01\",\r\n \"label\": \"Windows Azure Guest OS 3.6 (Release 201308-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.70_201902-01\",\r\n \"label\": \"Windows Azure Guest OS 3.70 (Release 201902-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.71_201903-01\",\r\n \"label\": \"Windows Azure Guest OS 3.71 (Release 201903-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.72_201904-01\",\r\n \"label\": \"Windows Azure Guest OS 3.72 (Release 201904-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.73_201905-01\",\r\n \"label\": \"Windows Azure Guest OS 3.73 (Release 201905-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.74_201906-01\",\r\n \"label\": \"Windows Azure Guest OS 3.74 (Release 201906-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.75_201907-01\",\r\n \"label\": \"Windows Azure Guest OS 3.75 (Release 201907-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.76_201908-01\",\r\n \"label\": \"Windows Azure Guest OS 3.76 (Release 201908-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.77_201909-01\",\r\n \"label\": \"Windows Azure Guest OS 3.77 (Release 201909-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.78_201910-01\",\r\n \"label\": \"Windows Azure Guest OS 3.78 (Release 201910-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.79_201911-01\",\r\n \"label\": \"Windows Azure Guest OS 3.79 (Release 201911-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.7_201309-01\",\r\n \"label\": \"Windows Azure Guest OS 3.7 (Release 201309-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.7_201309-03\",\r\n \"label\": \"Windows Azure Guest OS 3.7 (Release 201309-03)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.80_201912-01\",\r\n \"label\": \"Windows Azure Guest OS 3.80 (Release 201912-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.81_202001-01\",\r\n \"label\": \"Windows Azure Guest OS 3.81 (Release 202001-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.82_202002-01\",\r\n \"label\": \"Windows Azure Guest OS 3.82 (Release 202002-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.83_202003-01\",\r\n \"label\": \"Windows Azure Guest OS 3.83 (Release 202003-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.84_202004-01\",\r\n \"label\": \"Windows Azure Guest OS 3.84 (Release 202004-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.85_202005-01\",\r\n \"label\": \"Windows Azure Guest OS 3.85 (Release 202005-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.85_202005-02\",\r\n \"label\": \"Windows Azure Guest OS 3.85 (Release 202005-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.86_202006-02\",\r\n \"label\": \"Windows Azure Guest OS 3.86 (Release 202006-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.87_202007-01\",\r\n \"label\": \"Windows Azure Guest OS 3.87 (Release 202007-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.88_202008-01\",\r\n \"label\": \"Windows Azure Guest OS 3.88 (Release 202008-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.88_202008-02\",\r\n \"label\": \"Windows Azure Guest OS 3.88 (Release 202008-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": true\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.89_202009-01\",\r\n \"label\": \"Windows Azure Guest OS 3.89 (Release 202009-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": true\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.8_201310-01\",\r\n \"label\": \"Windows Azure Guest OS 3.8 (Release 201310-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.90_202010-01\",\r\n \"label\": \"Windows Azure Guest OS 3.90 (Release 202010-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.90_202010-02\",\r\n \"label\": \"Windows Azure Guest OS 3.90 (Release 202010-02)\",\r\n \"isDefault\": true,\r\n \"isActive\": true\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.91_202011-01\",\r\n \"label\": \"Windows Azure Guest OS 3.91 (Release 202011-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-3.9_201311-01\",\r\n \"label\": \"Windows Azure Guest OS 3.9 (Release 201311-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"2\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSFamilies/2\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSFamilies\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"name\": \"2\",\r\n \"label\": \"Windows Server 2008 R2\",\r\n \"versions\": [\r\n {\r\n \"version\": \"WA-GUEST-OS-2.0_201010-01\",\r\n \"label\": \"Windows Azure Guest OS 2.0 (Release 201010-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.100_202007-01\",\r\n \"label\": \"Windows Azure Guest OS 2.100 (Release 202007-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": true\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.101_202008-01\",\r\n \"label\": \"Windows Azure Guest OS 2.101 (Release 202008-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.101_202008-02\",\r\n \"label\": \"Windows Azure Guest OS 2.101 (Release 202008-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": true\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.102_202009-01\",\r\n \"label\": \"Windows Azure Guest OS 2.102 (Release 202009-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": true\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.103_202010-01\",\r\n \"label\": \"Windows Azure Guest OS 2.103 (Release 202010-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.103_202010-02\",\r\n \"label\": \"Windows Azure Guest OS 2.103 (Release 202010-02)\",\r\n \"isDefault\": true,\r\n \"isActive\": true\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.104_202011-01\",\r\n \"label\": \"Windows Azure Guest OS 2.104 (Release 202011-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.10_201202-01\",\r\n \"label\": \"Windows Azure Guest OS 2.10 (Release 201202-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.11_201204-01\",\r\n \"label\": \"Windows Azure Guest OS 2.11 (Release 201204-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.11_201204-02\",\r\n \"label\": \"Windows Azure Guest OS 2.11 (Release 201204-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.12_201208-01\",\r\n \"label\": \"Windows Azure Guest OS 2.12 (Release 201208-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.12_201208-02\",\r\n \"label\": \"Windows Azure Guest OS 2.12 (Release 201208-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.13_201210-01\",\r\n \"label\": \"Windows Azure Guest OS 2.13 (Release 201210-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.14_201301-02\",\r\n \"label\": \"Windows Azure Guest OS 2.14 (Release 201301-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.14_201301-03\",\r\n \"label\": \"Windows Azure Guest OS 2.14 (Release 201301-03)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.14_201302-01\",\r\n \"label\": \"Windows Azure Guest OS 2.14 (Release 201302-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.14_201302-02\",\r\n \"label\": \"Windows Azure Guest OS 2.14 (Release 201302-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.14_201302-03\",\r\n \"label\": \"Windows Azure Guest OS 2.14 (Release 201302-03)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.14_201302-04\",\r\n \"label\": \"Windows Azure Guest OS 2.14 (Release 201302-04)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.15_201305-01\",\r\n \"label\": \"Windows Azure Guest OS 2.15 (Release 201305-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.16_201306-01\",\r\n \"label\": \"Windows Azure Guest OS 2.16 (Release 201306-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.17_201307-01\",\r\n \"label\": \"Windows Azure Guest OS 2.17 (Release 201307-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.18_201308-01\",\r\n \"label\": \"Windows Azure Guest OS 2.18 (Release 201308-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.19_201309-01\",\r\n \"label\": \"Windows Azure Guest OS 2.19 (Release 201309-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.19_201309-03\",\r\n \"label\": \"Windows Azure Guest OS 2.19 (Release 201309-03)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.1_201011-01\",\r\n \"label\": \"Windows Azure Guest OS 2.1 (Release 201011-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.20_201310-01\",\r\n \"label\": \"Windows Azure Guest OS 2.20 (Release 201310-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.21_201311-01\",\r\n \"label\": \"Windows Azure Guest OS 2.21 (Release 201311-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.22_201312-01\",\r\n \"label\": \"Windows Azure Guest OS 2.22 (Release 201312-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.23_201401-01\",\r\n \"label\": \"Windows Azure Guest OS 2.23 (Release 201401-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.24_201402-01\",\r\n \"label\": \"Windows Azure Guest OS 2.24 (Release 201402-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.25_201403-01\",\r\n \"label\": \"Windows Azure Guest OS 2.25 (Release 201403-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.26_201404-01\",\r\n \"label\": \"Windows Azure Guest OS 2.26 (Release 201404-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.27_201405-01\",\r\n \"label\": \"Windows Azure Guest OS 2.27 (Release 201405-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.28_201406-01\",\r\n \"label\": \"Windows Azure Guest OS 2.28 (Release 201406-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.29_201407-01\",\r\n \"label\": \"Windows Azure Guest OS 2.29 (Release 201407-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.2_201101-01\",\r\n \"label\": \"Windows Azure Guest OS 2.2 (Release 201101-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.30_201408-01\",\r\n \"label\": \"Windows Azure Guest OS 2.30 (Release 201408-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.30_201408-02\",\r\n \"label\": \"Windows Azure Guest OS 2.30 (Release 201408-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.31_201409-01\",\r\n \"label\": \"Windows Azure Guest OS 2.31 (Release 201409-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.31_201409-02\",\r\n \"label\": \"Windows Azure Guest OS 2.31 (Release 201409-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.32_201410-01\",\r\n \"label\": \"Windows Azure Guest OS 2.32 (Release 201410-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.33_201411-01\",\r\n \"label\": \"Windows Azure Guest OS 2.33 (Release 201411-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.34_201412-01\",\r\n \"label\": \"Windows Azure Guest OS 2.34 (Release 201412-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.35_201501-01\",\r\n \"label\": \"Windows Azure Guest OS 2.35 (Release 201501-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.36_201502-01\",\r\n \"label\": \"Windows Azure Guest OS 2.36 (Release 201502-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.37_201503-01\",\r\n \"label\": \"Windows Azure Guest OS 2.37 (Release 201503-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.38_201504-01\",\r\n \"label\": \"Windows Azure Guest OS 2.38 (Release 201504-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.39_201505-01\",\r\n \"label\": \"Windows Azure Guest OS 2.39 (Release 201505-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.39_201505-02\",\r\n \"label\": \"Windows Azure Guest OS 2.39 (Release 201505-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.3_201102-01\",\r\n \"label\": \"Windows Azure Guest OS 2.3 (Release 201102-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.40_201506-01\",\r\n \"label\": \"Windows Azure Guest OS 2.40 (Release 201506-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.41_201507-01\",\r\n \"label\": \"Windows Azure Guest OS 2.41 (Release 201507-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.41_201507-02\",\r\n \"label\": \"Windows Azure Guest OS 2.41 (Release 201507-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.42_201508-01\",\r\n \"label\": \"Windows Azure Guest OS 2.42 (Release 201508-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.42_201508-02\",\r\n \"label\": \"Windows Azure Guest OS 2.42 (Release 201508-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.43_201509-01\",\r\n \"label\": \"Windows Azure Guest OS 2.43 (Release 201509-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.44_201510-01\",\r\n \"label\": \"Windows Azure Guest OS 2.44 (Release 201510-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.45_201511-01\",\r\n \"label\": \"Windows Azure Guest OS 2.45 (Release 201511-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.45_201511-02\",\r\n \"label\": \"Windows Azure Guest OS 2.45 (Release 201511-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.46_201512-01\",\r\n \"label\": \"Windows Azure Guest OS 2.46 (Release 201512-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.46_201512-02\",\r\n \"label\": \"Windows Azure Guest OS 2.46 (Release 201512-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.47_201601-01\",\r\n \"label\": \"Windows Azure Guest OS 2.47 (Release 201601-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.48_201602-01\",\r\n \"label\": \"Windows Azure Guest OS 2.48 (Release 201602-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.48_201602-02\",\r\n \"label\": \"Windows Azure Guest OS 2.48 (Release 201602-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.49_201603-01\",\r\n \"label\": \"Windows Azure Guest OS 2.49 (Release 201603-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.4_201103-01\",\r\n \"label\": \"Windows Azure Guest OS 2.4 (Release 201103-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.50_201604-01\",\r\n \"label\": \"Windows Azure Guest OS 2.50 (Release 201604-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.51_201605-01\",\r\n \"label\": \"Windows Azure Guest OS 2.51 (Release 201605-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.52_201606-01\",\r\n \"label\": \"Windows Azure Guest OS 2.52 (Release 201606-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.53_201607-01\",\r\n \"label\": \"Windows Azure Guest OS 2.53 (Release 201607-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.54_201608-01\",\r\n \"label\": \"Windows Azure Guest OS 2.54 (Release 201608-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.55_201609-01\",\r\n \"label\": \"Windows Azure Guest OS 2.55 (Release 201609-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.56_201610-01\",\r\n \"label\": \"Windows Azure Guest OS 2.56 (Release 201610-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.56_201610-02\",\r\n \"label\": \"Windows Azure Guest OS 2.56 (Release 201610-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.57_201611-01\",\r\n \"label\": \"Windows Azure Guest OS 2.57 (Release 201611-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.58_201612-01\",\r\n \"label\": \"Windows Azure Guest OS 2.58 (Release 201612-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.59_201701-01\",\r\n \"label\": \"Windows Azure Guest OS 2.59 (Release 201701-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.5_201104-01\",\r\n \"label\": \"Windows Azure Guest OS 2.5 (Release 201104-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.60_201703-01\",\r\n \"label\": \"Windows Azure Guest OS 2.60 (Release 201703-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.61_201704-01\",\r\n \"label\": \"Windows Azure Guest OS 2.61 (Release 201704-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.65_201708-01\",\r\n \"label\": \"Windows Azure Guest OS 2.65 (Release 201708-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.66_201709-01\",\r\n \"label\": \"Windows Azure Guest OS 2.66 (Release 201709-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.67_201710-01\",\r\n \"label\": \"Windows Azure Guest OS 2.67 (Release 201710-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.67_201710-02\",\r\n \"label\": \"Windows Azure Guest OS 2.67 (Release 201710-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.68_201711-01\",\r\n \"label\": \"Windows Azure Guest OS 2.68 (Release 201711-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.69_201712-01\",\r\n \"label\": \"Windows Azure Guest OS 2.69 (Release 201712-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.6_201105-01\",\r\n \"label\": \"Windows Azure Guest OS 2.6 (Release 201105-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.70_201801-01\",\r\n \"label\": \"Windows Azure Guest OS 2.70 (Release 201801-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.71_201802-01\",\r\n \"label\": \"Windows Azure Guest OS 2.71 (Release 201802-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.72_201803-01\",\r\n \"label\": \"Windows Azure Guest OS 2.72 (Release 201803-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.73_201804-01\",\r\n \"label\": \"Windows Azure Guest OS 2.73 (Release 201804-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.74_201805-01\",\r\n \"label\": \"Windows Azure Guest OS 2.74 (Release 201805-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.75_201806-01\",\r\n \"label\": \"Windows Azure Guest OS 2.75 (Release 201806-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.76_201807-01\",\r\n \"label\": \"Windows Azure Guest OS 2.76 (Release 201807-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.76_201807-02\",\r\n \"label\": \"Windows Azure Guest OS 2.76 (Release 201807-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.77_201808-01\",\r\n \"label\": \"Windows Azure Guest OS 2.77 (Release 201808-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.78_201809-01\",\r\n \"label\": \"Windows Azure Guest OS 2.78 (Release 201809-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.79_201810-01\",\r\n \"label\": \"Windows Azure Guest OS 2.79 (Release 201810-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.7_201107-01\",\r\n \"label\": \"Windows Azure Guest OS 2.7 (Release 201107-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.80_201811-01\",\r\n \"label\": \"Windows Azure Guest OS 2.80 (Release 201811-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.81_201812-01\",\r\n \"label\": \"Windows Azure Guest OS 2.81 (Release 201812-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.82_201901-01\",\r\n \"label\": \"Windows Azure Guest OS 2.82 (Release 201901-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.83_201902-01\",\r\n \"label\": \"Windows Azure Guest OS 2.83 (Release 201902-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.84_201903-01\",\r\n \"label\": \"Windows Azure Guest OS 2.84 (Release 201903-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.85_201904-01\",\r\n \"label\": \"Windows Azure Guest OS 2.85 (Release 201904-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.86_201905-01\",\r\n \"label\": \"Windows Azure Guest OS 2.86 (Release 201905-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.87_201906-01\",\r\n \"label\": \"Windows Azure Guest OS 2.87 (Release 201906-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.88_201907-01\",\r\n \"label\": \"Windows Azure Guest OS 2.88 (Release 201907-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.89_201908-01\",\r\n \"label\": \"Windows Azure Guest OS 2.89 (Release 201908-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.8_201109-01\",\r\n \"label\": \"Windows Azure Guest OS 2.8 (Release 201109-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.8_201109-02\",\r\n \"label\": \"Windows Azure Guest OS 2.8 (Release 201109-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.8_201109-03\",\r\n \"label\": \"Windows Azure Guest OS 2.8 (Release 201109-03)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.90_201909-01\",\r\n \"label\": \"Windows Azure Guest OS 2.90 (Release 201909-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.91_201910-01\",\r\n \"label\": \"Windows Azure Guest OS 2.91 (Release 201910-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.92_201911-01\",\r\n \"label\": \"Windows Azure Guest OS 2.92 (Release 201911-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.93_201912-01\",\r\n \"label\": \"Windows Azure Guest OS 2.93 (Release 201912-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.94_202001-01\",\r\n \"label\": \"Windows Azure Guest OS 2.94 (Release 202001-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.95_202002-01\",\r\n \"label\": \"Windows Azure Guest OS 2.95 (Release 202002-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.96_202003-01\",\r\n \"label\": \"Windows Azure Guest OS 2.96 (Release 202003-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.97_202004-01\",\r\n \"label\": \"Windows Azure Guest OS 2.97 (Release 202004-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.98_202005-01\",\r\n \"label\": \"Windows Azure Guest OS 2.98 (Release 202005-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.98_202005-02\",\r\n \"label\": \"Windows Azure Guest OS 2.98 (Release 202005-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.99_202006-02\",\r\n \"label\": \"Windows Azure Guest OS 2.99 (Release 202006-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.9_201112-01\",\r\n \"label\": \"Windows Azure Guest OS 2.9 (Release 201112-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.9_201112-02\",\r\n \"label\": \"Windows Azure Guest OS 2.9 (Release 201112-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-2.9_201112-03\",\r\n \"label\": \"Windows Azure Guest OS 2.9 (Release 201112-03)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"97\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSFamilies/97\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSFamilies\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"name\": \"97\",\r\n \"label\": \"Windows Server 2016 Drawbridge\",\r\n \"versions\": [\r\n {\r\n \"version\": \"WA-GUEST-OS-97.10_201808-01\",\r\n \"label\": \"Windows Azure Guest OS 97.10 (Release 201808-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.11_201809-01\",\r\n \"label\": \"Windows Azure Guest OS 97.11 (Release 201809-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.12_201810-01\",\r\n \"label\": \"Windows Azure Guest OS 97.12 (Release 201810-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.13_201811-01\",\r\n \"label\": \"Windows Azure Guest OS 97.13 (Release 201811-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.14_201812-01\",\r\n \"label\": \"Windows Azure Guest OS 97.14 (Release 201812-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.15_201901-01\",\r\n \"label\": \"Windows Azure Guest OS 97.15 (Release 201901-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.16_201902-01\",\r\n \"label\": \"Windows Azure Guest OS 97.16 (Release 201902-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.17_201903-01\",\r\n \"label\": \"Windows Azure Guest OS 97.17 (Release 201903-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.18_201904-01\",\r\n \"label\": \"Windows Azure Guest OS 97.18 (Release 201904-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.19_201905-01\",\r\n \"label\": \"Windows Azure Guest OS 97.19 (Release 201905-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.1_201711-01\",\r\n \"label\": \"Windows Azure Guest OS 97.1 (Release 201711-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.20_201906-01\",\r\n \"label\": \"Windows Azure Guest OS 97.20 (Release 201906-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.21_201907-01\",\r\n \"label\": \"Windows Azure Guest OS 97.21 (Release 201907-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.22_201908-01\",\r\n \"label\": \"Windows Azure Guest OS 97.22 (Release 201908-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.23_201909-01\",\r\n \"label\": \"Windows Azure Guest OS 97.23 (Release 201909-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.24_201910-01\",\r\n \"label\": \"Windows Azure Guest OS 97.24 (Release 201910-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.25_201911-01\",\r\n \"label\": \"Windows Azure Guest OS 97.25 (Release 201911-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.26_201912-01\",\r\n \"label\": \"Windows Azure Guest OS 97.26 (Release 201912-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.27_202001-01\",\r\n \"label\": \"Windows Azure Guest OS 97.27 (Release 202001-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.28_202002-01\",\r\n \"label\": \"Windows Azure Guest OS 97.28 (Release 202002-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.29_202003-01\",\r\n \"label\": \"Windows Azure Guest OS 97.29 (Release 202003-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.2_201712-01\",\r\n \"label\": \"Windows Azure Guest OS 97.2 (Release 201712-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.30_202004-01\",\r\n \"label\": \"Windows Azure Guest OS 97.30 (Release 202004-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.31_202005-01\",\r\n \"label\": \"Windows Azure Guest OS 97.31 (Release 202005-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.31_202005-02\",\r\n \"label\": \"Windows Azure Guest OS 97.31 (Release 202005-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.32_202006-02\",\r\n \"label\": \"Windows Azure Guest OS 97.32 (Release 202006-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.33_202007-01\",\r\n \"label\": \"Windows Azure Guest OS 97.33 (Release 202007-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.34_202008-01\",\r\n \"label\": \"Windows Azure Guest OS 97.34 (Release 202008-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.34_202008-02\",\r\n \"label\": \"Windows Azure Guest OS 97.34 (Release 202008-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": true\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.35_202009-01\",\r\n \"label\": \"Windows Azure Guest OS 97.35 (Release 202009-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": true\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.36_202010-01\",\r\n \"label\": \"Windows Azure Guest OS 97.36 (Release 202010-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.36_202010-02\",\r\n \"label\": \"Windows Azure Guest OS 97.36 (Release 202010-02)\",\r\n \"isDefault\": true,\r\n \"isActive\": true\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.37_202011-01\",\r\n \"label\": \"Windows Azure Guest OS 97.37 (Release 202011-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.3_201801-01\",\r\n \"label\": \"Windows Azure Guest OS 97.3 (Release 201801-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.4_201802-01\",\r\n \"label\": \"Windows Azure Guest OS 97.4 (Release 201802-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.5_201803-01\",\r\n \"label\": \"Windows Azure Guest OS 97.5 (Release 201803-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.6_201804-01\",\r\n \"label\": \"Windows Azure Guest OS 97.6 (Release 201804-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.7_201805-01\",\r\n \"label\": \"Windows Azure Guest OS 97.7 (Release 201805-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.8_201806-01\",\r\n \"label\": \"Windows Azure Guest OS 97.8 (Release 201806-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.9_201807-01\",\r\n \"label\": \"Windows Azure Guest OS 97.9 (Release 201807-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-97.9_201807-02\",\r\n \"label\": \"Windows Azure Guest OS 97.9 (Release 201807-02)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"98\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/westus2/cloudServiceOSFamilies/98\",\r\n \"type\": \"Microsoft.Compute/locations/cloudServiceOSFamilies\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"name\": \"98\",\r\n \"label\": \"Windows Server 2012 Drawbridge\",\r\n \"versions\": [\r\n {\r\n \"version\": \"WA-GUEST-OS-98.51_201709-01\",\r\n \"label\": \"Windows Azure Guest OS 98.51 (Release 201709-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-98.52_201710-01\",\r\n \"label\": \"Windows Azure Guest OS 98.52 (Release 201710-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-98.52_201710-02\",\r\n \"label\": \"Windows Azure Guest OS 98.52 (Release 201710-02)\",\r\n \"isDefault\": true,\r\n \"isActive\": false\r\n },\r\n {\r\n \"version\": \"WA-GUEST-OS-98.53_201711-01\",\r\n \"label\": \"Windows Azure Guest OS 98.53 (Release 201711-01)\",\r\n \"isDefault\": false,\r\n \"isActive\": false\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "0296790d-427c-48ca-b204-8b729bbd8670" + } +} \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceOperationTests/Test_Create_PowerOff_Start_CloudServiceOperation.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceOperationTests/Test_Create_PowerOff_Start_CloudServiceOperation.json new file mode 100644 index 0000000000000..ae050ca6aec94 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceOperationTests/Test_Create_PowerOff_Start_CloudServiceOperation.json @@ -0,0 +1,3733 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar2716?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjI3MTY/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar2716\": \"2021-03-22 06:57:20Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "082b1564-3b0e-4506-bbb2-af02a17f6e62" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "93" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "fe9d010f-40a7-4d06-9afe-231d0d836eb9" + ], + "x-ms-correlation-request-id": [ + "fe9d010f-40a7-4d06-9afe-231d0d836eb9" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T065723Z:fe9d010f-40a7-4d06-9afe-231d0d836eb9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:57:23 GMT" + ], + "Content-Length": [ + "228" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716\",\r\n \"name\": \"crptestar2716\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar2716\": \"2021-03-22 06:57:20Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar2716?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjI3MTY/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar2716\": \"2021-03-22 06:57:41Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "906b9f6d-062d-42ba-8391-dcb0b2a319d5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "93" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "f852c3f1-e533-499d-ba1d-cd7013eb97a6" + ], + "x-ms-correlation-request-id": [ + "f852c3f1-e533-499d-ba1d-cd7013eb97a6" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T065743Z:f852c3f1-e533-499d-ba1d-cd7013eb97a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:57:42 GMT" + ], + "Content-Length": [ + "228" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716\",\r\n \"name\": \"crptestar2716\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar2716\": \"2021-03-22 06:57:41Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar2716?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjI3MTY/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27d3b256-a644-446e-95e4-edd94dfe2176" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "9039f456-951a-45fd-8805-cde20c31eca3" + ], + "x-ms-correlation-request-id": [ + "9039f456-951a-45fd-8805-cde20c31eca3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T065841Z:9039f456-951a-45fd-8805-cde20c31eca3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:58:40 GMT" + ], + "Content-Length": [ + "180" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716\",\r\n \"name\": \"crptestar2716\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Network/virtualNetworks/csvnet1671?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI3MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9jc3ZuZXQxNjcxP2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"subnet1016\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "131f1c6c-0d27-4499-b48e-43e8ecb7213c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "297" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "01bd3c82-f331-4eab-97ca-4dd399c70091" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/01bd3c82-f331-4eab-97ca-4dd399c70091?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "14d64829-1af4-4d31-bae4-4775f0d5a151" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "4d11ca53-97ce-4a2f-bb90-d086662c274a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T065730Z:14d64829-1af4-4d31-bae4-4775f0d5a151" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:57:29 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"csvnet1671\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Network/virtualNetworks/csvnet1671\",\r\n \"etag\": \"W/\\\"8c6cc403-5284-451f-806b-bd927a650d69\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ccf77409-5744-4fe5-b149-8e4b3b3328df\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1016\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Network/virtualNetworks/csvnet1671/subnets/subnet1016\",\r\n \"etag\": \"W/\\\"8c6cc403-5284-451f-806b-bd927a650d69\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/01bd3c82-f331-4eab-97ca-4dd399c70091?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzAxYmQzYzgyLWYzMzEtNGVhYi05N2NhLTRkZDM5OWM3MDA5MT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "72beae7a-eeb1-4556-a22b-9f2e59b97825" + ], + "x-ms-correlation-request-id": [ + "db4ca785-22ab-4b3d-9c0f-28747ebe060c" + ], + "x-ms-arm-service-request-id": [ + "3a91a9b9-eb3b-41a5-994f-7731de01ba2d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T065734Z:db4ca785-22ab-4b3d-9c0f-28747ebe060c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:57:33 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Network/virtualNetworks/csvnet1671?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI3MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9jc3ZuZXQxNjcxP2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"cf43220a-d4c2-4e0f-b37e-4fb7f256e584\"" + ], + "x-ms-request-id": [ + "c5a900bf-7c12-4680-87d5-7603ccca2a71" + ], + "x-ms-correlation-request-id": [ + "a2cc1f96-402c-47fa-9a35-d4efe9d90b96" + ], + "x-ms-arm-service-request-id": [ + "fe3f83f9-21e2-4eb3-9241-fd9322fc00c4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T065735Z:a2cc1f96-402c-47fa-9a35-d4efe9d90b96" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:57:34 GMT" + ], + "Content-Length": [ + "1234" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"csvnet1671\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Network/virtualNetworks/csvnet1671\",\r\n \"etag\": \"W/\\\"cf43220a-d4c2-4e0f-b37e-4fb7f256e584\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ccf77409-5744-4fe5-b149-8e4b3b3328df\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1016\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Network/virtualNetworks/csvnet1671/subnets/subnet1016\",\r\n \"etag\": \"W/\\\"cf43220a-d4c2-4e0f-b37e-4fb7f256e584\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Network/publicIPAddresses/cspip1149?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI3MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2NzcGlwMTE0OT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns7534\"\r\n }\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ac50dfe5-4f89-42d4-a267-f5c5c149255d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "163" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "41d2ff71-77ba-4c27-a5c3-ccc1e92f51b1" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/41d2ff71-77ba-4c27-a5c3-ccc1e92f51b1?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "69e1eb38-3f68-4f0b-909c-d1134c14df5e" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "08ec4fac-96d9-4b8e-b1da-8bbc1b611427" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T065739Z:69e1eb38-3f68-4f0b-909c-d1134c14df5e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:57:39 GMT" + ], + "Content-Length": [ + "724" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cspip1149\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Network/publicIPAddresses/cspip1149\",\r\n \"etag\": \"W/\\\"b5443160-dbbe-4d46-9aa1-8daf3f13a933\\\"\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"319482a3-3600-4a5b-807e-3fa3bcab366a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns7534\",\r\n \"fqdn\": \"dns7534.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/41d2ff71-77ba-4c27-a5c3-ccc1e92f51b1?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzQxZDJmZjcxLTc3YmEtNGMyNy1hNWMzLWNjYzFlOTJmNTFiMT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "132f5887-5c7e-41cf-b5fd-7bbcb43a3878" + ], + "x-ms-correlation-request-id": [ + "6b018031-354b-4552-959c-becbb2cd82e9" + ], + "x-ms-arm-service-request-id": [ + "ff37ad0e-ecd8-4162-ac05-707e20995df2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T065741Z:6b018031-354b-4552-959c-becbb2cd82e9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:57:40 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Network/publicIPAddresses/cspip1149?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI3MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2NzcGlwMTE0OT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"dd28c76e-7b05-4e63-b60d-b089ca53da75\"" + ], + "x-ms-request-id": [ + "d01dc330-11c5-4d75-aa06-7ebe2fbbe2ab" + ], + "x-ms-correlation-request-id": [ + "c4cd9664-3b57-4852-a6c4-4212f0cf3471" + ], + "x-ms-arm-service-request-id": [ + "4d3282bb-b134-4d28-9a14-9f3160d2d522" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T065741Z:c4cd9664-3b57-4852-a6c4-4212f0cf3471" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:57:40 GMT" + ], + "Content-Length": [ + "725" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cspip1149\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Network/publicIPAddresses/cspip1149\",\r\n \"etag\": \"W/\\\"dd28c76e-7b05-4e63-b60d-b089ca53da75\\\"\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"319482a3-3600-4a5b-807e-3fa3bcab366a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns7534\",\r\n \"fqdn\": \"dns7534.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Storage/storageAccounts/saforcspkg6518?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI3MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmNzcGtnNjUxOD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d32f2bd7-2d98-4a4d-ac39-eeb3dbf44082" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "89" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Storage/locations/eastus2/asyncoperations/d60646f4-2d7b-4b3d-9f2d-4831ffefc66f?monitor=true&api-version=2015-06-15" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "d60646f4-2d7b-4b3d-9f2d-4831ffefc66f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "c979481e-c958-442f-9591-76005f77c741" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T065749Z:c979481e-c958-442f-9591-76005f77c741" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:57:49 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Storage/locations/eastus2/asyncoperations/d60646f4-2d7b-4b3d-9f2d-4831ffefc66f?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvZDYwNjQ2ZjQtMmQ3Yi00YjNkLTlmMmQtNDgzMWZmZWZjNjZmP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "56bcb4c3-1b52-4588-b643-a72d35fd077c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "28965abc-6a27-4059-8eac-9e7be49fe248" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T065806Z:28965abc-6a27-4059-8eac-9e7be49fe248" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:58:06 GMT" + ], + "Content-Length": [ + "89" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI3MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "91db17bf-f4d4-4236-af1d-06829c4a00ee" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3e3ff637-1aed-431d-ae05-1afff9c897f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "a0d4445e-8b8f-4c71-9000-c21512064836" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T065816Z:a0d4445e-8b8f-4c71-9000-c21512064836" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:58:16 GMT" + ], + "Content-Length": [ + "747" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Storage/storageAccounts/saforcspkg6518\",\r\n \"name\": \"saforcspkg6518\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-03-22T06:57:48.7495995Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforcspkg6518.blob.core.windows.net/\",\r\n \"queue\": \"https://saforcspkg6518.queue.core.windows.net/\",\r\n \"table\": \"https://saforcspkg6518.table.core.windows.net/\",\r\n \"file\": \"https://saforcspkg6518.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Storage/storageAccounts/saforcspkg6518?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI3MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmNzcGtnNjUxOD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a89423e-c704-401c-b9cf-667fb4a9b1e4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7415efe0-18d5-4cdf-bee3-a73c84384450" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "020be9c6-0606-4b9f-b664-68ae32972ac3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T065817Z:020be9c6-0606-4b9f-b664-68ae32972ac3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:58:16 GMT" + ], + "Content-Length": [ + "735" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Storage/storageAccounts/saforcspkg6518\",\r\n \"name\": \"saforcspkg6518\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-03-22T06:57:48.7495995Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforcspkg6518.blob.core.windows.net/\",\r\n \"queue\": \"https://saforcspkg6518.queue.core.windows.net/\",\r\n \"table\": \"https://saforcspkg6518.table.core.windows.net/\",\r\n \"file\": \"https://saforcspkg6518.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Storage/storageAccounts/saforcspkg6518/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI3MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmNzcGtnNjUxOC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b7511413-c74f-4420-bf7b-9e917d367b17" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b1f74fe1-33e0-4df4-a289-d4a24ab772cb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "270b0aa0-9f35-4d5d-8655-eadb8646b421" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T065817Z:270b0aa0-9f35-4d5d-8655-eadb8646b421" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:58:16 GMT" + ], + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"pPHC5JKLlCWu+rMuztx2tIdMBOOUCaolA3OtdAikXqoRe0UWFMBXZ/pDaeMbSMWf6LdclZuZEW4U2wh9ZpoMFg==\",\r\n \"key2\": \"WnosfBwSHN4bo8XLkmLzsEwn/MK2vMJg3F+Uzt2SYB4PE79fmtN5FRzX6Fo6AoDbOcdnhxgMxmie3wCmYPPg8A==\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Compute/cloudServices/cs5518?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI3MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M1NTE4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"packageUrl\": \"https://saforcspkg6518.blob.core.windows.net/sascontainer/HelloWorldTest_WebRole_D2_V2.cspkg?sv=2017-04-17&sr=b&sig=o2731ZaoKOilz2YM5SUBkwsy9Wf8WAAvr9HXeVfG03k%3D&st=2021-03-21T06%3A58%3A39Z&se=2021-03-24T06%3A58%3A39Z&sp=rw\",\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HelloWorldTest1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb9408\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"lbfe5360\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Network/publicIPAddresses/cspip1149\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "02fcf50c-e8d1-4a97-9ea9-8f72e7d30a65" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2145" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/9ce6f4c9-7f67-4ec7-a77b-4f3f98c05b4e?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9ce6f4c9-7f67-4ec7-a77b-4f3f98c05b4e" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;299" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "f004a165-dd6e-4a41-8c62-878b56a6ccee" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T065848Z:f004a165-dd6e-4a41-8c62-878b56a6ccee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:58:48 GMT" + ], + "Content-Length": [ + "2017" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs5518\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR2716/providers/Microsoft.Compute/cloudServices/cs5518\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HelloWorldTest1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb9408\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe5360\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Network/publicIPAddresses/cspip1149\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"uniqueId\": \"edeaf42d-1571-4dc0-8824-f6a6d14090bb\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/9ce6f4c9-7f67-4ec7-a77b-4f3f98c05b4e?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvOWNlNmY0YzktN2Y2Ny00ZWM3LWE3N2ItNGYzZjk4YzA1YjRlP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "ac11a611-4d5c-4a45-b7ff-64d8c0eff272" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "9ce35da9-86c1-4767-b48e-40eaa1bdbe56" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T065919Z:9ce35da9-86c1-4767-b48e-40eaa1bdbe56" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:59:18 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T12:28:46.7722208+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9ce6f4c9-7f67-4ec7-a77b-4f3f98c05b4e\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/9ce6f4c9-7f67-4ec7-a77b-4f3f98c05b4e?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvOWNlNmY0YzktN2Y2Ny00ZWM3LWE3N2ItNGYzZjk4YzA1YjRlP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "75cbeeb8-7585-4def-92a3-95dc8597be63" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "63e7ecd8-1ee5-439c-a576-249d53e60a84" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T065950Z:63e7ecd8-1ee5-439c-a576-249d53e60a84" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 06:59:49 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T12:28:46.7722208+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9ce6f4c9-7f67-4ec7-a77b-4f3f98c05b4e\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/9ce6f4c9-7f67-4ec7-a77b-4f3f98c05b4e?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvOWNlNmY0YzktN2Y2Ny00ZWM3LWE3N2ItNGYzZjk4YzA1YjRlP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "81a12cdb-7312-4864-8c6b-43f94f841ca7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "f816e305-17f6-4f1d-a11f-0763d695b29a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070020Z:f816e305-17f6-4f1d-a11f-0763d695b29a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:00:19 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T12:28:46.7722208+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9ce6f4c9-7f67-4ec7-a77b-4f3f98c05b4e\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/9ce6f4c9-7f67-4ec7-a77b-4f3f98c05b4e?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvOWNlNmY0YzktN2Y2Ny00ZWM3LWE3N2ItNGYzZjk4YzA1YjRlP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "7571f2de-43f7-466d-936f-7517355a54d7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "c291f654-5486-4dc3-9ed4-96652412cf00" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070050Z:c291f654-5486-4dc3-9ed4-96652412cf00" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:00:49 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T12:28:46.7722208+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9ce6f4c9-7f67-4ec7-a77b-4f3f98c05b4e\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/9ce6f4c9-7f67-4ec7-a77b-4f3f98c05b4e?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvOWNlNmY0YzktN2Y2Ny00ZWM3LWE3N2ItNGYzZjk4YzA1YjRlP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "15b45133-0a81-4db3-8e5f-94bc6ad2cd22" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "6a535835-5130-4502-995d-97692a0d1652" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070120Z:6a535835-5130-4502-995d-97692a0d1652" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:01:20 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T12:28:46.7722208+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9ce6f4c9-7f67-4ec7-a77b-4f3f98c05b4e\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/9ce6f4c9-7f67-4ec7-a77b-4f3f98c05b4e?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvOWNlNmY0YzktN2Y2Ny00ZWM3LWE3N2ItNGYzZjk4YzA1YjRlP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "52f16961-59cc-4e40-8e57-693a42cd03cb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "11fa7f1c-4903-4f67-8bf9-61e700880778" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070151Z:11fa7f1c-4903-4f67-8bf9-61e700880778" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:01:50 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T12:28:46.7722208+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9ce6f4c9-7f67-4ec7-a77b-4f3f98c05b4e\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/9ce6f4c9-7f67-4ec7-a77b-4f3f98c05b4e?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvOWNlNmY0YzktN2Y2Ny00ZWM3LWE3N2ItNGYzZjk4YzA1YjRlP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "bdef0703-9d55-4da0-b903-240edd27902d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "301ee7be-20a3-4e8b-a366-bedc123f266d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070221Z:301ee7be-20a3-4e8b-a366-bedc123f266d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:02:20 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T12:28:46.7722208+05:30\",\r\n \"endTime\": \"2021-03-22T12:32:08.5459031+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9ce6f4c9-7f67-4ec7-a77b-4f3f98c05b4e\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Compute/cloudServices/cs5518?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI3MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M1NTE4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "dc11e670-7cf2-4b19-b90f-b40fce24a943" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;398,Microsoft.Compute/GetCloudService30Min;2594" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "3d9c3be2-d2a2-4796-98bc-fbaa358dde83" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070221Z:3d9c3be2-d2a2-4796-98bc-fbaa358dde83" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:02:20 GMT" + ], + "Content-Length": [ + "2018" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs5518\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR2716/providers/Microsoft.Compute/cloudServices/cs5518\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HelloWorldTest1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb9408\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe5360\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Network/publicIPAddresses/cspip1149\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"edeaf42d-1571-4dc0-8824-f6a6d14090bb\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Compute/cloudServices/cs5518?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI3MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M1NTE4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c3ffd7d3-7446-4b53-9ebc-8b482783aa7f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "68a56ec0-e53c-4a48-bfba-3a97bcd0622c" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;397,Microsoft.Compute/GetCloudService30Min;2593" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "3f77a78b-a356-4064-a041-65b9a1badc4c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070222Z:3f77a78b-a356-4064-a041-65b9a1badc4c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:02:21 GMT" + ], + "Content-Length": [ + "2018" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs5518\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR2716/providers/Microsoft.Compute/cloudServices/cs5518\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HelloWorldTest1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb9408\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe5360\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Network/publicIPAddresses/cspip1149\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"edeaf42d-1571-4dc0-8824-f6a6d14090bb\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Compute/cloudServices/cs5518?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI3MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M1NTE4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a60c267-7aff-49f5-8b22-d61bf5f32fc5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7414c490-3a4f-4475-99bc-52b81d4486f7" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;396,Microsoft.Compute/GetCloudService30Min;2592" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "24e7f756-6895-4b78-9680-a0ba9b256f3a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070323Z:24e7f756-6895-4b78-9680-a0ba9b256f3a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:03:22 GMT" + ], + "Content-Length": [ + "2018" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs5518\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR2716/providers/Microsoft.Compute/cloudServices/cs5518\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HelloWorldTest1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb9408\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe5360\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Network/publicIPAddresses/cspip1149\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"edeaf42d-1571-4dc0-8824-f6a6d14090bb\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Compute/cloudServices/cs5518?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI3MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M1NTE4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c32762ce-5f4f-469b-989c-53761d8d7d27" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ad8c9745-ea6c-4653-97b0-f3d1f18d383b" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;395,Microsoft.Compute/GetCloudService30Min;2591" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "31d5f63f-eeb4-46f5-8aa0-9c49252d138b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070455Z:31d5f63f-eeb4-46f5-8aa0-9c49252d138b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:04:55 GMT" + ], + "Content-Length": [ + "2018" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs5518\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR2716/providers/Microsoft.Compute/cloudServices/cs5518\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HelloWorldTest1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb9408\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe5360\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Network/publicIPAddresses/cspip1149\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"edeaf42d-1571-4dc0-8824-f6a6d14090bb\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Compute/cloudServices/cs5518?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI3MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M1NTE4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1f2c10b-570d-4618-a568-ce34facc4c75" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9eda25ce-d3cd-42e3-a17e-388c9b47efbf" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;397,Microsoft.Compute/GetCloudService30Min;2591" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "cb6f3a63-d12f-4f47-84dd-1a831b99b8eb" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070527Z:cb6f3a63-d12f-4f47-84dd-1a831b99b8eb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:05:26 GMT" + ], + "Content-Length": [ + "2018" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs5518\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR2716/providers/Microsoft.Compute/cloudServices/cs5518\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HelloWorldTest1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb9408\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe5360\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Network/publicIPAddresses/cspip1149\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"edeaf42d-1571-4dc0-8824-f6a6d14090bb\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Compute/cloudServices/cs5518?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI3MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M1NTE4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "91d60d4a-4b18-458e-9835-8eb4d14b6852" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8356421d-e8b0-4d60-b447-6cf23a70e76d" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;396,Microsoft.Compute/GetCloudService30Min;2590" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-correlation-request-id": [ + "59f48037-5b39-4a67-a741-e05f5865e701" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070558Z:59f48037-5b39-4a67-a741-e05f5865e701" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:05:57 GMT" + ], + "Content-Length": [ + "2018" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs5518\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR2716/providers/Microsoft.Compute/cloudServices/cs5518\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HelloWorldTest1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb9408\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe5360\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Network/publicIPAddresses/cspip1149\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"edeaf42d-1571-4dc0-8824-f6a6d14090bb\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Compute/cloudServices/cs5518?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI3MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M1NTE4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c8b50325-151e-405e-809a-3e7f9d232c8a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b88a3e61-7156-4a41-892d-b4069ebe8b59" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;398,Microsoft.Compute/GetCloudService30Min;2588" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-correlation-request-id": [ + "7d817611-bd30-4319-abf1-e30501f34f2f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070901Z:7d817611-bd30-4319-abf1-e30501f34f2f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:09:00 GMT" + ], + "Content-Length": [ + "2018" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs5518\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR2716/providers/Microsoft.Compute/cloudServices/cs5518\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HelloWorldTest1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb9408\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe5360\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Network/publicIPAddresses/cspip1149\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"edeaf42d-1571-4dc0-8824-f6a6d14090bb\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Compute/cloudServices/cs5518/poweroff?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI3MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M1NTE4L3Bvd2Vyb2ZmP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b46f5660-a40f-4aa1-958c-3ff5d050671a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/4d7c84e5-9d7d-4ded-ab66-5efe2a76fba1?monitor=true&api-version=2021-03-01" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/4d7c84e5-9d7d-4ded-ab66-5efe2a76fba1?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4d7c84e5-9d7d-4ded-ab66-5efe2a76fba1" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;298" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "eca0771d-eeaa-4313-a222-cdbb17dc5433" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070222Z:eca0771d-eeaa-4313-a222-cdbb17dc5433" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:02:21 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/4d7c84e5-9d7d-4ded-ab66-5efe2a76fba1?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNGQ3Yzg0ZTUtOWQ3ZC00ZGVkLWFiNjYtNWVmZTJhNzZmYmExP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "95095c68-89f1-4fb5-827c-79b15f403420" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "5a83b252-bc39-4c5a-8613-c7fa763b416b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070252Z:5a83b252-bc39-4c5a-8613-c7fa763b416b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:02:52 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T12:32:22.2182998+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4d7c84e5-9d7d-4ded-ab66-5efe2a76fba1\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/4d7c84e5-9d7d-4ded-ab66-5efe2a76fba1?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNGQ3Yzg0ZTUtOWQ3ZC00ZGVkLWFiNjYtNWVmZTJhNzZmYmExP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "5eb65ee7-8229-43ed-a066-d11239c7afbc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "bf25316a-daf7-4011-9998-dace0a98c068" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070323Z:bf25316a-daf7-4011-9998-dace0a98c068" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:03:22 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T12:32:22.2182998+05:30\",\r\n \"endTime\": \"2021-03-22T12:33:17.9261227+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4d7c84e5-9d7d-4ded-ab66-5efe2a76fba1\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/4d7c84e5-9d7d-4ded-ab66-5efe2a76fba1?monitor=true&api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNGQ3Yzg0ZTUtOWQ3ZC00ZGVkLWFiNjYtNWVmZTJhNzZmYmExP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "f2235192-4f2e-4753-bcef-3bb467682a4c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "ca2171c8-b62c-4590-abc1-82c7a295688f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070323Z:ca2171c8-b62c-4590-abc1-82c7a295688f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:03:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Compute/cloudServices/cs5518/start?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI3MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M1NTE4L3N0YXJ0P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1f6e1f46-c9c4-4f92-8e1e-1bf5e4621ca0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/2c98930f-1d85-4d2d-8e9f-b2b672109b2d?monitor=true&api-version=2021-03-01" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/2c98930f-1d85-4d2d-8e9f-b2b672109b2d?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2c98930f-1d85-4d2d-8e9f-b2b672109b2d" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;297" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "7f5f9355-a441-4c1d-8e6b-4015a9b16cb6" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070323Z:7f5f9355-a441-4c1d-8e6b-4015a9b16cb6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:03:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/2c98930f-1d85-4d2d-8e9f-b2b672109b2d?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMmM5ODkzMGYtMWQ4NS00ZDJkLThlOWYtYjJiNjcyMTA5YjJkP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "67ad764c-bfb4-4a49-b7d7-3c227a2a9031" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "d4920b38-f1ad-4b3a-82ca-30f43f075bbe" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070354Z:d4920b38-f1ad-4b3a-82ca-30f43f075bbe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:03:54 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T12:33:23.754473+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2c98930f-1d85-4d2d-8e9f-b2b672109b2d\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/2c98930f-1d85-4d2d-8e9f-b2b672109b2d?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMmM5ODkzMGYtMWQ4NS00ZDJkLThlOWYtYjJiNjcyMTA5YjJkP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "d73b3082-892e-4d2c-9b36-f3af6688d5e3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "fe63c1af-dc74-4e2b-b37c-6017faed24c4" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070425Z:fe63c1af-dc74-4e2b-b37c-6017faed24c4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:04:24 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T12:33:23.754473+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2c98930f-1d85-4d2d-8e9f-b2b672109b2d\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/2c98930f-1d85-4d2d-8e9f-b2b672109b2d?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMmM5ODkzMGYtMWQ4NS00ZDJkLThlOWYtYjJiNjcyMTA5YjJkP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "e86b53b7-127e-4024-b0a0-6396c690cc36" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "4198ace3-f471-49b3-ae37-b585ef39fa91" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070455Z:4198ace3-f471-49b3-ae37-b585ef39fa91" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:04:54 GMT" + ], + "Content-Length": [ + "183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T12:33:23.754473+05:30\",\r\n \"endTime\": \"2021-03-22T12:34:49.7265997+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2c98930f-1d85-4d2d-8e9f-b2b672109b2d\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/2c98930f-1d85-4d2d-8e9f-b2b672109b2d?monitor=true&api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMmM5ODkzMGYtMWQ4NS00ZDJkLThlOWYtYjJiNjcyMTA5YjJkP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "104a7845-ad24-4c5d-b23c-52b12e0e7de5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "deb22268-3518-4d79-a11a-c63c050f6e87" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070455Z:deb22268-3518-4d79-a11a-c63c050f6e87" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:04:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Compute/cloudServices/cs5518/restart?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI3MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M1NTE4L3Jlc3RhcnQ/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"roleInstances\": [\r\n \"*\"\r\n ]\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f40d9f19-a2a1-4e10-8502-24fc5d49bc84" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "40" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/081ae61a-e929-4e6f-b39a-99bacb483a02?monitor=true&api-version=2021-03-01" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/081ae61a-e929-4e6f-b39a-99bacb483a02?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "081ae61a-e929-4e6f-b39a-99bacb483a02" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;296" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "ff9c2d34-6234-4f34-8ec7-743d9e471d32" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070456Z:ff9c2d34-6234-4f34-8ec7-743d9e471d32" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:04:55 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/081ae61a-e929-4e6f-b39a-99bacb483a02?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMDgxYWU2MWEtZTkyOS00ZTZmLWIzOWEtOTliYWNiNDgzYTAyP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "ff942098-12e0-4238-a6a5-408c2da60bd5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "e7a23815-5c3d-435c-81c6-e9d923928908" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070526Z:e7a23815-5c3d-435c-81c6-e9d923928908" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:05:26 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T12:34:56.0550284+05:30\",\r\n \"endTime\": \"2021-03-22T12:35:06.5242077+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"081ae61a-e929-4e6f-b39a-99bacb483a02\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/081ae61a-e929-4e6f-b39a-99bacb483a02?monitor=true&api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMDgxYWU2MWEtZTkyOS00ZTZmLWIzOWEtOTliYWNiNDgzYTAyP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "c1395586-911c-4e5e-9873-d6f8edaf5c14" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "07675f49-0484-466a-9914-2a09537ba03a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070526Z:07675f49-0484-466a-9914-2a09537ba03a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:05:26 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Compute/cloudServices/cs5518/reimage?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI3MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M1NTE4L3JlaW1hZ2U/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"roleInstances\": [\r\n \"*\"\r\n ]\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5997bbe3-4738-4f15-ad6e-a02362a352e0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "40" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/8b01ecba-c07a-4875-81a8-fc489af57c1c?monitor=true&api-version=2021-03-01" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/8b01ecba-c07a-4875-81a8-fc489af57c1c?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8b01ecba-c07a-4875-81a8-fc489af57c1c" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;295" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "5beb5e7c-22e2-40f6-bfff-7633c1f06cbc" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070527Z:5beb5e7c-22e2-40f6-bfff-7633c1f06cbc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:05:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/8b01ecba-c07a-4875-81a8-fc489af57c1c?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvOGIwMWVjYmEtYzA3YS00ODc1LTgxYTgtZmM0ODlhZjU3YzFjP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "8c72d4e1-6132-4481-8afb-ba15663d8224" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "4644374f-aa7e-4773-b842-e7968523771f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070557Z:4644374f-aa7e-4773-b842-e7968523771f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:05:57 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T12:35:27.2907604+05:30\",\r\n \"endTime\": \"2021-03-22T12:35:37.5255676+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8b01ecba-c07a-4875-81a8-fc489af57c1c\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/8b01ecba-c07a-4875-81a8-fc489af57c1c?monitor=true&api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvOGIwMWVjYmEtYzA3YS00ODc1LTgxYTgtZmM0ODlhZjU3YzFjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "876ed765-7ec1-427d-9d04-b68491c948fa" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-correlation-request-id": [ + "c874dbb0-9a77-4b4d-8d49-179e21e8f75e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070557Z:c874dbb0-9a77-4b4d-8d49-179e21e8f75e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:05:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Compute/cloudServices/cs5518/rebuild?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI3MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M1NTE4L3JlYnVpbGQ/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"roleInstances\": [\r\n \"*\"\r\n ]\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6237b1f8-f751-45b3-83d6-e4cd0a7bc9fe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "40" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/420427dc-551d-4b35-af2c-19d676b33c5a?monitor=true&api-version=2021-03-01" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/420427dc-551d-4b35-af2c-19d676b33c5a?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "420427dc-551d-4b35-af2c-19d676b33c5a" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;294" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "43a4cfa6-fed5-4527-aa15-f259132f7760" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070558Z:43a4cfa6-fed5-4527-aa15-f259132f7760" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:05:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/420427dc-551d-4b35-af2c-19d676b33c5a?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNDIwNDI3ZGMtNTUxZC00YjM1LWFmMmMtMTlkNjc2YjMzYzVhP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "155f78f0-aeea-4821-8ce8-5a8620a2107a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-correlation-request-id": [ + "9489d977-99e7-4b15-8f8f-682c9971e32e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070628Z:9489d977-99e7-4b15-8f8f-682c9971e32e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:06:27 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T12:35:58.401463+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"420427dc-551d-4b35-af2c-19d676b33c5a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/420427dc-551d-4b35-af2c-19d676b33c5a?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNDIwNDI3ZGMtNTUxZC00YjM1LWFmMmMtMTlkNjc2YjMzYzVhP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "f4b75b63-316d-4f3c-8db2-5befc0ceefa5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-correlation-request-id": [ + "0961d0ee-e162-444b-9a0d-de50694e5b2e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070659Z:0961d0ee-e162-444b-9a0d-de50694e5b2e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:06:58 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T12:35:58.401463+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"420427dc-551d-4b35-af2c-19d676b33c5a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/420427dc-551d-4b35-af2c-19d676b33c5a?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNDIwNDI3ZGMtNTUxZC00YjM1LWFmMmMtMTlkNjc2YjMzYzVhP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "60fc31d1-7c1f-4d93-893c-55bdee4afa72" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "3498fa56-e4b6-4441-8c85-c10a67801365" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070729Z:3498fa56-e4b6-4441-8c85-c10a67801365" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:07:28 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T12:35:58.401463+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"420427dc-551d-4b35-af2c-19d676b33c5a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/420427dc-551d-4b35-af2c-19d676b33c5a?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNDIwNDI3ZGMtNTUxZC00YjM1LWFmMmMtMTlkNjc2YjMzYzVhP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "c3f0f4a7-2e40-4c70-8404-b196ba3e650f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-correlation-request-id": [ + "811565a4-fee8-43b8-b54f-977ab11591e0" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070759Z:811565a4-fee8-43b8-b54f-977ab11591e0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:07:58 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T12:35:58.401463+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"420427dc-551d-4b35-af2c-19d676b33c5a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/420427dc-551d-4b35-af2c-19d676b33c5a?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNDIwNDI3ZGMtNTUxZC00YjM1LWFmMmMtMTlkNjc2YjMzYzVhP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "999f30fe-d2d7-458a-8c01-4ccf81611191" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-correlation-request-id": [ + "6eec767d-b637-4319-a75d-167be98d438a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070829Z:6eec767d-b637-4319-a75d-167be98d438a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:08:29 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T12:35:58.401463+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"420427dc-551d-4b35-af2c-19d676b33c5a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/420427dc-551d-4b35-af2c-19d676b33c5a?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNDIwNDI3ZGMtNTUxZC00YjM1LWFmMmMtMTlkNjc2YjMzYzVhP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "fffdc46d-a4a8-49a1-981f-e04ee4ca3fdd" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "940a59fd-7594-4e07-84bd-b999aeef98ac" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070900Z:940a59fd-7594-4e07-84bd-b999aeef98ac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:08:59 GMT" + ], + "Content-Length": [ + "183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T12:35:58.401463+05:30\",\r\n \"endTime\": \"2021-03-22T12:38:50.1432746+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"420427dc-551d-4b35-af2c-19d676b33c5a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/420427dc-551d-4b35-af2c-19d676b33c5a?monitor=true&api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNDIwNDI3ZGMtNTUxZC00YjM1LWFmMmMtMTlkNjc2YjMzYzVhP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "fd1c8af7-7aa4-43bb-b822-48fc234b236e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-correlation-request-id": [ + "209bd590-9b33-45c7-b0e3-b6b555069e69" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070901Z:209bd590-9b33-45c7-b0e3-b6b555069e69" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:09:00 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2716/providers/Microsoft.Compute/cloudServices/cs5518?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI3MTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M1NTE4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb1ac418-144c-4591-ac9f-d2b7c821a319" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/04f91122-fd02-46c5-adfd-04007a8674cb?monitor=true&api-version=2021-03-01" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/04f91122-fd02-46c5-adfd-04007a8674cb?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "04f91122-fd02-46c5-adfd-04007a8674cb" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;293" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "dab101e1-df5b-4bee-9048-1fc4e1889a09" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070903Z:dab101e1-df5b-4bee-9048-1fc4e1889a09" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:09:02 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/04f91122-fd02-46c5-adfd-04007a8674cb?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMDRmOTExMjItZmQwMi00NmM1LWFkZmQtMDQwMDdhODY3NGNiP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "b680dfa5-9b44-4e5b-95d5-9d88cb5b0af0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-correlation-request-id": [ + "0101badc-b92c-47eb-a22d-bf401bac283d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T070933Z:0101badc-b92c-47eb-a22d-bf401bac283d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:09:32 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T12:39:03.3470133+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"04f91122-fd02-46c5-adfd-04007a8674cb\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/04f91122-fd02-46c5-adfd-04007a8674cb?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMDRmOTExMjItZmQwMi00NmM1LWFkZmQtMDQwMDdhODY3NGNiP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "fe1c0b32-b2e0-48d7-bb27-f117ca3f04cc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-correlation-request-id": [ + "46527805-c47d-49d8-975c-3766f89d9bc8" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T071004Z:46527805-c47d-49d8-975c-3766f89d9bc8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:10:03 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T12:39:03.3470133+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"04f91122-fd02-46c5-adfd-04007a8674cb\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/04f91122-fd02-46c5-adfd-04007a8674cb?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMDRmOTExMjItZmQwMi00NmM1LWFkZmQtMDQwMDdhODY3NGNiP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "4b7c3f37-dd9d-4697-873a-7cc31d7a9fc5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-correlation-request-id": [ + "0183bcb8-5799-4e6b-b455-91cf5d053155" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T071034Z:0183bcb8-5799-4e6b-b455-91cf5d053155" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:10:33 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T12:39:03.3470133+05:30\",\r\n \"endTime\": \"2021-03-22T12:40:04.1308872+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"04f91122-fd02-46c5-adfd-04007a8674cb\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/04f91122-fd02-46c5-adfd-04007a8674cb?monitor=true&api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMDRmOTExMjItZmQwMi00NmM1LWFkZmQtMDQwMDdhODY3NGNiP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "c3247403-4584-4e88-a101-b58b97f541da" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-correlation-request-id": [ + "9d5b5576-4d79-4d60-968b-bf825ec9121d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T071034Z:9d5b5576-4d79-4d60-968b-bf825ec9121d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:10:33 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar2716?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjI3MTY/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "157f01a2-0fe2-42e6-8fbb-d096af5f70bc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIyNzE2LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "5a56a6c2-b59b-4ba8-925c-1d4f49ebd5b2" + ], + "x-ms-correlation-request-id": [ + "5a56a6c2-b59b-4ba8-925c-1d4f49ebd5b2" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T071038Z:5a56a6c2-b59b-4ba8-925c-1d4f49ebd5b2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 07:10:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + } + ], + "Names": { + "Test_Create_PowerOff_Start_CloudServiceOperation": [ + "crptestar2716", + "cs5518", + "cspip1149", + "csvnet1671", + "subnet1016", + "dns7534", + "lb9408", + "lbfe5360" + ], + "CreateCspkgSasUrl": [ + "saforcspkg6518", + "asforcspkg2725" + ] + }, + "Variables": { + "SubscriptionId": "0296790d-427c-48ca-b204-8b729bbd8670" + } +} \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceOperationTests/Test_ListCloudServicesOperation.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceOperationTests/Test_ListCloudServicesOperation.json new file mode 100644 index 0000000000000..cc9ee1418fa05 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceOperationTests/Test_ListCloudServicesOperation.json @@ -0,0 +1,4394 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar9802?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rhcjk4MDI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar9802\": \"2021-03-13 21:54:39Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "86ada8b3-2e93-4f7f-8a22-eee236150fe1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "93" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "917c2136-e6e0-479d-b42c-f784905aeba3" + ], + "x-ms-correlation-request-id": [ + "917c2136-e6e0-479d-b42c-f784905aeba3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T215441Z:917c2136-e6e0-479d-b42c-f784905aeba3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 21:54:40 GMT" + ], + "Content-Length": [ + "228" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802\",\r\n \"name\": \"crptestar9802\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar9802\": \"2021-03-13 21:54:39Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar9802?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rhcjk4MDI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar9802\": \"2021-03-13 21:55:42Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "92ed7691-8e4a-445a-872f-eb9a9edc35d9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "93" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "a3a888bc-0f2f-4c8c-a0f0-e7964fde1398" + ], + "x-ms-correlation-request-id": [ + "a3a888bc-0f2f-4c8c-a0f0-e7964fde1398" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T215544Z:a3a888bc-0f2f-4c8c-a0f0-e7964fde1398" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 21:55:43 GMT" + ], + "Content-Length": [ + "228" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802\",\r\n \"name\": \"crptestar9802\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar9802\": \"2021-03-13 21:55:42Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar9802?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rhcjk4MDI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "70c67a6e-07e8-4fd3-9df3-26920d2d4565" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "bcdf2bf4-4d9b-41e5-b080-8dc7c1b4dd0b" + ], + "x-ms-correlation-request-id": [ + "bcdf2bf4-4d9b-41e5-b080-8dc7c1b4dd0b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T215606Z:bcdf2bf4-4d9b-41e5-b080-8dc7c1b4dd0b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 21:56:06 GMT" + ], + "Content-Length": [ + "180" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802\",\r\n \"name\": \"crptestar9802\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar9802?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rhcjk4MDI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar9802\": \"2021-03-13 21:59:47Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eec75de4-4879-4964-94d7-98e04fb5b0a1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "93" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "92bd0cd0-3646-4374-a5e3-0636afa81dcf" + ], + "x-ms-correlation-request-id": [ + "92bd0cd0-3646-4374-a5e3-0636afa81dcf" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T215951Z:92bd0cd0-3646-4374-a5e3-0636afa81dcf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 21:59:50 GMT" + ], + "Content-Length": [ + "228" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802\",\r\n \"name\": \"crptestar9802\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar9802\": \"2021-03-13 21:59:47Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar9802?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rhcjk4MDI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e06bccbc-f58b-4527-b15a-627ea785b07f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "d6ce2a87-2dea-4aec-a06d-38c22af15321" + ], + "x-ms-correlation-request-id": [ + "d6ce2a87-2dea-4aec-a06d-38c22af15321" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220011Z:d6ce2a87-2dea-4aec-a06d-38c22af15321" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:00:11 GMT" + ], + "Content-Length": [ + "180" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802\",\r\n \"name\": \"crptestar9802\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Storage/storageAccounts/saforcspkg8881?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmNzcGtnODg4MT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ebda85e4-dd43-4d82-ad20-7dc7ce4ecb8e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "89" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Storage/locations/eastus2/asyncoperations/a4636adc-4956-4525-ba36-0d71dbde7759?monitor=true&api-version=2015-06-15" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "a4636adc-4956-4525-ba36-0d71dbde7759" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "047516b4-ef3b-44de-9146-abe22bb0a8cb" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T215450Z:047516b4-ef3b-44de-9146-abe22bb0a8cb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 21:54:50 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Storage/locations/eastus2/asyncoperations/a4636adc-4956-4525-ba36-0d71dbde7759?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvYTQ2MzZhZGMtNDk1Ni00NTI1LWJhMzYtMGQ3MWRiZGU3NzU5P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "29c7d64c-536c-4f71-80c4-8963c053c0c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "6a5cec32-44cf-4dab-87bc-ab4962b2e6bc" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T215507Z:6a5cec32-44cf-4dab-87bc-ab4962b2e6bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 21:55:06 GMT" + ], + "Content-Length": [ + "89" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fa76f1df-00d2-4d38-9311-67f8bb0991c6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1b407aad-ad21-4693-8035-192c256206a0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "c4b2e2ee-7d70-4ea6-9c22-4422724246cc" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T215517Z:c4b2e2ee-7d70-4ea6-9c22-4422724246cc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 21:55:17 GMT" + ], + "Content-Length": [ + "747" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Storage/storageAccounts/saforcspkg8881\",\r\n \"name\": \"saforcspkg8881\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-03-13T21:54:49.5807503Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforcspkg8881.blob.core.windows.net/\",\r\n \"queue\": \"https://saforcspkg8881.queue.core.windows.net/\",\r\n \"table\": \"https://saforcspkg8881.table.core.windows.net/\",\r\n \"file\": \"https://saforcspkg8881.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Storage/storageAccounts/saforcspkg8881?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmNzcGtnODg4MT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ef163d7d-fa42-4dc6-bce5-8f4d3258d6d6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "50fe8b4d-7354-46a4-8dc6-6111704cbe4c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "b30d7a21-22a2-42f0-8461-95dff78e9ff7" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T215518Z:b30d7a21-22a2-42f0-8461-95dff78e9ff7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 21:55:17 GMT" + ], + "Content-Length": [ + "735" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Storage/storageAccounts/saforcspkg8881\",\r\n \"name\": \"saforcspkg8881\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-03-13T21:54:49.5807503Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforcspkg8881.blob.core.windows.net/\",\r\n \"queue\": \"https://saforcspkg8881.queue.core.windows.net/\",\r\n \"table\": \"https://saforcspkg8881.table.core.windows.net/\",\r\n \"file\": \"https://saforcspkg8881.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Storage/storageAccounts/saforcspkg8881/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmNzcGtnODg4MS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b7a60844-6772-40a8-8973-739f7f772179" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "dfe1e9ac-6feb-400e-91ae-68e0f69b4c90" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "a5090476-11b3-4a49-b5ad-31d676aadeb2" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T215518Z:a5090476-11b3-4a49-b5ad-31d676aadeb2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 21:55:17 GMT" + ], + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"jiOO6mZTzVTa1pItQbNI7yUGE8fD3QVczdZfawsMfsI+6Wo59wZ2yYHsWxuhkFqhx0IeuTXSAVXq0KR1aNIdXA==\",\r\n \"key2\": \"NLE0MbRZcJ/sKbLKyVvfrSMiFVpQUVMh1dtFdaHg31ZLyOtlWZIzgLxLuQwA+xem3ts03ULRQtsgVGtXIsKgYg==\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Network/virtualNetworks/csvnet6943?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9jc3ZuZXQ2OTQzP2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"subnet207\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "86b96fe2-391d-4b08-b233-8095db266c62" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "296" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "dd2247e9-f8b0-4514-b2c3-171e46fb3f6b" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/dd2247e9-f8b0-4514-b2c3-171e46fb3f6b?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "ae1e75d6-5921-4630-aee9-590af12604a5" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "ebef89a9-f813-4372-b433-28b829e25350" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T215552Z:ae1e75d6-5921-4630-aee9-590af12604a5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 21:55:52 GMT" + ], + "Content-Length": [ + "1230" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"csvnet6943\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Network/virtualNetworks/csvnet6943\",\r\n \"etag\": \"W/\\\"b450481a-fc41-4504-8fc8-dcb634b01f0f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"cce23d24-09bb-4e00-9a26-5219dcaad665\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet207\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Network/virtualNetworks/csvnet6943/subnets/subnet207\",\r\n \"etag\": \"W/\\\"b450481a-fc41-4504-8fc8-dcb634b01f0f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/dd2247e9-f8b0-4514-b2c3-171e46fb3f6b?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2RkMjI0N2U5LWY4YjAtNDUxNC1iMmMzLTE3MWU0NmZiM2Y2Yj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "80843ec4-94d7-42d4-9812-bb76c1f3e36b" + ], + "x-ms-correlation-request-id": [ + "08b4346d-27d0-40ad-8548-c19c1b43612f" + ], + "x-ms-arm-service-request-id": [ + "1d29b4c5-a6fa-45ea-924e-d8b97580704a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T215556Z:08b4346d-27d0-40ad-8548-c19c1b43612f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 21:55:55 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Network/virtualNetworks/csvnet6943?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9jc3ZuZXQ2OTQzP2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"ba5726f3-0a43-40dc-a926-8d81072a96b7\"" + ], + "x-ms-request-id": [ + "11acf9c9-400b-4d60-8911-7dcd6a94899a" + ], + "x-ms-correlation-request-id": [ + "83ce388a-9969-4132-aa0c-e02d97996624" + ], + "x-ms-arm-service-request-id": [ + "4f0a8e38-0f6f-49c6-83d2-3d66a2a9e1d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T215556Z:83ce388a-9969-4132-aa0c-e02d97996624" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 21:55:55 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"csvnet6943\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Network/virtualNetworks/csvnet6943\",\r\n \"etag\": \"W/\\\"ba5726f3-0a43-40dc-a926-8d81072a96b7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cce23d24-09bb-4e00-9a26-5219dcaad665\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet207\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Network/virtualNetworks/csvnet6943/subnets/subnet207\",\r\n \"etag\": \"W/\\\"ba5726f3-0a43-40dc-a926-8d81072a96b7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Network/publicIPAddresses/cspip753?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2NzcGlwNzUzP2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns834\"\r\n }\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2f22e9c4-bd78-44d0-8655-844cf46b6f69" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "162" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "6ac7ed8f-2a3f-4128-b533-ce3489c23d22" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/6ac7ed8f-2a3f-4128-b533-ce3489c23d22?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "5b711247-2cb2-4e0e-98d4-a33a69f0e39b" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "ed439e6b-7046-4adf-9a15-9e95f626fab2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T215601Z:5b711247-2cb2-4e0e-98d4-a33a69f0e39b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 21:56:00 GMT" + ], + "Content-Length": [ + "720" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cspip753\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Network/publicIPAddresses/cspip753\",\r\n \"etag\": \"W/\\\"b7b9881e-ab5a-4fd8-8883-21d6da769132\\\"\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"dcb5f502-1508-4880-b3e0-d5c74e40202e\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns834\",\r\n \"fqdn\": \"dns834.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/6ac7ed8f-2a3f-4128-b533-ce3489c23d22?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzZhYzdlZDhmLTJhM2YtNDEyOC1iNTMzLWNlMzQ4OWMyM2QyMj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "2" + ], + "x-ms-request-id": [ + "52b002f6-f062-4455-9eb1-cb08b177d142" + ], + "x-ms-correlation-request-id": [ + "ec457a58-dae1-421f-83aa-f06e34a94b35" + ], + "x-ms-arm-service-request-id": [ + "c118d234-3224-48fd-b255-60fee6275833" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T215602Z:ec457a58-dae1-421f-83aa-f06e34a94b35" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 21:56:02 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/6ac7ed8f-2a3f-4128-b533-ce3489c23d22?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzZhYzdlZDhmLTJhM2YtNDEyOC1iNTMzLWNlMzQ4OWMyM2QyMj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "537e9643-da1e-4af4-aa07-c896f164790a" + ], + "x-ms-correlation-request-id": [ + "99b39dff-c173-46ff-9ed9-a5ea66938a63" + ], + "x-ms-arm-service-request-id": [ + "ba483e27-58e7-4586-b083-37120e8be659" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T215604Z:99b39dff-c173-46ff-9ed9-a5ea66938a63" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 21:56:04 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Network/publicIPAddresses/cspip753?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2NzcGlwNzUzP2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"81201f1b-66c8-449f-bfa5-02a7d4bc8044\"" + ], + "x-ms-request-id": [ + "fe22d5f0-0239-4b1f-a8c6-ff900304c633" + ], + "x-ms-correlation-request-id": [ + "20e2db96-1ca4-4e10-968c-372b2a81c6d2" + ], + "x-ms-arm-service-request-id": [ + "afda252b-450b-4bd3-8a9b-630d5061453b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T215604Z:20e2db96-1ca4-4e10-968c-372b2a81c6d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 21:56:04 GMT" + ], + "Content-Length": [ + "721" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cspip753\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Network/publicIPAddresses/cspip753\",\r\n \"etag\": \"W/\\\"81201f1b-66c8-449f-bfa5-02a7d4bc8044\\\"\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dcb5f502-1508-4880-b3e0-d5c74e40202e\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns834\",\r\n \"fqdn\": \"dns834.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Compute/cloudServices/cs5847?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M1ODQ3P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"packageUrl\": \"https://saforcspkg8881.blob.core.windows.net/sascontainer/HelloWorldTest_WebRole_D2_V2.cspkg?sv=2017-04-17&sr=b&sig=Ig4X%2F89UfgPm5xcP8kbh%2BXmGlUUAY6sVp0EIxyqSy%2BY%3D&st=2021-03-12T21%3A55%3A42Z&se=2021-03-15T21%3A55%3A42Z&sp=rw\",\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HelloWorldTest1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb8706\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"lbfe2473\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Network/publicIPAddresses/cspip753\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7e320a1a-9382-4b88-919a-f6c9f2782d74" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2149" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/22838bdc-9756-449a-bb0e-936cfcd748bc?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "22838bdc-9756-449a-bb0e-936cfcd748bc" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;291" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "08513742-523f-4903-9d1f-342913db87a0" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T215614Z:08513742-523f-4903-9d1f-342913db87a0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 21:56:13 GMT" + ], + "Content-Length": [ + "2015" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs5847\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR9802/providers/Microsoft.Compute/cloudServices/cs5847\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HelloWorldTest1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb8706\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe2473\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Network/publicIPAddresses/cspip753\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"uniqueId\": \"ab123e11-3c41-48a3-a71a-945bd5a9311a\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/22838bdc-9756-449a-bb0e-936cfcd748bc?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMjI4MzhiZGMtOTc1Ni00NDlhLWJiMGUtOTM2Y2ZjZDc0OGJjP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "ed1593c7-fe60-4528-94f2-5d3a3327c6f6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-correlation-request-id": [ + "39f4a2cc-cc9f-4410-a0bb-6a23e8d619d1" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T215645Z:39f4a2cc-cc9f-4410-a0bb-6a23e8d619d1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 21:56:44 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:26:12.2194641+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"22838bdc-9756-449a-bb0e-936cfcd748bc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/22838bdc-9756-449a-bb0e-936cfcd748bc?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMjI4MzhiZGMtOTc1Ni00NDlhLWJiMGUtOTM2Y2ZjZDc0OGJjP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "4374203c-c456-40a9-b612-c65554bbed10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], + "x-ms-correlation-request-id": [ + "18be0fa6-a71b-4de5-abe0-3c019527bf43" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T215715Z:18be0fa6-a71b-4de5-abe0-3c019527bf43" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 21:57:14 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:26:12.2194641+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"22838bdc-9756-449a-bb0e-936cfcd748bc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/22838bdc-9756-449a-bb0e-936cfcd748bc?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMjI4MzhiZGMtOTc1Ni00NDlhLWJiMGUtOTM2Y2ZjZDc0OGJjP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "cca13d6f-3370-44eb-9109-ef4f80945dfb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-correlation-request-id": [ + "c4fea93d-66d6-4775-817d-ae2539129468" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T215745Z:c4fea93d-66d6-4775-817d-ae2539129468" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 21:57:45 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:26:12.2194641+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"22838bdc-9756-449a-bb0e-936cfcd748bc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/22838bdc-9756-449a-bb0e-936cfcd748bc?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMjI4MzhiZGMtOTc1Ni00NDlhLWJiMGUtOTM2Y2ZjZDc0OGJjP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "24eba07c-d13c-4d16-ac30-a0608767afe1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11949" + ], + "x-ms-correlation-request-id": [ + "53e9e389-8ef0-408c-8e54-7ca09af0007f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T215815Z:53e9e389-8ef0-408c-8e54-7ca09af0007f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 21:58:15 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:26:12.2194641+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"22838bdc-9756-449a-bb0e-936cfcd748bc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/22838bdc-9756-449a-bb0e-936cfcd748bc?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMjI4MzhiZGMtOTc1Ni00NDlhLWJiMGUtOTM2Y2ZjZDc0OGJjP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "64e9072a-4390-403d-82a5-d4e6a38738d9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" + ], + "x-ms-correlation-request-id": [ + "77858d19-503d-4e48-9653-95875b035ed8" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T215846Z:77858d19-503d-4e48-9653-95875b035ed8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 21:58:45 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:26:12.2194641+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"22838bdc-9756-449a-bb0e-936cfcd748bc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/22838bdc-9756-449a-bb0e-936cfcd748bc?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMjI4MzhiZGMtOTc1Ni00NDlhLWJiMGUtOTM2Y2ZjZDc0OGJjP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "d3383243-7f35-491e-b6dd-fe9a23d0ad59" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11947" + ], + "x-ms-correlation-request-id": [ + "09ad1323-da7a-457d-bb8d-5faa50b8b3c0" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T215916Z:09ad1323-da7a-457d-bb8d-5faa50b8b3c0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 21:59:15 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:26:12.2194641+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"22838bdc-9756-449a-bb0e-936cfcd748bc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/22838bdc-9756-449a-bb0e-936cfcd748bc?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMjI4MzhiZGMtOTc1Ni00NDlhLWJiMGUtOTM2Y2ZjZDc0OGJjP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "f64e838d-b0ed-4014-b3fa-e4e2a3dffddb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], + "x-ms-correlation-request-id": [ + "54a065e3-4f6f-4e17-9aff-bd6ea315a8bd" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T215946Z:54a065e3-4f6f-4e17-9aff-bd6ea315a8bd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 21:59:46 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:26:12.2194641+05:30\",\r\n \"endTime\": \"2021-03-14T03:29:32.6111021+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"22838bdc-9756-449a-bb0e-936cfcd748bc\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Compute/cloudServices/cs5847?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M1ODQ3P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "da5b79aa-bcbc-4b70-8e54-5133f0f0dc95" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;398,Microsoft.Compute/GetCloudService30Min;2581" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11945" + ], + "x-ms-correlation-request-id": [ + "8e45c4fc-06ac-4cce-acc8-433c15614351" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T215947Z:8e45c4fc-06ac-4cce-acc8-433c15614351" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 21:59:46 GMT" + ], + "Content-Length": [ + "2016" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs5847\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR9802/providers/Microsoft.Compute/cloudServices/cs5847\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HelloWorldTest1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb8706\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe2473\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Network/publicIPAddresses/cspip753\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"ab123e11-3c41-48a3-a71a-945bd5a9311a\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Compute/cloudServices/cs5847?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M1ODQ3P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9c4ddc5c-4693-435b-b4d5-ee69569631d5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6a3a67f4-2556-448e-a271-1adf4c3e0199" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;397,Microsoft.Compute/GetCloudService30Min;2580" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11944" + ], + "x-ms-correlation-request-id": [ + "53957942-098c-4b07-9182-19ac6fc6d50e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T215947Z:53957942-098c-4b07-9182-19ac6fc6d50e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 21:59:47 GMT" + ], + "Content-Length": [ + "2016" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs5847\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR9802/providers/Microsoft.Compute/cloudServices/cs5847\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HelloWorldTest1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb8706\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe2473\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Network/publicIPAddresses/cspip753\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"ab123e11-3c41-48a3-a71a-945bd5a9311a\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Network/virtualNetworks/csvnet7426?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9jc3ZuZXQ3NDI2P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"subnet5170\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e476449f-1ca3-47bb-8d32-f353f6571b94" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "297" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "e5e7b595-a4f4-4ae8-a911-4605719ea900" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/e5e7b595-a4f4-4ae8-a911-4605719ea900?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "5630825a-aeb9-4e74-bc89-9f4324304300" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "a2716a48-aa59-4523-a08a-905a7591d78c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T215959Z:5630825a-aeb9-4e74-bc89-9f4324304300" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 21:59:58 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"csvnet7426\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Network/virtualNetworks/csvnet7426\",\r\n \"etag\": \"W/\\\"bb3ab5b2-72d4-44ec-ab3b-aa80a54db45d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"4d4cf77d-63c1-40fc-9951-d8ada77ec6bf\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet5170\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Network/virtualNetworks/csvnet7426/subnets/subnet5170\",\r\n \"etag\": \"W/\\\"bb3ab5b2-72d4-44ec-ab3b-aa80a54db45d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/e5e7b595-a4f4-4ae8-a911-4605719ea900?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2U1ZTdiNTk1LWE0ZjQtNGFlOC1hOTExLTQ2MDU3MTllYTkwMD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e367fbfd-020f-4b44-95f0-f61dc3c67fe4" + ], + "x-ms-correlation-request-id": [ + "f7baaa63-076f-4c91-8699-21c96ca1160a" + ], + "x-ms-arm-service-request-id": [ + "cc19aeb9-24ff-4023-9cb8-4543063efcfd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220002Z:f7baaa63-076f-4c91-8699-21c96ca1160a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:00:01 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Network/virtualNetworks/csvnet7426?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9jc3ZuZXQ3NDI2P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"ce88f9a8-2e88-4e76-977e-94272e30d7e0\"" + ], + "x-ms-request-id": [ + "aaf823cb-4db2-4915-90f9-f6efe363322b" + ], + "x-ms-correlation-request-id": [ + "db4415a5-7502-43b0-acd6-567fc48d1b61" + ], + "x-ms-arm-service-request-id": [ + "c1dfa53b-56a7-4119-8bdf-e1c1527178b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220002Z:db4415a5-7502-43b0-acd6-567fc48d1b61" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:00:01 GMT" + ], + "Content-Length": [ + "1234" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"csvnet7426\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Network/virtualNetworks/csvnet7426\",\r\n \"etag\": \"W/\\\"ce88f9a8-2e88-4e76-977e-94272e30d7e0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4d4cf77d-63c1-40fc-9951-d8ada77ec6bf\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet5170\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Network/virtualNetworks/csvnet7426/subnets/subnet5170\",\r\n \"etag\": \"W/\\\"ce88f9a8-2e88-4e76-977e-94272e30d7e0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Network/publicIPAddresses/cspip7068?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2NzcGlwNzA2OD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns5554\"\r\n }\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "15e52f33-6914-404b-b909-13e291ccda2c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "163" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "98de2166-50ef-4b2f-b08b-fc120e3689e8" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/98de2166-50ef-4b2f-b08b-fc120e3689e8?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "290fb0a5-2e57-45d3-a851-7b1d2edaef81" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "6ca7468c-6b4c-4dae-92e1-0051279c6fc4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220007Z:290fb0a5-2e57-45d3-a851-7b1d2edaef81" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:00:06 GMT" + ], + "Content-Length": [ + "724" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cspip7068\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Network/publicIPAddresses/cspip7068\",\r\n \"etag\": \"W/\\\"c8f6b6ed-0b3e-4fe3-8e02-976f52fcfeb7\\\"\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"70889de0-379a-4933-a080-21cea93cd729\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns5554\",\r\n \"fqdn\": \"dns5554.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/98de2166-50ef-4b2f-b08b-fc120e3689e8?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzk4ZGUyMTY2LTUwZWYtNGIyZi1iMDhiLWZjMTIwZTM2ODllOD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "2" + ], + "x-ms-request-id": [ + "70fe7305-712a-4648-9f8b-dc6ba8e49dfc" + ], + "x-ms-correlation-request-id": [ + "642540e8-7eec-4c80-a068-5aa940365cb0" + ], + "x-ms-arm-service-request-id": [ + "2ff212fa-a6e7-4219-b2e6-2c5dff17c53c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220008Z:642540e8-7eec-4c80-a068-5aa940365cb0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:00:07 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/98de2166-50ef-4b2f-b08b-fc120e3689e8?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzk4ZGUyMTY2LTUwZWYtNGIyZi1iMDhiLWZjMTIwZTM2ODllOD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "854c9985-474e-4759-9cc6-69c37268d955" + ], + "x-ms-correlation-request-id": [ + "ef9f2b93-1cd2-41f2-abf4-236c7364827f" + ], + "x-ms-arm-service-request-id": [ + "c0aa3347-da4e-4b5d-a2da-3f211eb09107" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220010Z:ef9f2b93-1cd2-41f2-abf4-236c7364827f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:00:09 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Network/publicIPAddresses/cspip7068?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2NzcGlwNzA2OD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"a203e781-b488-43e4-ab1f-46693856cd8c\"" + ], + "x-ms-request-id": [ + "ed62a81b-f058-4dea-a776-1aaae9290872" + ], + "x-ms-correlation-request-id": [ + "351cee84-5a28-4613-ada8-ee01b2cc9abb" + ], + "x-ms-arm-service-request-id": [ + "cd36be9d-c250-4725-a425-a8d0c2d2645f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220011Z:351cee84-5a28-4613-ada8-ee01b2cc9abb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:00:10 GMT" + ], + "Content-Length": [ + "725" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cspip7068\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Network/publicIPAddresses/cspip7068\",\r\n \"etag\": \"W/\\\"a203e781-b488-43e4-ab1f-46693856cd8c\\\"\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"70889de0-379a-4933-a080-21cea93cd729\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns5554\",\r\n \"fqdn\": \"dns5554.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Compute/cloudServices/cs2799?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MyNzk5P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"packageUrl\": \"https://saforcspkg8881.blob.core.windows.net/sascontainer/HelloWorldTest_WebRole_D2_V2.cspkg?sv=2017-04-17&sr=b&sig=Ig4X%2F89UfgPm5xcP8kbh%2BXmGlUUAY6sVp0EIxyqSy%2BY%3D&st=2021-03-12T21%3A55%3A42Z&se=2021-03-15T21%3A55%3A42Z&sp=rw\",\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HelloWorldTest1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb6477\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"lbfe4673\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Network/publicIPAddresses/cspip7068\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "832e17b6-2dec-4804-a5a3-6f2978024ce8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2151" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/27fa27f5-b0b3-4988-92c2-93932da12dd6?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "27fa27f5-b0b3-4988-92c2-93932da12dd6" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;291" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "da7eb1d6-22ff-4707-9ae6-e820199b343a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220018Z:da7eb1d6-22ff-4707-9ae6-e820199b343a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:00:18 GMT" + ], + "Content-Length": [ + "2017" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs2799\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR9802/providers/Microsoft.Compute/cloudServices/cs2799\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HelloWorldTest1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb6477\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe4673\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Network/publicIPAddresses/cspip7068\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"uniqueId\": \"72752e87-794f-469a-a698-374c938d49a5\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/27fa27f5-b0b3-4988-92c2-93932da12dd6?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMjdmYTI3ZjUtYjBiMy00OTg4LTkyYzItOTM5MzJkYTEyZGQ2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "07febd5b-ad75-4816-accf-7e8e18361f39" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11943" + ], + "x-ms-correlation-request-id": [ + "204a4b14-6c41-4a54-bc48-68886f15113c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220049Z:204a4b14-6c41-4a54-bc48-68886f15113c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:00:48 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:30:17.0647261+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"27fa27f5-b0b3-4988-92c2-93932da12dd6\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/27fa27f5-b0b3-4988-92c2-93932da12dd6?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMjdmYTI3ZjUtYjBiMy00OTg4LTkyYzItOTM5MzJkYTEyZGQ2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "3faa0628-2e76-472c-9469-d52d3afda721" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11942" + ], + "x-ms-correlation-request-id": [ + "8033a30c-d78e-44d1-8a3d-229931833adc" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220119Z:8033a30c-d78e-44d1-8a3d-229931833adc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:01:19 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:30:17.0647261+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"27fa27f5-b0b3-4988-92c2-93932da12dd6\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/27fa27f5-b0b3-4988-92c2-93932da12dd6?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMjdmYTI3ZjUtYjBiMy00OTg4LTkyYzItOTM5MzJkYTEyZGQ2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "4ef79330-2801-4810-baa8-377493311879" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11941" + ], + "x-ms-correlation-request-id": [ + "0601c864-fc3c-42be-9536-2ee33471f96f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220150Z:0601c864-fc3c-42be-9536-2ee33471f96f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:01:49 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:30:17.0647261+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"27fa27f5-b0b3-4988-92c2-93932da12dd6\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/27fa27f5-b0b3-4988-92c2-93932da12dd6?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMjdmYTI3ZjUtYjBiMy00OTg4LTkyYzItOTM5MzJkYTEyZGQ2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "db652311-668b-47c9-94e8-718f30159d61" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11940" + ], + "x-ms-correlation-request-id": [ + "72d1d774-704c-4c20-8281-8a69aac3b6e5" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220220Z:72d1d774-704c-4c20-8281-8a69aac3b6e5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:02:20 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:30:17.0647261+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"27fa27f5-b0b3-4988-92c2-93932da12dd6\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/27fa27f5-b0b3-4988-92c2-93932da12dd6?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMjdmYTI3ZjUtYjBiMy00OTg4LTkyYzItOTM5MzJkYTEyZGQ2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "f24193a7-f5db-4ba7-8849-40f07132b4ff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11939" + ], + "x-ms-correlation-request-id": [ + "3ebb7511-2b39-4c22-aeac-224c514597ec" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220250Z:3ebb7511-2b39-4c22-aeac-224c514597ec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:02:49 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:30:17.0647261+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"27fa27f5-b0b3-4988-92c2-93932da12dd6\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/27fa27f5-b0b3-4988-92c2-93932da12dd6?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMjdmYTI3ZjUtYjBiMy00OTg4LTkyYzItOTM5MzJkYTEyZGQ2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "1048c326-d0d3-4522-a5e4-f5ccf083a85b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11938" + ], + "x-ms-correlation-request-id": [ + "4c76acd5-895a-45e8-bd50-c14f0756f682" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220320Z:4c76acd5-895a-45e8-bd50-c14f0756f682" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:03:20 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:30:17.0647261+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"27fa27f5-b0b3-4988-92c2-93932da12dd6\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/27fa27f5-b0b3-4988-92c2-93932da12dd6?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMjdmYTI3ZjUtYjBiMy00OTg4LTkyYzItOTM5MzJkYTEyZGQ2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "9c7b3524-26fe-4003-bc2d-3113c67a4eb8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11937" + ], + "x-ms-correlation-request-id": [ + "d11c183c-cddf-441d-af1c-a5b0318a75c8" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220351Z:d11c183c-cddf-441d-af1c-a5b0318a75c8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:03:50 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:30:17.0647261+05:30\",\r\n \"endTime\": \"2021-03-14T03:33:38.4722699+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"27fa27f5-b0b3-4988-92c2-93932da12dd6\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Compute/cloudServices/cs2799?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MyNzk5P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "36c50c63-bd71-441a-a234-6fbec2b5a138" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;398,Microsoft.Compute/GetCloudService30Min;2581" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11936" + ], + "x-ms-correlation-request-id": [ + "5b601968-9ec6-417e-b9d1-e15c71ac7026" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220351Z:5b601968-9ec6-417e-b9d1-e15c71ac7026" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:03:51 GMT" + ], + "Content-Length": [ + "2018" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs2799\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR9802/providers/Microsoft.Compute/cloudServices/cs2799\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HelloWorldTest1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb6477\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe4673\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Network/publicIPAddresses/cspip7068\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"72752e87-794f-469a-a698-374c938d49a5\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Compute/cloudServices/cs2799?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MyNzk5P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5bf1c3e1-fd4d-4ada-b3ed-2f04bb3a2ef1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2ea9a4fa-9c07-48b3-9f84-9c83c0dd791c" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;397,Microsoft.Compute/GetCloudService30Min;2580" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11935" + ], + "x-ms-correlation-request-id": [ + "b7782381-81bd-44c8-a58d-445018223d4f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220351Z:b7782381-81bd-44c8-a58d-445018223d4f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:03:51 GMT" + ], + "Content-Length": [ + "2018" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs2799\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR9802/providers/Microsoft.Compute/cloudServices/cs2799\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HelloWorldTest1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb6477\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe4673\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Network/publicIPAddresses/cspip7068\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"72752e87-794f-469a-a698-374c938d49a5\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Compute/cloudServices?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk4MDIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXM/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "72cd1e18-dddc-458b-8f1d-aa3b0cb184fa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "70fda2b0-9847-4c8c-8f0d-877eec1a1d14" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;396,Microsoft.Compute/GetCloudService30Min;2579" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11934" + ], + "x-ms-correlation-request-id": [ + "b24d126e-2e56-4f2f-8a98-9ba8343a160f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220352Z:b24d126e-2e56-4f2f-8a98-9ba8343a160f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:03:52 GMT" + ], + "Content-Length": [ + "4286" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"cs2799\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR9802/providers/Microsoft.Compute/cloudServices/cs2799\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HelloWorldTest1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb6477\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe4673\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Network/publicIPAddresses/cspip7068\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"72752e87-794f-469a-a698-374c938d49a5\"\r\n }\r\n },\r\n {\r\n \"name\": \"cs5847\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR9802/providers/Microsoft.Compute/cloudServices/cs5847\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HelloWorldTest1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb8706\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe2473\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Network/publicIPAddresses/cspip753\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"ab123e11-3c41-48a3-a71a-945bd5a9311a\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar1313?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjEzMTM/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar1313\": \"2021-03-13 22:03:52Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "549cb78e-b32b-4592-81fc-c52bbe564913" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "93" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "0a14bae8-ba80-4b30-a3d3-f8aab71e1714" + ], + "x-ms-correlation-request-id": [ + "0a14bae8-ba80-4b30-a3d3-f8aab71e1714" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220355Z:0a14bae8-ba80-4b30-a3d3-f8aab71e1714" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:03:55 GMT" + ], + "Content-Length": [ + "228" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar1313\",\r\n \"name\": \"crptestar1313\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar1313\": \"2021-03-13 22:03:52Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar1313?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjEzMTM/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "857f773a-0812-4a73-a6f4-e85b4326375e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "7e645189-e937-477c-9325-c0f0a01c83cb" + ], + "x-ms-correlation-request-id": [ + "7e645189-e937-477c-9325-c0f0a01c83cb" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220412Z:7e645189-e937-477c-9325-c0f0a01c83cb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:04:12 GMT" + ], + "Content-Length": [ + "180" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar1313\",\r\n \"name\": \"crptestar1313\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar1313/providers/Microsoft.Network/virtualNetworks/csvnet164?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9jc3ZuZXQxNjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"subnet5923\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "07a3db87-a4b9-4dcf-8ed0-009a0ae7d6ff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "297" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "970924c6-f792-4474-9283-88387ee7e9d0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/970924c6-f792-4474-9283-88387ee7e9d0?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "3cd3d76e-3750-476c-8510-1eaa1c41da30" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "a5a17d25-d499-4d42-b2c7-9c3d441652f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220401Z:3cd3d76e-3750-476c-8510-1eaa1c41da30" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:04:01 GMT" + ], + "Content-Length": [ + "1229" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"csvnet164\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar1313/providers/Microsoft.Network/virtualNetworks/csvnet164\",\r\n \"etag\": \"W/\\\"b73aab3d-2da2-42a4-bd3d-335700c44274\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"bc5a5ecd-4416-408c-84a9-db210cbe6f12\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet5923\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar1313/providers/Microsoft.Network/virtualNetworks/csvnet164/subnets/subnet5923\",\r\n \"etag\": \"W/\\\"b73aab3d-2da2-42a4-bd3d-335700c44274\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/970924c6-f792-4474-9283-88387ee7e9d0?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzk3MDkyNGM2LWY3OTItNDQ3NC05MjgzLTg4Mzg3ZWU3ZTlkMD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "67434a97-5d15-4695-9610-7dacad7eed01" + ], + "x-ms-correlation-request-id": [ + "678d778c-4772-4caf-b60f-2dcace3f3b77" + ], + "x-ms-arm-service-request-id": [ + "a7c74874-89cb-4dba-8716-7399044b8c10" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220405Z:678d778c-4772-4caf-b60f-2dcace3f3b77" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:04:04 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar1313/providers/Microsoft.Network/virtualNetworks/csvnet164?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9jc3ZuZXQxNjQ/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"00e102a7-d53b-4822-856b-b88dbf0d01bb\"" + ], + "x-ms-request-id": [ + "5c017a3a-a460-4a15-8f74-9890e63c40e6" + ], + "x-ms-correlation-request-id": [ + "3ed241fd-e12e-4a94-9f9e-a6005caf3dfe" + ], + "x-ms-arm-service-request-id": [ + "2e1b882f-95d4-46cd-a164-a93d92d2c2cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220405Z:3ed241fd-e12e-4a94-9f9e-a6005caf3dfe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:04:05 GMT" + ], + "Content-Length": [ + "1231" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"csvnet164\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar1313/providers/Microsoft.Network/virtualNetworks/csvnet164\",\r\n \"etag\": \"W/\\\"00e102a7-d53b-4822-856b-b88dbf0d01bb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bc5a5ecd-4416-408c-84a9-db210cbe6f12\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet5923\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar1313/providers/Microsoft.Network/virtualNetworks/csvnet164/subnets/subnet5923\",\r\n \"etag\": \"W/\\\"00e102a7-d53b-4822-856b-b88dbf0d01bb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar1313/providers/Microsoft.Network/publicIPAddresses/cspip3931?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2NzcGlwMzkzMT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns4467\"\r\n }\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c86e9717-17f6-41ee-b18e-550377f37e91" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "163" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "b6d92866-e139-4437-a902-000ae8866008" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/b6d92866-e139-4437-a902-000ae8866008?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "1c4f1dd6-7c55-497d-9fa7-55c1f43c3b6b" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "7de41367-db46-4468-ad91-e5c1e59f5b3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220410Z:1c4f1dd6-7c55-497d-9fa7-55c1f43c3b6b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:04:10 GMT" + ], + "Content-Length": [ + "724" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cspip3931\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar1313/providers/Microsoft.Network/publicIPAddresses/cspip3931\",\r\n \"etag\": \"W/\\\"cb6f008e-7378-4cbd-8ab4-9c1fdab785ad\\\"\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"cd047ad4-d08f-496f-a7c5-97ab4c31e8d4\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns4467\",\r\n \"fqdn\": \"dns4467.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/b6d92866-e139-4437-a902-000ae8866008?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2I2ZDkyODY2LWUxMzktNDQzNy1hOTAyLTAwMGFlODg2NjAwOD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4d89bdfd-c885-452e-8caa-1ebeba59eb12" + ], + "x-ms-correlation-request-id": [ + "5250bb54-11ba-4f0e-9723-ffb656ddb93b" + ], + "x-ms-arm-service-request-id": [ + "12e58685-db9d-4e0a-bcda-928dd3792b0b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220411Z:5250bb54-11ba-4f0e-9723-ffb656ddb93b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:04:11 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar1313/providers/Microsoft.Network/publicIPAddresses/cspip3931?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2NzcGlwMzkzMT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"0a8b8928-6e04-4921-9720-0b4f1b170948\"" + ], + "x-ms-request-id": [ + "36ca9649-3833-4ae2-a77f-bc4e9b837671" + ], + "x-ms-correlation-request-id": [ + "615bf2e4-ae71-42b8-ac02-e0bd19a7bb31" + ], + "x-ms-arm-service-request-id": [ + "aad32e18-8acb-42c9-b174-691682a52ae4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220412Z:615bf2e4-ae71-42b8-ac02-e0bd19a7bb31" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:04:11 GMT" + ], + "Content-Length": [ + "725" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cspip3931\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar1313/providers/Microsoft.Network/publicIPAddresses/cspip3931\",\r\n \"etag\": \"W/\\\"0a8b8928-6e04-4921-9720-0b4f1b170948\\\"\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cd047ad4-d08f-496f-a7c5-97ab4c31e8d4\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns4467\",\r\n \"fqdn\": \"dns4467.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar1313/providers/Microsoft.Compute/cloudServices/cs1464?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MxNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"packageUrl\": \"https://saforcspkg8881.blob.core.windows.net/sascontainer/HelloWorldTest_WebRole_D2_V2.cspkg?sv=2017-04-17&sr=b&sig=Ig4X%2F89UfgPm5xcP8kbh%2BXmGlUUAY6sVp0EIxyqSy%2BY%3D&st=2021-03-12T21%3A55%3A42Z&se=2021-03-15T21%3A55%3A42Z&sp=rw\",\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HelloWorldTest1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb7976\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"lbfe4802\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar1313/providers/Microsoft.Network/publicIPAddresses/cspip3931\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "935647bc-e3e0-488d-8866-3f5e8280432a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2150" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/366dc606-186e-432e-9019-55a08a7bee40?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "366dc606-186e-432e-9019-55a08a7bee40" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;290" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "6f4051b9-aa68-45a4-a3df-b01a30d73d8f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220420Z:6f4051b9-aa68-45a4-a3df-b01a30d73d8f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:04:19 GMT" + ], + "Content-Length": [ + "2016" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs1464\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR1313/providers/Microsoft.Compute/cloudServices/cs1464\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HelloWorldTest1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb7976\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe4802\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar1313/providers/Microsoft.Network/publicIPAddresses/cspip3931\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"uniqueId\": \"db40e386-bddb-4928-8e7a-c57674baab81\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/366dc606-186e-432e-9019-55a08a7bee40?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMzY2ZGM2MDYtMTg2ZS00MzJlLTkwMTktNTVhMDhhN2JlZTQwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "818dec6e-7109-44ec-b80b-ce15bd4c28e5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11933" + ], + "x-ms-correlation-request-id": [ + "fbe89b2d-c9a4-4fe1-bb4d-e2392350ffe5" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220450Z:fbe89b2d-c9a4-4fe1-bb4d-e2392350ffe5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:04:50 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:34:17.691228+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"366dc606-186e-432e-9019-55a08a7bee40\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/366dc606-186e-432e-9019-55a08a7bee40?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMzY2ZGM2MDYtMTg2ZS00MzJlLTkwMTktNTVhMDhhN2JlZTQwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "c0dc6742-90e5-4a78-ae7c-01df0510e11e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11932" + ], + "x-ms-correlation-request-id": [ + "55433529-a6d1-4118-a8b6-a999617b8658" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220521Z:55433529-a6d1-4118-a8b6-a999617b8658" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:05:20 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:34:17.691228+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"366dc606-186e-432e-9019-55a08a7bee40\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/366dc606-186e-432e-9019-55a08a7bee40?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMzY2ZGM2MDYtMTg2ZS00MzJlLTkwMTktNTVhMDhhN2JlZTQwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "5e795747-417d-47c8-becb-35059f16d007" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11931" + ], + "x-ms-correlation-request-id": [ + "128211c7-c4cc-4265-a098-028cf115f221" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220551Z:128211c7-c4cc-4265-a098-028cf115f221" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:05:51 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:34:17.691228+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"366dc606-186e-432e-9019-55a08a7bee40\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/366dc606-186e-432e-9019-55a08a7bee40?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMzY2ZGM2MDYtMTg2ZS00MzJlLTkwMTktNTVhMDhhN2JlZTQwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "bd01955b-0440-4303-8772-f82f742b1af9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11930" + ], + "x-ms-correlation-request-id": [ + "d3f7eaf8-d617-4375-970f-b2ba9ac0a64f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220621Z:d3f7eaf8-d617-4375-970f-b2ba9ac0a64f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:06:21 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:34:17.691228+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"366dc606-186e-432e-9019-55a08a7bee40\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/366dc606-186e-432e-9019-55a08a7bee40?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMzY2ZGM2MDYtMTg2ZS00MzJlLTkwMTktNTVhMDhhN2JlZTQwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "dd512e5f-dd50-438e-8c4d-9fc423f76c1e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11929" + ], + "x-ms-correlation-request-id": [ + "94994865-f050-4141-9962-4235b3d5a225" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220652Z:94994865-f050-4141-9962-4235b3d5a225" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:06:51 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:34:17.691228+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"366dc606-186e-432e-9019-55a08a7bee40\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/366dc606-186e-432e-9019-55a08a7bee40?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMzY2ZGM2MDYtMTg2ZS00MzJlLTkwMTktNTVhMDhhN2JlZTQwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "f8ba1bfa-e863-4465-8336-129f5bdd44d0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11928" + ], + "x-ms-correlation-request-id": [ + "40046fba-5cf9-41f8-a18c-df14beed9cca" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220722Z:40046fba-5cf9-41f8-a18c-df14beed9cca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:07:22 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:34:17.691228+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"366dc606-186e-432e-9019-55a08a7bee40\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/366dc606-186e-432e-9019-55a08a7bee40?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMzY2ZGM2MDYtMTg2ZS00MzJlLTkwMTktNTVhMDhhN2JlZTQwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "35e3eefd-6dca-43fe-8c89-6563d20755f7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11927" + ], + "x-ms-correlation-request-id": [ + "73e8d472-e33b-49ec-8e23-9160bf95c1a7" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220752Z:73e8d472-e33b-49ec-8e23-9160bf95c1a7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:07:52 GMT" + ], + "Content-Length": [ + "183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:34:17.691228+05:30\",\r\n \"endTime\": \"2021-03-14T03:37:33.2235733+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"366dc606-186e-432e-9019-55a08a7bee40\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar1313/providers/Microsoft.Compute/cloudServices/cs1464?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MxNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "39cbe702-decb-4f42-b5d6-a77b8d75e07b" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;397,Microsoft.Compute/GetCloudService30Min;2576" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11926" + ], + "x-ms-correlation-request-id": [ + "6e105807-e6d3-4471-915d-571e1bb7f73b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220752Z:6e105807-e6d3-4471-915d-571e1bb7f73b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:07:52 GMT" + ], + "Content-Length": [ + "2017" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs1464\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR1313/providers/Microsoft.Compute/cloudServices/cs1464\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HelloWorldTest1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb7976\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe4802\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar1313/providers/Microsoft.Network/publicIPAddresses/cspip3931\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"db40e386-bddb-4928-8e7a-c57674baab81\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar1313/providers/Microsoft.Compute/cloudServices/cs1464?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjEzMTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MxNDY0P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5810ac8c-6fc6-4ef6-a425-16cb89fd93fe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "aaa3fddc-06de-4440-ad7e-bb6f5253775e" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;396,Microsoft.Compute/GetCloudService30Min;2575" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11925" + ], + "x-ms-correlation-request-id": [ + "43cd9876-aa81-4519-95ac-34eaaecd9b73" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220753Z:43cd9876-aa81-4519-95ac-34eaaecd9b73" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:07:52 GMT" + ], + "Content-Length": [ + "2017" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs1464\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR1313/providers/Microsoft.Compute/cloudServices/cs1464\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HelloWorldTest1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb7976\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe4802\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar1313/providers/Microsoft.Network/publicIPAddresses/cspip3931\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"db40e386-bddb-4928-8e7a-c57674baab81\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/cloudServices?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9jbG91ZFNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "407695a6-cc41-4908-8967-78be18d45374" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "5068e33c-cbbd-4bf8-8e4b-3d72a5a94ad9", + "f6a35a09-c0c9-4776-b3ef-48651aa908e0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11924" + ], + "x-ms-request-id": [ + "c51aab81-174b-46ec-8c7b-83f3ed8893f5" + ], + "x-ms-correlation-request-id": [ + "c51aab81-174b-46ec-8c7b-83f3ed8893f5" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220753Z:c51aab81-174b-46ec-8c7b-83f3ed8893f5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:07:53 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "8629" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"cs1464\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR1313/providers/Microsoft.Compute/cloudServices/cs1464\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HelloWorldTest1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb7976\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe4802\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar1313/providers/Microsoft.Network/publicIPAddresses/cspip3931\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"db40e386-bddb-4928-8e7a-c57674baab81\"\r\n }\r\n },\r\n {\r\n \"name\": \"cs2799\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR9802/providers/Microsoft.Compute/cloudServices/cs2799\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HelloWorldTest1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb6477\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe4673\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Network/publicIPAddresses/cspip7068\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"72752e87-794f-469a-a698-374c938d49a5\"\r\n }\r\n },\r\n {\r\n \"name\": \"cs3787\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR4517/providers/Microsoft.Compute/cloudServices/cs3787\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": []\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb1971\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe6793\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar4517/providers/Microsoft.Network/publicIPAddresses/cspip1856\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"uniqueId\": \"441b12bb-d4a4-4115-bede-f4855d82d189\"\r\n }\r\n },\r\n {\r\n \"name\": \"cs4997\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR6260/providers/Microsoft.Compute/cloudServices/cs4997\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb9488\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe2391\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6260/providers/Microsoft.Network/publicIPAddresses/cspip9446\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Failed\",\r\n \"uniqueId\": \"fbf30441-4724-4aad-8df6-51be19856916\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/cloudServices?api-version=2021-03-01&%24skiptoken=lY7NSsQwGACfxSDe0qRpbNrCIktZvChIWx%2fgS5pqqE1Cfoq47Lvbo1fvw8xckdXf6cXYNaLuii7ncXofGerQZ0o%2bdoRsYOFDb9qmAn5y0IVyW8d5RWKWUQXjk3E2EsraWrR0xpwJhXmjAEtGOW6kYK2Uc1MLSnxwu5l1iOTVqOCiW1LRu83npIn6cnkeddiN0vEJvMH7AR7uE6OsxLTCtHy4j%2bsRdKu2J7kAtCBKXHF1BGsBGDSXGMqqXpiEtgK4I%2bP%2fJwcdXQ5KPweXfST98DZdxuk8tA1lpP97SfrxseEC3W6%2f\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/cloudServices?api-version=2021-03-01&%24skiptoken=lY7NSsQwGACfxSDe0qRpbNrCIktZvChIWx%2fgS5pqqE1Cfoq47Lvbo1fvw8xckdXf6cXYNaLuii7ncXofGerQZ0o%2bdoRsYOFDb9qmAn5y0IVyW8d5RWKWUQXjk3E2EsraWrR0xpwJhXmjAEtGOW6kYK2Uc1MLSnxwu5l1iOTVqOCiW1LRu83npIn6cnkeddiN0vEJvMH7AR7uE6OsxLTCtHy4j%2bsRdKu2J7kAtCBKXHF1BGsBGDSXGMqqXpiEtgK4I%2bP%2fJwcdXQ5KPweXfST98DZdxuk8tA1lpP97SfrxseEC3W6%2f", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9jbG91ZFNlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDEmJTI0c2tpcHRva2VuPWxZN05Tc1F3R0FDZnhTRGUwcVJwYk5yQ0lrdFp2Q2hJV3glMmZnUzVwcXFFMUNmb3E0N0x2Ym8xZnZ3OHhja2RYZjZjWFlOYUx1aWk3bmNYb2ZHZXJRWjBvJTJiZG9Sc1lPRkRiOXFtQW41eTBJVnlXOGQ1UldLV1VRWGprM0UyRXNyYVdyUjB4cHdKaFhtakFFdEdPVzZrWUsyVWMxTUxTbnh3dTVsMWlPVFZxT0NpVzFMUnU4M25wSW42Y25rZWRkaU4wdkVKdk1IN0FSN3VFNk9zeExUQ3RIeTRqJTJic1JkS3UySjdrQXRDQktYSEYxQkdzQkdEU1hHTXFxWHBpRXRnSzRJJTJiUCUyZkp3Y2RYUTVLUHdlWGZTVDk4RFpkeHVrOHRBMWxwUDk3U2ZyeHNlRUMzVzYlMmY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9166a407-6707-479c-8314-c289aa43f819" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-original-request-ids": [ + "2ad99983-4795-48e6-82ba-c44a657843c0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11923" + ], + "x-ms-request-id": [ + "1e0a33e4-887f-452a-b8c9-380f378f89a9" + ], + "x-ms-correlation-request-id": [ + "1e0a33e4-887f-452a-b8c9-380f378f89a9" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220753Z:1e0a33e4-887f-452a-b8c9-380f378f89a9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:07:53 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1807" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"cs5847\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR9802/providers/Microsoft.Compute/cloudServices/cs5847\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HelloWorldTest1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb8706\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe2473\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9802/providers/Microsoft.Network/publicIPAddresses/cspip753\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"ab123e11-3c41-48a3-a71a-945bd5a9311a\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar9802?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rhcjk4MDI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8a93952a-b223-4e97-8982-513f63debabc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI5ODAyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-request-id": [ + "3bb4f17e-0d76-4d87-ac4c-d3d9b987aa62" + ], + "x-ms-correlation-request-id": [ + "3bb4f17e-0d76-4d87-ac4c-d3d9b987aa62" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220758Z:3bb4f17e-0d76-4d87-ac4c-d3d9b987aa62" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:07:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar1313?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjEzMTM/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "daab0060-03a4-4688-a589-ee26ca11ee5d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxMzEzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14997" + ], + "x-ms-request-id": [ + "73ec668c-1dda-486d-b259-381f0b8d6687" + ], + "x-ms-correlation-request-id": [ + "73ec668c-1dda-486d-b259-381f0b8d6687" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220800Z:73ec668c-1dda-486d-b259-381f0b8d6687" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:08:00 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + } + ], + "Names": { + "Test_ListCloudServicesOperation": [ + "crptestar9802", + "crptestar1313", + "cs5847", + "cs2799", + "cs1464", + "cspip753", + "csvnet6943", + "subnet207", + "dns834", + "lb8706", + "lbfe2473", + "cspip7068", + "csvnet7426", + "subnet5170", + "dns5554", + "lb6477", + "lbfe4673", + "cspip3931", + "csvnet164", + "subnet5923", + "dns4467", + "lb7976", + "lbfe4802" + ], + "CreateCspkgSasUrl": [ + "saforcspkg8881", + "asforcspkg895" + ] + }, + "Variables": { + "SubscriptionId": "0296790d-427c-48ca-b204-8b729bbd8670" + } +} \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceRoleInstanceTests/Test_CloudServiceRoleInstanceOperations.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceRoleInstanceTests/Test_CloudServiceRoleInstanceOperations.json new file mode 100644 index 0000000000000..e2eea57192131 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceRoleInstanceTests/Test_CloudServiceRoleInstanceOperations.json @@ -0,0 +1,3532 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar6270?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjYyNzA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar6270\": \"2021-03-22 05:23:05Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ec722b04-6954-4826-a19e-3fd0b9f4b3da" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "93" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "d31fbcba-3a3d-4b5c-995c-bad808ad4a60" + ], + "x-ms-correlation-request-id": [ + "d31fbcba-3a3d-4b5c-995c-bad808ad4a60" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T052309Z:d31fbcba-3a3d-4b5c-995c-bad808ad4a60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:23:08 GMT" + ], + "Content-Length": [ + "228" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270\",\r\n \"name\": \"crptestar6270\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar6270\": \"2021-03-22 05:23:05Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar6270?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjYyNzA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar6270\": \"2021-03-22 05:23:26Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ab97537b-d0e8-4431-ae94-cf243e671c37" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "93" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "be4020c0-0434-4d8f-8b5c-ef760560f505" + ], + "x-ms-correlation-request-id": [ + "be4020c0-0434-4d8f-8b5c-ef760560f505" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T052328Z:be4020c0-0434-4d8f-8b5c-ef760560f505" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:23:27 GMT" + ], + "Content-Length": [ + "228" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270\",\r\n \"name\": \"crptestar6270\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar6270\": \"2021-03-22 05:23:26Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar6270?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjYyNzA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "131c43b5-d316-4981-853b-aea4502e5bbf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "f892f54f-bef2-4450-b7a9-2cfc073fa99c" + ], + "x-ms-correlation-request-id": [ + "f892f54f-bef2-4450-b7a9-2cfc073fa99c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T052700Z:f892f54f-bef2-4450-b7a9-2cfc073fa99c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:27:00 GMT" + ], + "Content-Length": [ + "180" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270\",\r\n \"name\": \"crptestar6270\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270/providers/Microsoft.Network/virtualNetworks/csvnet9171?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYyNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9jc3ZuZXQ5MTcxP2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"subnet2282\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "651e0f73-67db-41b0-bd98-79d05f7c8cd6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "297" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "3e1fc536-8564-4812-bdd5-2ca6f7fc3229" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/3e1fc536-8564-4812-bdd5-2ca6f7fc3229?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "a284e485-5179-4e35-b863-ac21c055401a" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "13fec060-71ca-46b4-b1f6-cef86551a819" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T052317Z:a284e485-5179-4e35-b863-ac21c055401a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:23:17 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"csvnet9171\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270/providers/Microsoft.Network/virtualNetworks/csvnet9171\",\r\n \"etag\": \"W/\\\"f06dadcc-9b57-4210-a0fa-ddb0fca863ee\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"242087b6-fbf5-49d0-b3df-8f0b1327a91e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet2282\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270/providers/Microsoft.Network/virtualNetworks/csvnet9171/subnets/subnet2282\",\r\n \"etag\": \"W/\\\"f06dadcc-9b57-4210-a0fa-ddb0fca863ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/3e1fc536-8564-4812-bdd5-2ca6f7fc3229?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzNlMWZjNTM2LTg1NjQtNDgxMi1iZGQ1LTJjYTZmN2ZjMzIyOT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6f475eff-80c4-4832-ae0c-a4342bba4f6b" + ], + "x-ms-correlation-request-id": [ + "1d64e648-cef8-4b43-af02-9fb15d40b78f" + ], + "x-ms-arm-service-request-id": [ + "d7e80097-17b0-4e43-8a0c-070ded18eec7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T052320Z:1d64e648-cef8-4b43-af02-9fb15d40b78f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:23:20 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270/providers/Microsoft.Network/virtualNetworks/csvnet9171?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYyNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9jc3ZuZXQ5MTcxP2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"7b2d86ad-3ed2-4b7a-805e-519a430e67d9\"" + ], + "x-ms-request-id": [ + "d77e741e-9a33-4849-99a3-bb315129b03d" + ], + "x-ms-correlation-request-id": [ + "9040038a-e5ed-4bf5-93ce-973193d9edc1" + ], + "x-ms-arm-service-request-id": [ + "8aaa0072-81f2-4e01-b884-c7f817e3cc50" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T052320Z:9040038a-e5ed-4bf5-93ce-973193d9edc1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:23:20 GMT" + ], + "Content-Length": [ + "1234" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"csvnet9171\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270/providers/Microsoft.Network/virtualNetworks/csvnet9171\",\r\n \"etag\": \"W/\\\"7b2d86ad-3ed2-4b7a-805e-519a430e67d9\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"242087b6-fbf5-49d0-b3df-8f0b1327a91e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet2282\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270/providers/Microsoft.Network/virtualNetworks/csvnet9171/subnets/subnet2282\",\r\n \"etag\": \"W/\\\"7b2d86ad-3ed2-4b7a-805e-519a430e67d9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270/providers/Microsoft.Network/publicIPAddresses/cspip6477?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYyNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2NzcGlwNjQ3Nz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns1749\"\r\n }\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "406d9f2a-70e7-42f2-a45c-d90d6e1741d3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "163" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "ebf131f1-901f-4e94-ac70-d7c3a8ea2d0f" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/ebf131f1-901f-4e94-ac70-d7c3a8ea2d0f?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "a232a4a3-17dd-40e5-8831-4d2f278b050c" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "85369efe-fc63-41ee-9626-96ccc95cf5e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T052325Z:a232a4a3-17dd-40e5-8831-4d2f278b050c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:23:25 GMT" + ], + "Content-Length": [ + "724" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cspip6477\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270/providers/Microsoft.Network/publicIPAddresses/cspip6477\",\r\n \"etag\": \"W/\\\"e05be19d-b9ba-4d6d-9bab-0453efb4d834\\\"\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"50951684-40dd-4c1d-8515-1afea2860c03\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns1749\",\r\n \"fqdn\": \"dns1749.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/ebf131f1-901f-4e94-ac70-d7c3a8ea2d0f?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2ViZjEzMWYxLTkwMWYtNGU5NC1hYzcwLWQ3YzNhOGVhMmQwZj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d062530d-750c-45bf-a0f6-0fd390cb739f" + ], + "x-ms-correlation-request-id": [ + "1f308cf3-7725-4e7b-b866-384e94583d62" + ], + "x-ms-arm-service-request-id": [ + "cd781f08-15a7-417f-b0b8-c638e7316d3a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T052326Z:1f308cf3-7725-4e7b-b866-384e94583d62" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:23:26 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270/providers/Microsoft.Network/publicIPAddresses/cspip6477?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYyNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2NzcGlwNjQ3Nz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"2772d0e4-86cb-4859-a133-5ce182755898\"" + ], + "x-ms-request-id": [ + "17330035-d095-421b-87f1-4c987a4a2afc" + ], + "x-ms-correlation-request-id": [ + "d396c11b-f26c-431a-9a49-4adfe928045d" + ], + "x-ms-arm-service-request-id": [ + "dbfc8cd6-bad9-4f88-9909-a9f69a01728e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T052326Z:d396c11b-f26c-431a-9a49-4adfe928045d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:23:26 GMT" + ], + "Content-Length": [ + "725" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cspip6477\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270/providers/Microsoft.Network/publicIPAddresses/cspip6477\",\r\n \"etag\": \"W/\\\"2772d0e4-86cb-4859-a133-5ce182755898\\\"\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"50951684-40dd-4c1d-8515-1afea2860c03\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns1749\",\r\n \"fqdn\": \"dns1749.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270/providers/Microsoft.Storage/storageAccounts/saforcspkg9560?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYyNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmNzcGtnOTU2MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "78a13b3d-70e4-4e7b-bb3b-455749c02403" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "89" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Storage/locations/eastus2/asyncoperations/042a0529-4708-4a39-94a8-ed1a6e180feb?monitor=true&api-version=2015-06-15" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "042a0529-4708-4a39-94a8-ed1a6e180feb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "352d1cd5-8384-4b95-8bf6-30fc95eb3d98" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T052335Z:352d1cd5-8384-4b95-8bf6-30fc95eb3d98" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:23:35 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Storage/locations/eastus2/asyncoperations/042a0529-4708-4a39-94a8-ed1a6e180feb?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvMDQyYTA1MjktNDcwOC00YTM5LTk0YTgtZWQxYTZlMTgwZmViP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "622f0b0c-d21b-46f7-998e-b4406db22a38" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "6ceec96c-6a1e-447b-bb2a-d720381076e4" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T052352Z:6ceec96c-6a1e-447b-bb2a-d720381076e4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:23:52 GMT" + ], + "Content-Length": [ + "89" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYyNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0a6eda39-6c72-4cea-b45b-eae77ea11da8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b1fd68a6-fc8f-4cad-8391-a39cc7c13d63" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "ae8c4e9c-ec1d-44a4-8837-b4da8061b866" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T052403Z:ae8c4e9c-ec1d-44a4-8837-b4da8061b866" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:24:02 GMT" + ], + "Content-Length": [ + "747" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270/providers/Microsoft.Storage/storageAccounts/saforcspkg9560\",\r\n \"name\": \"saforcspkg9560\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-03-22T05:23:34.912474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforcspkg9560.blob.core.windows.net/\",\r\n \"queue\": \"https://saforcspkg9560.queue.core.windows.net/\",\r\n \"table\": \"https://saforcspkg9560.table.core.windows.net/\",\r\n \"file\": \"https://saforcspkg9560.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270/providers/Microsoft.Storage/storageAccounts/saforcspkg9560?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYyNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmNzcGtnOTU2MD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "73bf1c30-edc2-444e-a1a5-e9bb26f93a5b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "91bf9b10-589f-4f6b-995d-9dc3e8db8cd6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "736bb3ec-5d8d-45d6-8e36-a364f6dbfc33" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T052403Z:736bb3ec-5d8d-45d6-8e36-a364f6dbfc33" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:24:02 GMT" + ], + "Content-Length": [ + "735" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270/providers/Microsoft.Storage/storageAccounts/saforcspkg9560\",\r\n \"name\": \"saforcspkg9560\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-03-22T05:23:34.912474Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforcspkg9560.blob.core.windows.net/\",\r\n \"queue\": \"https://saforcspkg9560.queue.core.windows.net/\",\r\n \"table\": \"https://saforcspkg9560.table.core.windows.net/\",\r\n \"file\": \"https://saforcspkg9560.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270/providers/Microsoft.Storage/storageAccounts/saforcspkg9560/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYyNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmNzcGtnOTU2MC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0c43c651-6be7-4f84-8514-50a767e6b033" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d55037e9-4623-440f-94d5-d0fc5ed8bf43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "385bc03f-9cb9-43cd-af0a-e5c201a7bcbe" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T052403Z:385bc03f-9cb9-43cd-af0a-e5c201a7bcbe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:24:02 GMT" + ], + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"nXgyxd5cyjiDrQghQnF+YJIweUIt5mJbDwURQjhaVZOo+wb98KAh+MTlhCa7p2zHjiG3jF2IaaYEigS7NucLWw==\",\r\n \"key2\": \"i5k1v3HWMAD2isvKB1p/q8wazLgYqB02Vh9LCY9GKhYYC1+3BlMqNs8Guo3RoiN0Lkp5od9nESKPZyOEvv38Dw==\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270/providers/Microsoft.Compute/cloudServices/cs203?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYyNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MyMDM/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"packageUrl\": \"https://saforcspkg9560.blob.core.windows.net/sascontainer/HelloWorldTest_WebRole_D2_V2.cspkg?sv=2017-04-17&sr=b&sig=EpdiIx5oOmWo9JOnecZ1epiYFpqgKou%2BR6c27x8VpG8%3D&st=2021-03-21T05%3A26%3A57Z&se=2021-03-24T05%3A26%3A57Z&sp=rw\",\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HelloWorldTest1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb7715\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"lbfe1407\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270/providers/Microsoft.Network/publicIPAddresses/cspip6477\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "90abcc68-3c0f-4764-857f-a2831224f208" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2147" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/d3cf4131-c8b5-408b-931a-4d7fd5acdf45?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d3cf4131-c8b5-408b-931a-4d7fd5acdf45" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;295" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "0d6e46ab-a2ee-476b-8afb-e17157f4033d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T052709Z:0d6e46ab-a2ee-476b-8afb-e17157f4033d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:27:08 GMT" + ], + "Content-Length": [ + "2015" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs203\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR6270/providers/Microsoft.Compute/cloudServices/cs203\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HelloWorldTest1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb7715\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe1407\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270/providers/Microsoft.Network/publicIPAddresses/cspip6477\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"uniqueId\": \"65231fe0-0407-40f4-b51b-bd848f4331bb\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/d3cf4131-c8b5-408b-931a-4d7fd5acdf45?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZDNjZjQxMzEtYzhiNS00MDhiLTkzMWEtNGQ3ZmQ1YWNkZjQ1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "77680752-60c0-4f2f-8a7f-b7a1e277e020" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "23edb3dc-34d0-487e-bf65-16e6f2df2d14" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T052740Z:23edb3dc-34d0-487e-bf65-16e6f2df2d14" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:27:39 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T10:57:07.5187433+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d3cf4131-c8b5-408b-931a-4d7fd5acdf45\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/d3cf4131-c8b5-408b-931a-4d7fd5acdf45?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZDNjZjQxMzEtYzhiNS00MDhiLTkzMWEtNGQ3ZmQ1YWNkZjQ1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "839a9a67-d353-4bb0-abfc-47d8dc6bf51b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "a098a654-f6e8-4a9b-b6ee-03d8a0527610" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T052810Z:a098a654-f6e8-4a9b-b6ee-03d8a0527610" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:28:09 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T10:57:07.5187433+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d3cf4131-c8b5-408b-931a-4d7fd5acdf45\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/d3cf4131-c8b5-408b-931a-4d7fd5acdf45?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZDNjZjQxMzEtYzhiNS00MDhiLTkzMWEtNGQ3ZmQ1YWNkZjQ1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "514cb957-d020-4820-8e85-44f08b65cdb1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "d7271327-a371-4b95-ba0b-62b7129148db" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T052840Z:d7271327-a371-4b95-ba0b-62b7129148db" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:28:40 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T10:57:07.5187433+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d3cf4131-c8b5-408b-931a-4d7fd5acdf45\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/d3cf4131-c8b5-408b-931a-4d7fd5acdf45?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZDNjZjQxMzEtYzhiNS00MDhiLTkzMWEtNGQ3ZmQ1YWNkZjQ1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "165b24cb-eb75-4bbc-9963-50aaccd3fd72" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "49eafb72-ebb2-4022-98da-e7903490ec49" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T052910Z:49eafb72-ebb2-4022-98da-e7903490ec49" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:29:10 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T10:57:07.5187433+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d3cf4131-c8b5-408b-931a-4d7fd5acdf45\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/d3cf4131-c8b5-408b-931a-4d7fd5acdf45?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZDNjZjQxMzEtYzhiNS00MDhiLTkzMWEtNGQ3ZmQ1YWNkZjQ1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "9bc5ea42-0b3d-4648-ab8d-240af3771e5f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "c3da2636-ece3-4c8f-adbe-389d04389a66" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T052941Z:c3da2636-ece3-4c8f-adbe-389d04389a66" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:29:40 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T10:57:07.5187433+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d3cf4131-c8b5-408b-931a-4d7fd5acdf45\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/d3cf4131-c8b5-408b-931a-4d7fd5acdf45?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZDNjZjQxMzEtYzhiNS00MDhiLTkzMWEtNGQ3ZmQ1YWNkZjQ1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "7dcb0678-ccfa-4b13-843d-1f6304713bd3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "29a47122-7c64-431e-a667-b8e8b2bfade3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053011Z:29a47122-7c64-431e-a667-b8e8b2bfade3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:30:10 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T10:57:07.5187433+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d3cf4131-c8b5-408b-931a-4d7fd5acdf45\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/d3cf4131-c8b5-408b-931a-4d7fd5acdf45?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZDNjZjQxMzEtYzhiNS00MDhiLTkzMWEtNGQ3ZmQ1YWNkZjQ1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "de840f62-7c88-4a5e-9ca7-a3519a6a9172" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "9dc5532e-bfd3-480d-aa3a-43c2d548db81" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053041Z:9dc5532e-bfd3-480d-aa3a-43c2d548db81" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:30:40 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T10:57:07.5187433+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d3cf4131-c8b5-408b-931a-4d7fd5acdf45\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/d3cf4131-c8b5-408b-931a-4d7fd5acdf45?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZDNjZjQxMzEtYzhiNS00MDhiLTkzMWEtNGQ3ZmQ1YWNkZjQ1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "0a15bcd1-25f2-47e7-a5e2-ca571f2e9201" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "6f3256e9-6ad7-4ed5-b2cf-df5b60831033" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053112Z:6f3256e9-6ad7-4ed5-b2cf-df5b60831033" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:31:11 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T10:57:07.5187433+05:30\",\r\n \"endTime\": \"2021-03-22T11:01:02.8908976+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d3cf4131-c8b5-408b-931a-4d7fd5acdf45\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270/providers/Microsoft.Compute/cloudServices/cs203?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYyNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MyMDM/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fb67bbf3-ffd4-46e7-b472-f72878a528b9" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;395,Microsoft.Compute/GetCloudService30Min;2591" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "d72f9508-aa55-4e01-983b-e14327e65d04" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053112Z:d72f9508-aa55-4e01-983b-e14327e65d04" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:31:12 GMT" + ], + "Content-Length": [ + "2016" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs203\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR6270/providers/Microsoft.Compute/cloudServices/cs203\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HelloWorldTest1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb7715\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe1407\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270/providers/Microsoft.Network/publicIPAddresses/cspip6477\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"65231fe0-0407-40f4-b51b-bd848f4331bb\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270/providers/Microsoft.Compute/cloudServices/cs203?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYyNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MyMDM/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5d39c933-6821-4942-af25-0bb6c455b79a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b8fdf43e-c857-45f9-b4ca-ef0d242bdced" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;394,Microsoft.Compute/GetCloudService30Min;2590" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "e2e8b0c8-b094-47b0-a468-692e27f2be04" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053112Z:e2e8b0c8-b094-47b0-a468-692e27f2be04" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:31:12 GMT" + ], + "Content-Length": [ + "2016" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs203\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR6270/providers/Microsoft.Compute/cloudServices/cs203\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"HelloWorldTest1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb7715\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe1407\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270/providers/Microsoft.Network/publicIPAddresses/cspip6477\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"65231fe0-0407-40f4-b51b-bd848f4331bb\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270/providers/Microsoft.Compute/cloudServices/cs203/roleInstances/HelloWorldTest1_IN_0?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYyNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MyMDMvcm9sZUluc3RhbmNlcy9IZWxsb1dvcmxkVGVzdDFfSU5fMD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0bfcbae1-35e9-4b7b-9e6b-137a42894f2a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ee98a0b1-b8a0-4752-b81c-23b62284510e" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;393,Microsoft.Compute/GetCloudService30Min;2589" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "bb16694b-d139-4a88-b56b-786dbbceb06d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053113Z:bb16694b-d139-4a88-b56b-786dbbceb06d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:31:13 GMT" + ], + "Content-Length": [ + "641" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"HelloWorldTest1_IN_0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR6270/providers/Microsoft.Compute/cloudServices/cs203/roleInstances/HelloWorldTest1_IN_0\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR6270/providers/Microsoft.Compute/cloudServices/cs203/roleInstances/HelloWorldTest1_IN_0/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270/providers/Microsoft.Compute/cloudServices/cs203/roleInstances/HelloWorldTest1_IN_0?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYyNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MyMDMvcm9sZUluc3RhbmNlcy9IZWxsb1dvcmxkVGVzdDFfSU5fMD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5285846d-9475-45dd-9157-0603cfb22ad2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "645de85f-9159-4394-81a7-355a50cd0c85" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;391,Microsoft.Compute/GetCloudService30Min;2587" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "e44cb9a8-bc20-4cf9-8125-e2ad21a3eded" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053145Z:e44cb9a8-bc20-4cf9-8125-e2ad21a3eded" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:31:45 GMT" + ], + "Content-Length": [ + "641" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"HelloWorldTest1_IN_0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR6270/providers/Microsoft.Compute/cloudServices/cs203/roleInstances/HelloWorldTest1_IN_0\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR6270/providers/Microsoft.Compute/cloudServices/cs203/roleInstances/HelloWorldTest1_IN_0/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270/providers/Microsoft.Compute/cloudServices/cs203/roleInstances/HelloWorldTest1_IN_0?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYyNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MyMDMvcm9sZUluc3RhbmNlcy9IZWxsb1dvcmxkVGVzdDFfSU5fMD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "86340b1f-d032-4469-a48a-757b3a43062a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fde70c77-342d-47db-a2a9-46f2e1d5a202" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;390,Microsoft.Compute/GetCloudService30Min;2586" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "67635485-1287-4f7d-bbd0-a55eadcba52e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053216Z:67635485-1287-4f7d-bbd0-a55eadcba52e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:32:15 GMT" + ], + "Content-Length": [ + "641" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"HelloWorldTest1_IN_0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR6270/providers/Microsoft.Compute/cloudServices/cs203/roleInstances/HelloWorldTest1_IN_0\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR6270/providers/Microsoft.Compute/cloudServices/cs203/roleInstances/HelloWorldTest1_IN_0/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270/providers/Microsoft.Compute/cloudServices/cs203/roleInstances/HelloWorldTest1_IN_0?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYyNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MyMDMvcm9sZUluc3RhbmNlcy9IZWxsb1dvcmxkVGVzdDFfSU5fMD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9141e3fa-716e-46f0-86a5-dda4b1774366" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "205ca6e9-8ebe-4ffa-9809-1701a9fa6459" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;390,Microsoft.Compute/GetCloudService30Min;2585" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "f152516e-c9bb-4cc7-8e1a-b750c61951a2" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053247Z:f152516e-c9bb-4cc7-8e1a-b750c61951a2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:32:47 GMT" + ], + "Content-Length": [ + "641" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"HelloWorldTest1_IN_0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR6270/providers/Microsoft.Compute/cloudServices/cs203/roleInstances/HelloWorldTest1_IN_0\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR6270/providers/Microsoft.Compute/cloudServices/cs203/roleInstances/HelloWorldTest1_IN_0/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270/providers/Microsoft.Compute/cloudServices/cs203/roleInstances/HelloWorldTest1_IN_0/instanceView?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYyNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MyMDMvcm9sZUluc3RhbmNlcy9IZWxsb1dvcmxkVGVzdDFfSU5fMC9pbnN0YW5jZVZpZXc/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "35084e88-18e6-499d-a25d-841b3a989f9c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ccccf852-730c-415a-b8af-2f424b2409f8" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;392,Microsoft.Compute/GetCloudService30Min;2588" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "409f6b00-2b3c-427e-8375-1495c7ec0617" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053113Z:409f6b00-2b3c-427e-8375-1495c7ec0617" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:31:13 GMT" + ], + "Content-Length": [ + "289" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"privateId\": \"bf9b7a14-be4f-442b-8f6d-167278f0418f\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"RoleState/RoleStateStarted\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"RoleStateStarted\",\r\n \"message\": \"\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270/providers/Microsoft.Compute/cloudServices/cs203/roleInstances/HelloWorldTest1_IN_0/restart?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYyNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MyMDMvcm9sZUluc3RhbmNlcy9IZWxsb1dvcmxkVGVzdDFfSU5fMC9yZXN0YXJ0P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f8bec427-7e9d-44be-b34e-abdd49321b91" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/f2ca10de-ef4c-4fa1-a67c-ce51f41d8c31?monitor=true&api-version=2021-03-01" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/f2ca10de-ef4c-4fa1-a67c-ce51f41d8c31?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f2ca10de-ef4c-4fa1-a67c-ce51f41d8c31" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;297" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "15811545-7cfe-4ae3-bc4a-59a135f47133" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053114Z:15811545-7cfe-4ae3-bc4a-59a135f47133" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:31:14 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/f2ca10de-ef4c-4fa1-a67c-ce51f41d8c31?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZjJjYTEwZGUtZWY0Yy00ZmExLWE2N2MtY2U1MWY0MWQ4YzMxP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "242c83d7-80de-44bb-9673-c1fa9af9ba0f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "ea63c5d4-4d16-42cd-8853-ae2840091e85" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053145Z:ea63c5d4-4d16-42cd-8853-ae2840091e85" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:31:44 GMT" + ], + "Content-Length": [ + "183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:01:14.4383103+05:30\",\r\n \"endTime\": \"2021-03-22T11:01:24.704359+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f2ca10de-ef4c-4fa1-a67c-ce51f41d8c31\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/f2ca10de-ef4c-4fa1-a67c-ce51f41d8c31?monitor=true&api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZjJjYTEwZGUtZWY0Yy00ZmExLWE2N2MtY2U1MWY0MWQ4YzMxP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "d24cdcad-f2c4-441f-9d74-290d0263d859" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "00063207-a951-487e-a8a6-48a35e1355d0" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053145Z:00063207-a951-487e-a8a6-48a35e1355d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:31:44 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270/providers/Microsoft.Compute/cloudServices/cs203/roleInstances/HelloWorldTest1_IN_0/reimage?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYyNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MyMDMvcm9sZUluc3RhbmNlcy9IZWxsb1dvcmxkVGVzdDFfSU5fMC9yZWltYWdlP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "633a2f9f-4b92-457b-b5f6-8d0c313247c5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/ed14504b-540c-4a7c-94f8-8657ecd767c9?monitor=true&api-version=2021-03-01" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/ed14504b-540c-4a7c-94f8-8657ecd767c9?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ed14504b-540c-4a7c-94f8-8657ecd767c9" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;296" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "41deba84-49b3-406f-a969-666123413e8b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053145Z:41deba84-49b3-406f-a969-666123413e8b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:31:45 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/ed14504b-540c-4a7c-94f8-8657ecd767c9?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZWQxNDUwNGItNTQwYy00YTdjLTk0ZjgtODY1N2VjZDc2N2M5P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "565ac45c-0d36-4239-b754-fb52c3e60dbf" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "538d2d8c-35ed-4a61-937b-e075c6f68027" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053216Z:538d2d8c-35ed-4a61-937b-e075c6f68027" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:32:15 GMT" + ], + "Content-Length": [ + "183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:01:45.8146917+05:30\",\r\n \"endTime\": \"2021-03-22T11:01:56.111953+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ed14504b-540c-4a7c-94f8-8657ecd767c9\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/ed14504b-540c-4a7c-94f8-8657ecd767c9?monitor=true&api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZWQxNDUwNGItNTQwYy00YTdjLTk0ZjgtODY1N2VjZDc2N2M5P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "28df7f79-a861-453a-87a6-204d56c18f0f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "7ec0e1cf-6b20-4e91-9cf2-cbef17a082f6" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053216Z:7ec0e1cf-6b20-4e91-9cf2-cbef17a082f6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:32:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270/providers/Microsoft.Compute/cloudServices/cs203/roleInstances/HelloWorldTest1_IN_0/rebuild?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYyNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MyMDMvcm9sZUluc3RhbmNlcy9IZWxsb1dvcmxkVGVzdDFfSU5fMC9yZWJ1aWxkP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "28063577-2a13-4562-993f-72f9e51ff65d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/93fa5222-9fd7-4af4-a799-662e008d2108?monitor=true&api-version=2021-03-01" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/93fa5222-9fd7-4af4-a799-662e008d2108?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "93fa5222-9fd7-4af4-a799-662e008d2108" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;295" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "8a00ea18-e50e-40d9-be92-4031dc55f0e0" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053217Z:8a00ea18-e50e-40d9-be92-4031dc55f0e0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:32:16 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/93fa5222-9fd7-4af4-a799-662e008d2108?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvOTNmYTUyMjItOWZkNy00YWY0LWE3OTktNjYyZTAwOGQyMTA4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "b33733e4-e2b1-4bcb-85a3-6c154f07c2be" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "52228e64-ab0f-4d0e-9ca7-636c74d9e4ed" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053247Z:52228e64-ab0f-4d0e-9ca7-636c74d9e4ed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:32:47 GMT" + ], + "Content-Length": [ + "183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:02:16.925332+05:30\",\r\n \"endTime\": \"2021-03-22T11:02:27.1602053+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"93fa5222-9fd7-4af4-a799-662e008d2108\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/93fa5222-9fd7-4af4-a799-662e008d2108?monitor=true&api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvOTNmYTUyMjItOWZkNy00YWY0LWE3OTktNjYyZTAwOGQyMTA4P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "38e3d23d-cd79-481b-80b3-2296411c306d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "b05fc1ef-61d7-4ef7-8c10-5de14c363e83" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053247Z:b05fc1ef-61d7-4ef7-8c10-5de14c363e83" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:32:47 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270/providers/Microsoft.Compute/cloudServices/cs203/roleInstances/HelloWorldTest1_IN_0?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYyNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MyMDMvcm9sZUluc3RhbmNlcy9IZWxsb1dvcmxkVGVzdDFfSU5fMD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c80a7c32-728d-4fe2-87b4-9e7dae100b71" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/5725a1eb-3b7d-4113-b9cf-16821787f78c?monitor=true&api-version=2021-03-01" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/5725a1eb-3b7d-4113-b9cf-16821787f78c?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "5725a1eb-3b7d-4113-b9cf-16821787f78c" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;294" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "c08ef206-8e72-4125-b21a-9dbf42ef3bf9" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053248Z:c08ef206-8e72-4125-b21a-9dbf42ef3bf9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:32:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/5725a1eb-3b7d-4113-b9cf-16821787f78c?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNTcyNWExZWItM2I3ZC00MTEzLWI5Y2YtMTY4MjE3ODdmNzhjP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "e7c00e2f-20e4-469c-8309-05c5884c0aae" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "7d115409-55e9-4fe8-943b-679f90414252" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053318Z:7d115409-55e9-4fe8-943b-679f90414252" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:33:18 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:02:48.0360759+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5725a1eb-3b7d-4113-b9cf-16821787f78c\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/5725a1eb-3b7d-4113-b9cf-16821787f78c?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNTcyNWExZWItM2I3ZC00MTEzLWI5Y2YtMTY4MjE3ODdmNzhjP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "63fd4677-5146-4dc2-8403-0b13fe5dd3c5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-correlation-request-id": [ + "c72dd16d-19fe-4e4b-8eab-7e5f6c19f38e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053349Z:c72dd16d-19fe-4e4b-8eab-7e5f6c19f38e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:33:49 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:02:48.0360759+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5725a1eb-3b7d-4113-b9cf-16821787f78c\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/5725a1eb-3b7d-4113-b9cf-16821787f78c?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNTcyNWExZWItM2I3ZC00MTEzLWI5Y2YtMTY4MjE3ODdmNzhjP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "6d62dee5-7b4a-42a2-8b0b-6e61430c3d26" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-correlation-request-id": [ + "5e4eb80f-a571-4246-95a5-464a2f14f980" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053419Z:5e4eb80f-a571-4246-95a5-464a2f14f980" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:34:19 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:02:48.0360759+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5725a1eb-3b7d-4113-b9cf-16821787f78c\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/5725a1eb-3b7d-4113-b9cf-16821787f78c?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNTcyNWExZWItM2I3ZC00MTEzLWI5Y2YtMTY4MjE3ODdmNzhjP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "fde2f24a-8253-4a66-b9c1-835714c5fb49" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-correlation-request-id": [ + "5afe33b5-b678-4263-8843-ad5cb2d81560" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053450Z:5afe33b5-b678-4263-8843-ad5cb2d81560" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:34:49 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:02:48.0360759+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5725a1eb-3b7d-4113-b9cf-16821787f78c\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/5725a1eb-3b7d-4113-b9cf-16821787f78c?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNTcyNWExZWItM2I3ZC00MTEzLWI5Y2YtMTY4MjE3ODdmNzhjP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "f8edaab1-e01f-41e1-8239-0f4134ea69d7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-correlation-request-id": [ + "49cc299c-acdb-43e6-8d58-323a1a375454" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053520Z:49cc299c-acdb-43e6-8d58-323a1a375454" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:35:20 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:02:48.0360759+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5725a1eb-3b7d-4113-b9cf-16821787f78c\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/5725a1eb-3b7d-4113-b9cf-16821787f78c?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNTcyNWExZWItM2I3ZC00MTEzLWI5Y2YtMTY4MjE3ODdmNzhjP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "80b59ca0-1799-4f8d-9bbc-dbf4939102a8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "1cb05703-7a50-494d-a957-a11d0ea5a630" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053551Z:1cb05703-7a50-494d-a957-a11d0ea5a630" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:35:50 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:02:48.0360759+05:30\",\r\n \"endTime\": \"2021-03-22T11:05:39.5588304+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5725a1eb-3b7d-4113-b9cf-16821787f78c\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/5725a1eb-3b7d-4113-b9cf-16821787f78c?monitor=true&api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNTcyNWExZWItM2I3ZC00MTEzLWI5Y2YtMTY4MjE3ODdmNzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "f8adbcdc-9c26-441a-9a0c-a3a77530ff48" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-correlation-request-id": [ + "d0633a53-2756-4431-aa79-a3f9f2f86ebf" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053551Z:d0633a53-2756-4431-aa79-a3f9f2f86ebf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:35:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270/providers/Microsoft.Compute/cloudServices/cs203/roleInstances?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYyNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MyMDMvcm9sZUluc3RhbmNlcz9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "badec769-96a9-45fe-bcc5-aa178a36b920" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a5411426-13fa-4b1c-b5b6-5c7d333d7415" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;399,Microsoft.Compute/GetCloudService30Min;2586" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-correlation-request-id": [ + "b230d0fb-2e5e-4665-8145-e7f90a9a3e00" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053551Z:b230d0fb-2e5e-4665-8145-e7f90a9a3e00" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:35:51 GMT" + ], + "Content-Length": [ + "718" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"HelloWorldTest1_IN_1\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR6270/providers/Microsoft.Compute/cloudServices/cs203/roleInstances/HelloWorldTest1_IN_1\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR6270/providers/Microsoft.Compute/cloudServices/cs203/roleInstances/HelloWorldTest1_IN_1/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6270/providers/Microsoft.Compute/cloudServices/cs203?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYyNzAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MyMDM/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "22c9c2a0-b2f8-4a32-9e44-8d2847310619" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/994d3432-d25d-4fae-a050-ae012527dc77?monitor=true&api-version=2021-03-01" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/994d3432-d25d-4fae-a050-ae012527dc77?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "994d3432-d25d-4fae-a050-ae012527dc77" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;293" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "25fb1e92-cc4b-4507-9eb7-fc61ad7dfc90" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053554Z:25fb1e92-cc4b-4507-9eb7-fc61ad7dfc90" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:35:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/994d3432-d25d-4fae-a050-ae012527dc77?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvOTk0ZDM0MzItZDI1ZC00ZmFlLWEwNTAtYWUwMTI1MjdkYzc3P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "d0115bcb-9381-4919-9710-3e73aded65ac" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-correlation-request-id": [ + "2496dcdc-f5fa-45d1-b549-3fc4016860e5" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053624Z:2496dcdc-f5fa-45d1-b549-3fc4016860e5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:36:23 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:05:54.2937615+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"994d3432-d25d-4fae-a050-ae012527dc77\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/994d3432-d25d-4fae-a050-ae012527dc77?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvOTk0ZDM0MzItZDI1ZC00ZmFlLWEwNTAtYWUwMTI1MjdkYzc3P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "9b3ec85f-f7b9-4047-8774-05ffc3474868" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-correlation-request-id": [ + "b3625ac2-457e-4935-9e89-888c7f4c8f34" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053655Z:b3625ac2-457e-4935-9e89-888c7f4c8f34" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:36:54 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:05:54.2937615+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"994d3432-d25d-4fae-a050-ae012527dc77\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/994d3432-d25d-4fae-a050-ae012527dc77?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvOTk0ZDM0MzItZDI1ZC00ZmFlLWEwNTAtYWUwMTI1MjdkYzc3P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "2af41fc7-e38c-4186-bf49-843c566be741" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-correlation-request-id": [ + "1b73fb48-0267-4884-882b-5b8be5fc4861" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053725Z:1b73fb48-0267-4884-882b-5b8be5fc4861" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:37:24 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:05:54.2937615+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"994d3432-d25d-4fae-a050-ae012527dc77\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/994d3432-d25d-4fae-a050-ae012527dc77?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvOTk0ZDM0MzItZDI1ZC00ZmFlLWEwNTAtYWUwMTI1MjdkYzc3P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "46119f4f-6fe3-461c-9887-01be66474506" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-correlation-request-id": [ + "ec5e431f-81cc-4fb3-9364-58deebee4edd" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053755Z:ec5e431f-81cc-4fb3-9364-58deebee4edd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:37:55 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T11:05:54.2937615+05:30\",\r\n \"endTime\": \"2021-03-22T11:07:35.0945196+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"994d3432-d25d-4fae-a050-ae012527dc77\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/994d3432-d25d-4fae-a050-ae012527dc77?monitor=true&api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvOTk0ZDM0MzItZDI1ZC00ZmFlLWEwNTAtYWUwMTI1MjdkYzc3P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "570eea0a-cd5a-49bc-ba26-df5ffb0c481d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-correlation-request-id": [ + "caaef966-756f-4888-bd00-4bd6de6d2a95" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053755Z:caaef966-756f-4888-bd00-4bd6de6d2a95" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:37:55 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar6270?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjYyNzA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f7391432-acff-4462-b1f4-427933a3e315" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI2MjcwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "461635ce-fcc4-478e-b20c-aad7274489a5" + ], + "x-ms-correlation-request-id": [ + "461635ce-fcc4-478e-b20c-aad7274489a5" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T053800Z:461635ce-fcc4-478e-b20c-aad7274489a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 05:37:59 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + } + ], + "Names": { + "Test_CloudServiceRoleInstanceOperations": [ + "crptestar6270", + "cs203", + "cspip6477", + "csvnet9171", + "subnet2282", + "dns1749", + "lb7715", + "lbfe1407" + ], + "CreateCspkgSasUrl": [ + "saforcspkg9560", + "asforcspkg1993" + ] + }, + "Variables": { + "SubscriptionId": "0296790d-427c-48ca-b204-8b729bbd8670" + } +} \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceScenarioTests/TestCloudServiceScenarioOperations.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceScenarioTests/TestCloudServiceScenarioOperations.json new file mode 100644 index 0000000000000..13214fcdcc289 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceScenarioTests/TestCloudServiceScenarioOperations.json @@ -0,0 +1,2013 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar9931?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rhcjk5MzE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar9931\": \"2021-03-13 23:03:53Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "56bf1f93-15c3-4623-9c80-d13b8511afe5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "93" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "3072ee36-bb9e-42b4-81bf-255c0ac4141e" + ], + "x-ms-correlation-request-id": [ + "3072ee36-bb9e-42b4-81bf-255c0ac4141e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T230355Z:3072ee36-bb9e-42b4-81bf-255c0ac4141e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:03:55 GMT" + ], + "Content-Length": [ + "228" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9931\",\r\n \"name\": \"crptestar9931\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar9931\": \"2021-03-13 23:03:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar9931?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rhcjk5MzE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar9931\": \"2021-03-13 23:04:11Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b119f73b-28c7-405e-867a-e1d571e101df" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "93" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "5add1888-1e7d-4a08-a23a-56e3f2e44dea" + ], + "x-ms-correlation-request-id": [ + "5add1888-1e7d-4a08-a23a-56e3f2e44dea" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T230413Z:5add1888-1e7d-4a08-a23a-56e3f2e44dea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:04:12 GMT" + ], + "Content-Length": [ + "228" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9931\",\r\n \"name\": \"crptestar9931\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar9931\": \"2021-03-13 23:04:11Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar9931?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rhcjk5MzE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d371ba43-1fa1-4ab5-a41c-988791502381" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "2cb8856e-0fab-4744-b6e0-933436a87fa6" + ], + "x-ms-correlation-request-id": [ + "2cb8856e-0fab-4744-b6e0-933436a87fa6" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T230525Z:2cb8856e-0fab-4744-b6e0-933436a87fa6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:05:25 GMT" + ], + "Content-Length": [ + "180" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9931\",\r\n \"name\": \"crptestar9931\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9931/providers/Microsoft.Network/virtualNetworks/csvnet5853?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9jc3ZuZXQ1ODUzP2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"subnet3493\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5a869b94-ec5e-471b-bb1d-0f2dc8f8aac4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "297" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "70e35313-9c17-4955-b1a6-5ae8b4ef5912" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/70e35313-9c17-4955-b1a6-5ae8b4ef5912?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "cb86a9c1-392e-4bc1-870e-f4143f03b339" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "05d95b51-47a0-428c-b060-a5b4d02e0025" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T230403Z:cb86a9c1-392e-4bc1-870e-f4143f03b339" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:04:02 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"csvnet5853\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9931/providers/Microsoft.Network/virtualNetworks/csvnet5853\",\r\n \"etag\": \"W/\\\"7d5a3e7e-d73c-4797-9877-b93fd2f05383\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"5a60c823-2ab9-4230-8311-791c42b0e92f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet3493\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9931/providers/Microsoft.Network/virtualNetworks/csvnet5853/subnets/subnet3493\",\r\n \"etag\": \"W/\\\"7d5a3e7e-d73c-4797-9877-b93fd2f05383\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/70e35313-9c17-4955-b1a6-5ae8b4ef5912?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzcwZTM1MzEzLTljMTctNDk1NS1iMWE2LTVhZThiNGVmNTkxMj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3de13f2f-85b6-46f6-a083-9b37bbcc2b74" + ], + "x-ms-correlation-request-id": [ + "5e1f4c46-aed4-42b9-9b12-f97967167165" + ], + "x-ms-arm-service-request-id": [ + "8427a049-2888-4b46-b2a5-2d30459fef58" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T230406Z:5e1f4c46-aed4-42b9-9b12-f97967167165" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:04:06 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9931/providers/Microsoft.Network/virtualNetworks/csvnet5853?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9jc3ZuZXQ1ODUzP2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"52d4ff89-8199-42c2-8517-02654fc96163\"" + ], + "x-ms-request-id": [ + "84c28378-06ee-4f2a-a5b0-ccfdb32d373d" + ], + "x-ms-correlation-request-id": [ + "deffccb0-fce2-4c37-b29e-943e94791164" + ], + "x-ms-arm-service-request-id": [ + "1d6c2f06-1a7d-4398-b0d9-2cd32e3cb7a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T230406Z:deffccb0-fce2-4c37-b29e-943e94791164" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:04:06 GMT" + ], + "Content-Length": [ + "1234" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"csvnet5853\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9931/providers/Microsoft.Network/virtualNetworks/csvnet5853\",\r\n \"etag\": \"W/\\\"52d4ff89-8199-42c2-8517-02654fc96163\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5a60c823-2ab9-4230-8311-791c42b0e92f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet3493\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9931/providers/Microsoft.Network/virtualNetworks/csvnet5853/subnets/subnet3493\",\r\n \"etag\": \"W/\\\"52d4ff89-8199-42c2-8517-02654fc96163\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9931/providers/Microsoft.Network/publicIPAddresses/cspip3961?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2NzcGlwMzk2MT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns8240\"\r\n }\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "94d5d57e-848f-463a-9447-daa1bd4d71e9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "163" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "95c2f2ef-010b-4b1d-8cd2-97fbf0e5d3f8" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/95c2f2ef-010b-4b1d-8cd2-97fbf0e5d3f8?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "dfdb726a-cdb2-4696-a5d0-4f284f4aba09" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "96858863-71b9-4793-ade4-5e32bca8f9c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T230410Z:dfdb726a-cdb2-4696-a5d0-4f284f4aba09" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:04:09 GMT" + ], + "Content-Length": [ + "724" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cspip3961\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9931/providers/Microsoft.Network/publicIPAddresses/cspip3961\",\r\n \"etag\": \"W/\\\"a8e6c928-1399-47d2-8e68-2ba2067bfda1\\\"\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e19d0ce5-22b5-40fe-847f-7a85466dd9b6\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns8240\",\r\n \"fqdn\": \"dns8240.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/95c2f2ef-010b-4b1d-8cd2-97fbf0e5d3f8?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzk1YzJmMmVmLTAxMGItNGIxZC04Y2QyLTk3ZmJmMGU1ZDNmOD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a1b56921-0977-47aa-b6b3-d38305dbc02c" + ], + "x-ms-correlation-request-id": [ + "fb86ee13-2076-486c-9a06-af2416ecd080" + ], + "x-ms-arm-service-request-id": [ + "42e3331c-90a4-471e-9f8a-54e601574118" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T230411Z:fb86ee13-2076-486c-9a06-af2416ecd080" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:04:10 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9931/providers/Microsoft.Network/publicIPAddresses/cspip3961?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2NzcGlwMzk2MT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"342feef6-15e7-4180-88f6-4580f0fc2c10\"" + ], + "x-ms-request-id": [ + "f2017743-8a78-4134-824a-6b22e5d3c9f4" + ], + "x-ms-correlation-request-id": [ + "260d8bd2-0c9b-48b8-8eeb-ade6f548878d" + ], + "x-ms-arm-service-request-id": [ + "81b940ec-f050-467c-92eb-3a4b37491d6a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T230411Z:260d8bd2-0c9b-48b8-8eeb-ade6f548878d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:04:11 GMT" + ], + "Content-Length": [ + "725" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cspip3961\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9931/providers/Microsoft.Network/publicIPAddresses/cspip3961\",\r\n \"etag\": \"W/\\\"342feef6-15e7-4180-88f6-4580f0fc2c10\\\"\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e19d0ce5-22b5-40fe-847f-7a85466dd9b6\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns8240\",\r\n \"fqdn\": \"dns8240.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9931/providers/Microsoft.Storage/storageAccounts/saforcspkg784?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmNzcGtnNzg0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a8d5b2e-cc82-4b4a-b401-3fa9f588a590" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "89" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Storage/locations/eastus2/asyncoperations/ada2db80-9d87-489d-b33f-9d9e6ce84cf0?monitor=true&api-version=2015-06-15" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "ada2db80-9d87-489d-b33f-9d9e6ce84cf0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "59da2053-b7c9-46cb-92f4-13ce27870d0f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T230422Z:59da2053-b7c9-46cb-92f4-13ce27870d0f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:04:21 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Storage/locations/eastus2/asyncoperations/ada2db80-9d87-489d-b33f-9d9e6ce84cf0?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvYWRhMmRiODAtOWQ4Ny00ODlkLWIzM2YtOWQ5ZTZjZTg0Y2YwP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d7bda948-cc07-4902-83e7-f520a656ef89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "5e3699f7-06d2-4273-a7ba-8aa068b3f398" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T230439Z:5e3699f7-06d2-4273-a7ba-8aa068b3f398" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:04:39 GMT" + ], + "Content-Length": [ + "89" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9931/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ade061a9-f5f3-4266-bbda-e3aac7e9f014" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b9552011-9fea-460b-a14a-3f11cbc42a79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "e646a5f0-7133-4979-a525-dabf9ffc85d3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T230449Z:e646a5f0-7133-4979-a525-dabf9ffc85d3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:04:49 GMT" + ], + "Content-Length": [ + "741" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9931/providers/Microsoft.Storage/storageAccounts/saforcspkg784\",\r\n \"name\": \"saforcspkg784\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-03-13T23:04:21.8379214Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforcspkg784.blob.core.windows.net/\",\r\n \"queue\": \"https://saforcspkg784.queue.core.windows.net/\",\r\n \"table\": \"https://saforcspkg784.table.core.windows.net/\",\r\n \"file\": \"https://saforcspkg784.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9931/providers/Microsoft.Storage/storageAccounts/saforcspkg784?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmNzcGtnNzg0P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f79748ea-1d5c-44d7-b191-4d550cd6ff21" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c5d87a13-ba9e-480d-87b3-f4dd3adf8508" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "fdcd63f6-d4aa-4149-9d00-4857ee6b769a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T230450Z:fdcd63f6-d4aa-4149-9d00-4857ee6b769a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:04:49 GMT" + ], + "Content-Length": [ + "729" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9931/providers/Microsoft.Storage/storageAccounts/saforcspkg784\",\r\n \"name\": \"saforcspkg784\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-03-13T23:04:21.8379214Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforcspkg784.blob.core.windows.net/\",\r\n \"queue\": \"https://saforcspkg784.queue.core.windows.net/\",\r\n \"table\": \"https://saforcspkg784.table.core.windows.net/\",\r\n \"file\": \"https://saforcspkg784.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9931/providers/Microsoft.Storage/storageAccounts/saforcspkg784/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmNzcGtnNzg0L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d61abab-91c6-47bf-9cbb-1ce67e617b94" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6425b975-c075-4976-bccb-48721c74712c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "a6c7b843-ce7a-465a-8ef9-8406ec6fd582" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T230450Z:a6c7b843-ce7a-465a-8ef9-8406ec6fd582" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:04:50 GMT" + ], + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"OMEABEzpvBimxeKFIwmdVNe/7zez7+TEfbfs//zHHIK9CWoMtP7Lm4GVkDsKr2nPUQgmGTjhHb0zQCrtYWKMlQ==\",\r\n \"key2\": \"py8b7rBER63lfdZnhF8SaX+LhJeELmO5GbzdMrahXooJEK+rtD8yGdaSQCVk61a4KtqvOIMGdAEMwc7E79+kXA==\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9931/providers/Microsoft.Compute/cloudServices/cs2978?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MyOTc4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"packageUrl\": \"https://saforcspkg784.blob.core.windows.net/sascontainer/TestCloudServiceMultiRole_WorkerRole1(Standard_D2_v2)(1)_WorkerRole2(Standard_D1_v2)(1)_WebRole1(Standard_A2_v2)(2).cspkg?sv=2017-04-17&sr=b&sig=dVXFPEH37DOlGjyCPw%2BZcpvdfF1K%2BXGBrTCFT1ZVcnU%3D&st=2021-03-12T23%3A05%3A23Z&se=2021-03-15T23%3A05%3A23Z&sp=rw\",\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb5953\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"lbfe5503\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9931/providers/Microsoft.Network/publicIPAddresses/cspip3961\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3d7ac06e-48ec-45ef-a831-e0dc46c6430e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3467" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/7c3e5992-98e9-4702-9905-457efea66143?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7c3e5992-98e9-4702-9905-457efea66143" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;291" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "25e707c4-3e98-47ff-a770-de68cf7f1d95" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T230532Z:25e707c4-3e98-47ff-a770-de68cf7f1d95" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:05:32 GMT" + ], + "Content-Length": [ + "3249" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs2978\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR9931/providers/Microsoft.Compute/cloudServices/cs2978\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb5953\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe5503\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9931/providers/Microsoft.Network/publicIPAddresses/cspip3961\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"uniqueId\": \"14ebd360-0c05-4ca7-b5c8-2fae42120163\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/7c3e5992-98e9-4702-9905-457efea66143?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvN2MzZTU5OTItOThlOS00NzAyLTk5MDUtNDU3ZWZlYTY2MTQzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "309919bc-1524-410b-a9f8-91474a4d1366" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "ca798c1e-27c2-4ee4-a14c-c4bf7874608d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T230603Z:ca798c1e-27c2-4ee4-a14c-c4bf7874608d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:06:03 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T04:35:30.2257938+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7c3e5992-98e9-4702-9905-457efea66143\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/7c3e5992-98e9-4702-9905-457efea66143?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvN2MzZTU5OTItOThlOS00NzAyLTk5MDUtNDU3ZWZlYTY2MTQzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "b16193d4-b972-429e-ac3e-836aea71c66d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "a55f8ca4-9a0a-4c2b-bf1a-9b02f36c9bfd" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T230633Z:a55f8ca4-9a0a-4c2b-bf1a-9b02f36c9bfd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:06:33 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T04:35:30.2257938+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7c3e5992-98e9-4702-9905-457efea66143\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/7c3e5992-98e9-4702-9905-457efea66143?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvN2MzZTU5OTItOThlOS00NzAyLTk5MDUtNDU3ZWZlYTY2MTQzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "de882446-5bea-4ee5-909e-e3c25b366f4e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "5fe7ecec-73c0-437e-83ae-eb93bbb691ab" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T230704Z:5fe7ecec-73c0-437e-83ae-eb93bbb691ab" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:07:03 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T04:35:30.2257938+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7c3e5992-98e9-4702-9905-457efea66143\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/7c3e5992-98e9-4702-9905-457efea66143?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvN2MzZTU5OTItOThlOS00NzAyLTk5MDUtNDU3ZWZlYTY2MTQzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "eeef9625-fd30-4def-9eca-131d6ff11567" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "ee1aafcb-a36b-4712-a2d1-fbe0ee217e6e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T230734Z:ee1aafcb-a36b-4712-a2d1-fbe0ee217e6e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:07:34 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T04:35:30.2257938+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7c3e5992-98e9-4702-9905-457efea66143\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/7c3e5992-98e9-4702-9905-457efea66143?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvN2MzZTU5OTItOThlOS00NzAyLTk5MDUtNDU3ZWZlYTY2MTQzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "6c3f32d7-e8c9-4f35-97cc-6bb7933a08e3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "dcd457b6-55df-44a8-8686-462340882770" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T230804Z:dcd457b6-55df-44a8-8686-462340882770" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:08:03 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T04:35:30.2257938+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7c3e5992-98e9-4702-9905-457efea66143\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/7c3e5992-98e9-4702-9905-457efea66143?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvN2MzZTU5OTItOThlOS00NzAyLTk5MDUtNDU3ZWZlYTY2MTQzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "4a0f9730-e6a6-4c37-aa9f-3e51b46c4329" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "2df6d91b-7eb0-4d66-b47f-ba51512f10a1" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T230834Z:2df6d91b-7eb0-4d66-b47f-ba51512f10a1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:08:34 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T04:35:30.2257938+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7c3e5992-98e9-4702-9905-457efea66143\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/7c3e5992-98e9-4702-9905-457efea66143?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvN2MzZTU5OTItOThlOS00NzAyLTk5MDUtNDU3ZWZlYTY2MTQzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "83f1067e-82f0-4bb6-812a-e01ddf8b43c2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "3986adaa-3762-4231-9b7c-70dd3b48ac66" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T230905Z:3986adaa-3762-4231-9b7c-70dd3b48ac66" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:09:05 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T04:35:30.2257938+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7c3e5992-98e9-4702-9905-457efea66143\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/7c3e5992-98e9-4702-9905-457efea66143?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvN2MzZTU5OTItOThlOS00NzAyLTk5MDUtNDU3ZWZlYTY2MTQzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "6568a840-e78f-4d49-ac2f-a81bf5f69d0f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "3e46c96d-eab4-453d-8c78-8ff4f7771ab9" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T230935Z:3e46c96d-eab4-453d-8c78-8ff4f7771ab9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:09:35 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T04:35:30.2257938+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7c3e5992-98e9-4702-9905-457efea66143\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/7c3e5992-98e9-4702-9905-457efea66143?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvN2MzZTU5OTItOThlOS00NzAyLTk5MDUtNDU3ZWZlYTY2MTQzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "d77afc04-8636-4c34-a4bd-dcfddee74a2c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "44c18b82-28ad-49eb-87a5-f54d290cc885" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T231005Z:44c18b82-28ad-49eb-87a5-f54d290cc885" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:10:04 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T04:35:30.2257938+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7c3e5992-98e9-4702-9905-457efea66143\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/7c3e5992-98e9-4702-9905-457efea66143?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvN2MzZTU5OTItOThlOS00NzAyLTk5MDUtNDU3ZWZlYTY2MTQzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "292e133d-5d03-4d18-98ac-c952d1623ba0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "88f4c4c4-da96-4497-9762-e8c6a6ee0908" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T231035Z:88f4c4c4-da96-4497-9762-e8c6a6ee0908" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:10:35 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T04:35:30.2257938+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7c3e5992-98e9-4702-9905-457efea66143\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/7c3e5992-98e9-4702-9905-457efea66143?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvN2MzZTU5OTItOThlOS00NzAyLTk5MDUtNDU3ZWZlYTY2MTQzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "875e5a79-182c-43d4-a28d-695abd00abd6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "c93b628c-950e-4a93-a35a-176926e376aa" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T231106Z:c93b628c-950e-4a93-a35a-176926e376aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:11:05 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T04:35:30.2257938+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7c3e5992-98e9-4702-9905-457efea66143\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/7c3e5992-98e9-4702-9905-457efea66143?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvN2MzZTU5OTItOThlOS00NzAyLTk5MDUtNDU3ZWZlYTY2MTQzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "dc65df59-16d3-4ccc-9e63-e519192d910e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "7cfeb639-1ea1-42b5-9e2a-c53598ad3dd1" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T231137Z:7cfeb639-1ea1-42b5-9e2a-c53598ad3dd1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:11:36 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T04:35:30.2257938+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7c3e5992-98e9-4702-9905-457efea66143\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/7c3e5992-98e9-4702-9905-457efea66143?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvN2MzZTU5OTItOThlOS00NzAyLTk5MDUtNDU3ZWZlYTY2MTQzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "0451aada-ed91-4fd1-acfb-551fdf48cfd4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "2a719fdc-f0a6-451d-9134-7b05ba03cb00" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T231207Z:2a719fdc-f0a6-451d-9134-7b05ba03cb00" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:12:07 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T04:35:30.2257938+05:30\",\r\n \"endTime\": \"2021-03-14T04:41:47.8714301+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7c3e5992-98e9-4702-9905-457efea66143\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9931/providers/Microsoft.Compute/cloudServices/cs2978?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MyOTc4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bbea18fe-06e2-4155-b072-4bbed80fc901" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;396,Microsoft.Compute/GetCloudService30Min;2576" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "9be6b331-7b6c-4c73-9e22-010c023af3b3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T231207Z:9be6b331-7b6c-4c73-9e22-010c023af3b3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:12:07 GMT" + ], + "Content-Length": [ + "3250" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs2978\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR9931/providers/Microsoft.Compute/cloudServices/cs2978\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb5953\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe5503\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9931/providers/Microsoft.Network/publicIPAddresses/cspip3961\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"14ebd360-0c05-4ca7-b5c8-2fae42120163\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9931/providers/Microsoft.Compute/cloudServices/cs2978?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3Rhcjk5MzEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MyOTc4P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ea1dd72-4aa9-4a44-86f4-c1f3d38d7156" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "23c5959b-013b-4d44-868d-afff877b58d8" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;395,Microsoft.Compute/GetCloudService30Min;2575" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "e2d3e62f-d114-475e-a30f-6340209cf1cf" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T231207Z:e2d3e62f-d114-475e-a30f-6340209cf1cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:12:07 GMT" + ], + "Content-Length": [ + "3250" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs2978\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR9931/providers/Microsoft.Compute/cloudServices/cs2978\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb5953\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe5503\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar9931/providers/Microsoft.Network/publicIPAddresses/cspip3961\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"14ebd360-0c05-4ca7-b5c8-2fae42120163\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar9931?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3Rhcjk5MzE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f581b2ca-88e6-4492-ad29-51af75f01d03" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI5OTMxLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "508ba824-d1c3-4278-8cc9-4832ee9618c8" + ], + "x-ms-correlation-request-id": [ + "508ba824-d1c3-4278-8cc9-4832ee9618c8" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T231212Z:508ba824-d1c3-4278-8cc9-4832ee9618c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:12:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + } + ], + "Names": { + "TestCloudServiceOperationsInternal": [ + "crptestar9931", + "cs2978", + "cspip3961", + "csvnet5853", + "subnet3493", + "dns8240", + "lb5953", + "lbfe5503" + ], + "CreateCspkgSasUrl": [ + "saforcspkg784", + "asforcspkg9308" + ] + }, + "Variables": { + "SubscriptionId": "0296790d-427c-48ca-b204-8b729bbd8670" + } +} \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceScenarioTests/TestCloudServiceScenarioOperations_DeleteCloudService.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceScenarioTests/TestCloudServiceScenarioOperations_DeleteCloudService.json new file mode 100644 index 0000000000000..3fc492c0a1074 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceScenarioTests/TestCloudServiceScenarioOperations_DeleteCloudService.json @@ -0,0 +1,2445 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar379?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjM3OT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar379\": \"2021-03-14 06:40:24Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dc062eeb-6e78-420e-b864-c07f2cf1e138" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "92" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "ad6d22fb-bcda-4998-9239-b8528efb75eb" + ], + "x-ms-correlation-request-id": [ + "ad6d22fb-bcda-4998-9239-b8528efb75eb" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064027Z:ad6d22fb-bcda-4998-9239-b8528efb75eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:40:26 GMT" + ], + "Content-Length": [ + "225" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar379\",\r\n \"name\": \"crptestar379\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar379\": \"2021-03-14 06:40:24Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar379?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjM3OT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar379\": \"2021-03-14 06:40:45Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c0e7ca43-1e66-40ec-a693-29b2f1393242" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "92" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "3fb9c8ab-be98-4704-8920-0d2ef965dae6" + ], + "x-ms-correlation-request-id": [ + "3fb9c8ab-be98-4704-8920-0d2ef965dae6" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064046Z:3fb9c8ab-be98-4704-8920-0d2ef965dae6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:40:46 GMT" + ], + "Content-Length": [ + "225" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar379\",\r\n \"name\": \"crptestar379\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar379\": \"2021-03-14 06:40:45Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar379?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjM3OT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ac832b2b-8f1e-4b54-b8ff-4072ac432236" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "e83e5772-be0d-4eb8-81fa-deae90ba098c" + ], + "x-ms-correlation-request-id": [ + "e83e5772-be0d-4eb8-81fa-deae90ba098c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064243Z:e83e5772-be0d-4eb8-81fa-deae90ba098c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:42:43 GMT" + ], + "Content-Length": [ + "178" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar379\",\r\n \"name\": \"crptestar379\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar379/providers/Microsoft.Network/virtualNetworks/csvnet6308?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2Nzdm5ldDYzMDg/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"subnet8243\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c83fe492-f2e8-4ce0-8228-09ca5482a2f2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "297" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "1202da37-21bb-4c1f-9f76-52603112b461" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/1202da37-21bb-4c1f-9f76-52603112b461?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "b6cb0b31-1ed5-495d-b6b7-3bd3e7e8ffe9" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "4be0c139-bec9-41fc-a67a-cf23e9df18ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064036Z:b6cb0b31-1ed5-495d-b6b7-3bd3e7e8ffe9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:40:35 GMT" + ], + "Content-Length": [ + "1230" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"csvnet6308\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar379/providers/Microsoft.Network/virtualNetworks/csvnet6308\",\r\n \"etag\": \"W/\\\"d7559e86-ee7a-4d47-baf7-f5eebe06f484\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3755bfab-e04c-4df4-86eb-068a3c9e1674\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet8243\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar379/providers/Microsoft.Network/virtualNetworks/csvnet6308/subnets/subnet8243\",\r\n \"etag\": \"W/\\\"d7559e86-ee7a-4d47-baf7-f5eebe06f484\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/1202da37-21bb-4c1f-9f76-52603112b461?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzEyMDJkYTM3LTIxYmItNGMxZi05Zjc2LTUyNjAzMTEyYjQ2MT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ab5f9f66-4d2b-45f1-93ec-6f150dd2f09a" + ], + "x-ms-correlation-request-id": [ + "77032883-4eef-49e9-bdb8-e63af7e2ec09" + ], + "x-ms-arm-service-request-id": [ + "c2159b61-582f-473f-893e-9400bca5d626" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064039Z:77032883-4eef-49e9-bdb8-e63af7e2ec09" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:40:38 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar379/providers/Microsoft.Network/virtualNetworks/csvnet6308?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2Nzdm5ldDYzMDg/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"a3b1c954-5d25-4289-a49a-e5a043b3ca0a\"" + ], + "x-ms-request-id": [ + "ea74b232-1347-4259-819c-bd108ac17e3e" + ], + "x-ms-correlation-request-id": [ + "821db99e-db2d-4c4b-b872-81848bd026b3" + ], + "x-ms-arm-service-request-id": [ + "31c6bd89-50c4-4e39-a0dc-44ebbb974116" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064039Z:821db99e-db2d-4c4b-b872-81848bd026b3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:40:39 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"csvnet6308\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar379/providers/Microsoft.Network/virtualNetworks/csvnet6308\",\r\n \"etag\": \"W/\\\"a3b1c954-5d25-4289-a49a-e5a043b3ca0a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3755bfab-e04c-4df4-86eb-068a3c9e1674\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet8243\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar379/providers/Microsoft.Network/virtualNetworks/csvnet6308/subnets/subnet8243\",\r\n \"etag\": \"W/\\\"a3b1c954-5d25-4289-a49a-e5a043b3ca0a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar379/providers/Microsoft.Network/publicIPAddresses/cspip3741?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NwaXAzNzQxP2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns8859\"\r\n }\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b769d8cb-7a1f-4095-89c7-502d0e64ea65" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "163" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "f50f790c-84e6-4a03-b3c8-9101fc2e2cc0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/f50f790c-84e6-4a03-b3c8-9101fc2e2cc0?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "c7fc257d-a1b0-4862-9a5e-1aca490a37c8" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "073ff64a-f108-40db-8191-55525375a60c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064043Z:c7fc257d-a1b0-4862-9a5e-1aca490a37c8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:40:43 GMT" + ], + "Content-Length": [ + "723" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cspip3741\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar379/providers/Microsoft.Network/publicIPAddresses/cspip3741\",\r\n \"etag\": \"W/\\\"58ae64b0-81e6-466a-9bb0-556f010399cc\\\"\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a7a6a6d6-f6b3-48c5-ab96-b60f7e09b48c\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns8859\",\r\n \"fqdn\": \"dns8859.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/f50f790c-84e6-4a03-b3c8-9101fc2e2cc0?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2Y1MGY3OTBjLTg0ZTYtNGEwMy1iM2M4LTkxMDFmYzJlMmNjMD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7a6ced6a-6128-4064-847e-183d6967f472" + ], + "x-ms-correlation-request-id": [ + "d3841a45-164c-47eb-aad0-620afb992989" + ], + "x-ms-arm-service-request-id": [ + "4d357928-b97e-4b76-98e9-ef1f2bb6d694" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064045Z:d3841a45-164c-47eb-aad0-620afb992989" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:40:44 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar379/providers/Microsoft.Network/publicIPAddresses/cspip3741?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3OS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvY3NwaXAzNzQxP2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"708ff228-ee73-4320-9dbf-445d0eb06791\"" + ], + "x-ms-request-id": [ + "cef432af-117b-4a18-8d34-750ccd3b4aac" + ], + "x-ms-correlation-request-id": [ + "fcd28111-270f-41ff-93c3-d56378ff5398" + ], + "x-ms-arm-service-request-id": [ + "59423f19-5431-4a21-80cd-7d616b3f78df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064045Z:fcd28111-270f-41ff-93c3-d56378ff5398" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:40:44 GMT" + ], + "Content-Length": [ + "724" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cspip3741\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar379/providers/Microsoft.Network/publicIPAddresses/cspip3741\",\r\n \"etag\": \"W/\\\"708ff228-ee73-4320-9dbf-445d0eb06791\\\"\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a7a6a6d6-f6b3-48c5-ab96-b60f7e09b48c\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns8859\",\r\n \"fqdn\": \"dns8859.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar379/providers/Microsoft.Storage/storageAccounts/saforcspkg1011?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yY3Nwa2cxMDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b39e20e9-c472-42ec-b7f5-202ff31bf9b8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "89" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Storage/locations/eastus2/asyncoperations/0b5c8ca1-3e15-45d0-8035-300c4c55e2f0?monitor=true&api-version=2015-06-15" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "0b5c8ca1-3e15-45d0-8035-300c4c55e2f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "66b47c74-8045-43ff-ba6d-7dc31b2acd06" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064054Z:66b47c74-8045-43ff-ba6d-7dc31b2acd06" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:40:53 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Storage/locations/eastus2/asyncoperations/0b5c8ca1-3e15-45d0-8035-300c4c55e2f0?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvMGI1YzhjYTEtM2UxNS00NWQwLTgwMzUtMzAwYzRjNTVlMmYwP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "535f0824-a226-4ac6-a57e-c9295d5a8278" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "48731fd5-02d0-4620-89f5-22eb0a67ff6e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064111Z:48731fd5-02d0-4620-89f5-22eb0a67ff6e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:41:10 GMT" + ], + "Content-Length": [ + "89" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar379/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cbcaa8b1-4461-4ed2-bbdf-aafcf6204580" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1dc1a05c-71be-41cc-999d-9a8b8df5db68" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "36b0c88b-19a1-4058-b4de-825d4786f31b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064121Z:36b0c88b-19a1-4058-b4de-825d4786f31b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:41:21 GMT" + ], + "Content-Length": [ + "746" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar379/providers/Microsoft.Storage/storageAccounts/saforcspkg1011\",\r\n \"name\": \"saforcspkg1011\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-03-14T06:40:53.6307927Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforcspkg1011.blob.core.windows.net/\",\r\n \"queue\": \"https://saforcspkg1011.queue.core.windows.net/\",\r\n \"table\": \"https://saforcspkg1011.table.core.windows.net/\",\r\n \"file\": \"https://saforcspkg1011.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar379/providers/Microsoft.Storage/storageAccounts/saforcspkg1011?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yY3Nwa2cxMDExP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b7d5f003-55d3-4014-9d7f-97fa1d3a5cd1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5a072abf-6586-40d0-9724-d52e481dbf80" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "9a415eaa-6bf0-4527-8f36-837446d50888" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064122Z:9a415eaa-6bf0-4527-8f36-837446d50888" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:41:22 GMT" + ], + "Content-Length": [ + "734" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar379/providers/Microsoft.Storage/storageAccounts/saforcspkg1011\",\r\n \"name\": \"saforcspkg1011\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-03-14T06:40:53.6307927Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforcspkg1011.blob.core.windows.net/\",\r\n \"queue\": \"https://saforcspkg1011.queue.core.windows.net/\",\r\n \"table\": \"https://saforcspkg1011.table.core.windows.net/\",\r\n \"file\": \"https://saforcspkg1011.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar379/providers/Microsoft.Storage/storageAccounts/saforcspkg1011/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3OS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yY3Nwa2cxMDExL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ca4e530c-4585-4690-8507-41cb32e8a217" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0dedb373-f8f1-4811-a91f-aa5a89256f84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "95ccf67f-a9de-4114-ba71-2c1ab2e52064" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064122Z:95ccf67f-a9de-4114-ba71-2c1ab2e52064" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:41:22 GMT" + ], + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"nYQSBkYuoOpkFbz+5scXRR/rU24De1YQfBTPn0W9RIVOXbC/uyVv6h5/9FABLUFucfS/chc1zq3pWXmmqNJ95w==\",\r\n \"key2\": \"xiMZsSJXTxKYF9RcCMXb9cV4TMlMRzgA4vZRa0cNhHBDeM5xH+Q0JD6iUJkDrm9/ZXSus6BznISluLKcsUgBTg==\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar379/providers/Microsoft.Compute/cloudServices/cs910?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3OS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2xvdWRTZXJ2aWNlcy9jczkxMD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"packageUrl\": \"https://saforcspkg1011.blob.core.windows.net/sascontainer/TestCloudServiceMultiRole_WorkerRole1(Standard_D2_v2)(1)_WorkerRole2(Standard_D1_v2)(1)_WebRole1(Standard_A2_v2)(2).cspkg?sv=2017-04-17&sr=b&sig=mxg4AwXM3H7%2B1TEFElx8HZB9QVqQnRnuwvvDIwBpPUY%3D&st=2021-03-13T06%3A42%3A41Z&se=2021-03-16T06%3A42%3A41Z&sp=rw\",\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb63\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"lbfe1541\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar379/providers/Microsoft.Network/publicIPAddresses/cspip3741\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "972cf0cc-4267-4e8b-87c7-d4f8f656a0e9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3463" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/74300dfb-59cc-496d-897d-126b406c4c55?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "74300dfb-59cc-496d-897d-126b406c4c55" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;297" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "c4cd7c7d-31fa-4294-aa86-1faa15ee9324" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064250Z:c4cd7c7d-31fa-4294-aa86-1faa15ee9324" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:42:50 GMT" + ], + "Content-Length": [ + "3243" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs910\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR379/providers/Microsoft.Compute/cloudServices/cs910\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb63\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe1541\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar379/providers/Microsoft.Network/publicIPAddresses/cspip3741\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"uniqueId\": \"64aca351-c391-4fa8-b1c4-b9e9b32cdc7a\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/74300dfb-59cc-496d-897d-126b406c4c55?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNzQzMDBkZmItNTljYy00OTZkLTg5N2QtMTI2YjQwNmM0YzU1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "c81b54dc-a746-4a29-8ff8-7f750e751b51" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "3b084a2f-e175-48ee-890f-32ff9d864b9d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064321Z:3b084a2f-e175-48ee-890f-32ff9d864b9d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:43:21 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:12:48.4014506+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"74300dfb-59cc-496d-897d-126b406c4c55\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/74300dfb-59cc-496d-897d-126b406c4c55?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNzQzMDBkZmItNTljYy00OTZkLTg5N2QtMTI2YjQwNmM0YzU1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "ee0c5e0a-24ec-4b79-8caf-623c3288956c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "ae4fa172-ba03-48de-a127-edf35d63f576" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064351Z:ae4fa172-ba03-48de-a127-edf35d63f576" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:43:51 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:12:48.4014506+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"74300dfb-59cc-496d-897d-126b406c4c55\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/74300dfb-59cc-496d-897d-126b406c4c55?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNzQzMDBkZmItNTljYy00OTZkLTg5N2QtMTI2YjQwNmM0YzU1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "ade79624-4f6c-4ee4-b0ab-a5ce74050d54" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "faaec329-7cbc-4c25-8b79-47350e40c25c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064422Z:faaec329-7cbc-4c25-8b79-47350e40c25c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:44:21 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:12:48.4014506+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"74300dfb-59cc-496d-897d-126b406c4c55\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/74300dfb-59cc-496d-897d-126b406c4c55?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNzQzMDBkZmItNTljYy00OTZkLTg5N2QtMTI2YjQwNmM0YzU1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "78b5a55a-5752-4c03-8a13-f5e2021653f1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "5a4e9cc4-0d6e-4b23-9c07-2c3d6fc96cb9" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064452Z:5a4e9cc4-0d6e-4b23-9c07-2c3d6fc96cb9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:44:52 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:12:48.4014506+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"74300dfb-59cc-496d-897d-126b406c4c55\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/74300dfb-59cc-496d-897d-126b406c4c55?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNzQzMDBkZmItNTljYy00OTZkLTg5N2QtMTI2YjQwNmM0YzU1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "6f766441-2fd7-49df-89ad-9a467705df5a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "8a4cdb53-f600-49c3-9385-2397f7455f8b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064522Z:8a4cdb53-f600-49c3-9385-2397f7455f8b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:45:22 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:12:48.4014506+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"74300dfb-59cc-496d-897d-126b406c4c55\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/74300dfb-59cc-496d-897d-126b406c4c55?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNzQzMDBkZmItNTljYy00OTZkLTg5N2QtMTI2YjQwNmM0YzU1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "3db420db-13c1-405b-b362-9c151b692f6b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "c2181b4b-e073-4a75-9750-f5a7540175d2" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064552Z:c2181b4b-e073-4a75-9750-f5a7540175d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:45:52 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:12:48.4014506+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"74300dfb-59cc-496d-897d-126b406c4c55\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/74300dfb-59cc-496d-897d-126b406c4c55?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNzQzMDBkZmItNTljYy00OTZkLTg5N2QtMTI2YjQwNmM0YzU1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "c0f722f9-5c6b-4839-844c-74b7fc39c842" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "85e54e73-9fc5-4883-b408-8c03cc3e2ba5" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064623Z:85e54e73-9fc5-4883-b408-8c03cc3e2ba5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:46:23 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:12:48.4014506+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"74300dfb-59cc-496d-897d-126b406c4c55\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/74300dfb-59cc-496d-897d-126b406c4c55?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNzQzMDBkZmItNTljYy00OTZkLTg5N2QtMTI2YjQwNmM0YzU1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "993ef167-6e39-45ef-a932-e9ac6316b78c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "d157f6f3-c984-4112-bb80-ade9b8d0cc33" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064653Z:d157f6f3-c984-4112-bb80-ade9b8d0cc33" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:46:52 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:12:48.4014506+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"74300dfb-59cc-496d-897d-126b406c4c55\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/74300dfb-59cc-496d-897d-126b406c4c55?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNzQzMDBkZmItNTljYy00OTZkLTg5N2QtMTI2YjQwNmM0YzU1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "a6d2fd08-cbe0-437e-8e4c-667a8017ae8e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "4700ef74-9fda-45e7-9e09-ebeb1c270913" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064723Z:4700ef74-9fda-45e7-9e09-ebeb1c270913" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:47:23 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:12:48.4014506+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"74300dfb-59cc-496d-897d-126b406c4c55\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/74300dfb-59cc-496d-897d-126b406c4c55?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNzQzMDBkZmItNTljYy00OTZkLTg5N2QtMTI2YjQwNmM0YzU1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "338392b5-af77-4993-b0db-573c82a1c3df" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "45c1f5cf-83a5-45df-b424-9dba03170e39" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064754Z:45c1f5cf-83a5-45df-b424-9dba03170e39" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:47:53 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:12:48.4014506+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"74300dfb-59cc-496d-897d-126b406c4c55\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/74300dfb-59cc-496d-897d-126b406c4c55?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNzQzMDBkZmItNTljYy00OTZkLTg5N2QtMTI2YjQwNmM0YzU1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "5dc64148-c195-450c-bc4f-e83308f59075" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "e019a9eb-c72e-4fe3-9855-e9811cb8f21f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064824Z:e019a9eb-c72e-4fe3-9855-e9811cb8f21f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:48:24 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:12:48.4014506+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"74300dfb-59cc-496d-897d-126b406c4c55\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/74300dfb-59cc-496d-897d-126b406c4c55?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNzQzMDBkZmItNTljYy00OTZkLTg5N2QtMTI2YjQwNmM0YzU1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "ef243645-3fb4-4577-8c01-c805e4ce4aa6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "709cf8ac-5a4a-4e26-9f91-c16cbe6f0b7b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064854Z:709cf8ac-5a4a-4e26-9f91-c16cbe6f0b7b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:48:54 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:12:48.4014506+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"74300dfb-59cc-496d-897d-126b406c4c55\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/74300dfb-59cc-496d-897d-126b406c4c55?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNzQzMDBkZmItNTljYy00OTZkLTg5N2QtMTI2YjQwNmM0YzU1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "e4b5bfe1-7896-4876-ad73-1613603c78a1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "4501940f-e1c9-417b-9816-3338495a1c3d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064924Z:4501940f-e1c9-417b-9816-3338495a1c3d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:49:24 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:12:48.4014506+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"74300dfb-59cc-496d-897d-126b406c4c55\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/74300dfb-59cc-496d-897d-126b406c4c55?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNzQzMDBkZmItNTljYy00OTZkLTg5N2QtMTI2YjQwNmM0YzU1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "5d6f35b6-8bdb-4c7a-9cf7-a1e5e1120f8a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "b18ee78c-3fbd-48b0-87f6-0a7544f115af" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064955Z:b18ee78c-3fbd-48b0-87f6-0a7544f115af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:49:55 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:12:48.4014506+05:30\",\r\n \"endTime\": \"2021-03-14T12:19:32.4655724+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"74300dfb-59cc-496d-897d-126b406c4c55\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar379/providers/Microsoft.Compute/cloudServices/cs910?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3OS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2xvdWRTZXJ2aWNlcy9jczkxMD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "52111548-435a-408f-9577-579182c89e28" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;398,Microsoft.Compute/GetCloudService30Min;2592" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "a40c8718-e331-4bfb-8778-43f7803dc90b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064956Z:a40c8718-e331-4bfb-8778-43f7803dc90b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:49:55 GMT" + ], + "Content-Length": [ + "3244" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs910\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR379/providers/Microsoft.Compute/cloudServices/cs910\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb63\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe1541\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar379/providers/Microsoft.Network/publicIPAddresses/cspip3741\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"64aca351-c391-4fa8-b1c4-b9e9b32cdc7a\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar379/providers/Microsoft.Compute/cloudServices/cs910?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3OS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2xvdWRTZXJ2aWNlcy9jczkxMD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "385050f6-64ba-4bc7-86bb-2ea042dbafad" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "38b9fd8d-9d32-4b59-876a-588669e587e7" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;397,Microsoft.Compute/GetCloudService30Min;2591" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "799f9005-27cb-49e9-b0f8-8c4b98e3bc50" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064956Z:799f9005-27cb-49e9-b0f8-8c4b98e3bc50" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:49:56 GMT" + ], + "Content-Length": [ + "3244" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs910\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR379/providers/Microsoft.Compute/cloudServices/cs910\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb63\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe1541\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar379/providers/Microsoft.Network/publicIPAddresses/cspip3741\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"64aca351-c391-4fa8-b1c4-b9e9b32cdc7a\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar379/providers/Microsoft.Compute/cloudServices/cs910?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM3OS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvY2xvdWRTZXJ2aWNlcy9jczkxMD9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "172ab8b6-711a-4c5c-84f5-35c9d8908bd5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/f5451e8e-a50c-41e3-9535-8ea776b1f88b?monitor=true&api-version=2021-03-01" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/f5451e8e-a50c-41e3-9535-8ea776b1f88b?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f5451e8e-a50c-41e3-9535-8ea776b1f88b" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;296" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "81ae8634-7afa-49d1-95ef-beef9328ed74" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064957Z:81ae8634-7afa-49d1-95ef-beef9328ed74" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:49:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/f5451e8e-a50c-41e3-9535-8ea776b1f88b?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZjU0NTFlOGUtYTUwYy00MWUzLTk1MzUtOGVhNzc2YjFmODhiP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "4f8841bc-7357-406e-99c3-a607c6ac191f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "9f0a2388-5801-444c-9f99-4014ba688c40" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T065027Z:9f0a2388-5801-444c-9f99-4014ba688c40" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:50:26 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:19:56.9656054+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f5451e8e-a50c-41e3-9535-8ea776b1f88b\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/f5451e8e-a50c-41e3-9535-8ea776b1f88b?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZjU0NTFlOGUtYTUwYy00MWUzLTk1MzUtOGVhNzc2YjFmODhiP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "b7bae789-fca4-4d79-be65-0c57b513ad5a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "eb940378-fed7-48b7-b822-96042742e97a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T065057Z:eb940378-fed7-48b7-b822-96042742e97a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:50:57 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:19:56.9656054+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f5451e8e-a50c-41e3-9535-8ea776b1f88b\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/f5451e8e-a50c-41e3-9535-8ea776b1f88b?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZjU0NTFlOGUtYTUwYy00MWUzLTk1MzUtOGVhNzc2YjFmODhiP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "ccfd0478-e586-4d05-8e5c-e8aa5c7410d2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-correlation-request-id": [ + "2efb50d7-ba5a-4a0f-b911-b2cb9d15ba87" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T065127Z:2efb50d7-ba5a-4a0f-b911-b2cb9d15ba87" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:51:27 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:19:56.9656054+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f5451e8e-a50c-41e3-9535-8ea776b1f88b\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/f5451e8e-a50c-41e3-9535-8ea776b1f88b?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZjU0NTFlOGUtYTUwYy00MWUzLTk1MzUtOGVhNzc2YjFmODhiP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "35c9e299-18f0-48d8-8887-ef3f439fbe87" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-correlation-request-id": [ + "242034f9-4446-4ea3-b042-8eccb703fba0" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T065158Z:242034f9-4446-4ea3-b042-8eccb703fba0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:51:57 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:19:56.9656054+05:30\",\r\n \"endTime\": \"2021-03-14T12:21:37.7783705+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f5451e8e-a50c-41e3-9535-8ea776b1f88b\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/f5451e8e-a50c-41e3-9535-8ea776b1f88b?monitor=true&api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZjU0NTFlOGUtYTUwYy00MWUzLTk1MzUtOGVhNzc2YjFmODhiP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "3e9dad79-129a-44fc-9761-a7c5db9470ce" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-correlation-request-id": [ + "1b66c3b2-3eca-40e7-bc19-ff16c2116b9c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T065158Z:1b66c3b2-3eca-40e7-bc19-ff16c2116b9c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:51:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar379?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjM3OT9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c7fdb24-ba18-4bc2-b7f0-4af1b1727531" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIzNzktRUFTVFVTMiIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "539a59e8-578f-485a-9233-c4c7260ea61b" + ], + "x-ms-correlation-request-id": [ + "539a59e8-578f-485a-9233-c4c7260ea61b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T065203Z:539a59e8-578f-485a-9233-c4c7260ea61b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:52:02 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + } + ], + "Names": { + "TestCloudServiceOperationsInternal": [ + "crptestar379", + "cs910", + "cspip3741", + "csvnet6308", + "subnet8243", + "dns8859", + "lb63", + "lbfe1541" + ], + "CreateCspkgSasUrl": [ + "saforcspkg1011", + "asforcspkg5445" + ] + }, + "Variables": { + "SubscriptionId": "0296790d-427c-48ca-b204-8b729bbd8670" + } +} \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceScenarioTests/TestCloudServiceScenarioOperations_ExtensionProfile.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceScenarioTests/TestCloudServiceScenarioOperations_ExtensionProfile.json new file mode 100644 index 0000000000000..5636391de412b --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceScenarioTests/TestCloudServiceScenarioOperations_ExtensionProfile.json @@ -0,0 +1,2013 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar6964?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjY5NjQ/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar6964\": \"2021-03-13 22:54:48Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9dc14a7d-ffc6-48f8-965d-e8fd66e17d52" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "93" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-request-id": [ + "cfdaec95-3c48-43d4-ba25-706b25907d86" + ], + "x-ms-correlation-request-id": [ + "cfdaec95-3c48-43d4-ba25-706b25907d86" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T225450Z:cfdaec95-3c48-43d4-ba25-706b25907d86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:54:49 GMT" + ], + "Content-Length": [ + "228" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6964\",\r\n \"name\": \"crptestar6964\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar6964\": \"2021-03-13 22:54:48Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar6964?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjY5NjQ/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar6964\": \"2021-03-13 22:55:08Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "253bf36a-7e33-4e5f-8b87-eaab62aaf9c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "93" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-request-id": [ + "e4cb85fe-f9f3-4b59-80fa-6381ff0cdeb9" + ], + "x-ms-correlation-request-id": [ + "e4cb85fe-f9f3-4b59-80fa-6381ff0cdeb9" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T225509Z:e4cb85fe-f9f3-4b59-80fa-6381ff0cdeb9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:55:09 GMT" + ], + "Content-Length": [ + "228" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6964\",\r\n \"name\": \"crptestar6964\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar6964\": \"2021-03-13 22:55:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar6964?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjY5NjQ/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "627e76d8-d2b1-498d-8324-1349ad179547" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-request-id": [ + "831766e0-e84c-42ae-bbc4-4e56608d248e" + ], + "x-ms-correlation-request-id": [ + "831766e0-e84c-42ae-bbc4-4e56608d248e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T225655Z:831766e0-e84c-42ae-bbc4-4e56608d248e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:56:55 GMT" + ], + "Content-Length": [ + "180" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6964\",\r\n \"name\": \"crptestar6964\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6964/providers/Microsoft.Network/virtualNetworks/csvnet8448?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY5NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9jc3ZuZXQ4NDQ4P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"subnet5875\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5df6ce01-ff21-4295-90b2-08fc3f64236e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "297" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "dd1cb75f-462f-43b4-ae32-f4f8c71ddcf7" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/dd1cb75f-462f-43b4-ae32-f4f8c71ddcf7?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "1473284f-bf67-4b36-a823-a8c5972c2e53" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "ef973e59-9db1-4947-b19c-940bbe587387" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T225458Z:1473284f-bf67-4b36-a823-a8c5972c2e53" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:54:57 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"csvnet8448\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6964/providers/Microsoft.Network/virtualNetworks/csvnet8448\",\r\n \"etag\": \"W/\\\"e157075e-0caf-488d-9154-52189cc15620\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"2cb16794-e46d-41f4-9874-8ad330bea380\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet5875\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6964/providers/Microsoft.Network/virtualNetworks/csvnet8448/subnets/subnet5875\",\r\n \"etag\": \"W/\\\"e157075e-0caf-488d-9154-52189cc15620\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/dd1cb75f-462f-43b4-ae32-f4f8c71ddcf7?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2RkMWNiNzVmLTQ2MmYtNDNiNC1hZTMyLWY0ZjhjNzFkZGNmNz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "65b92df2-efb9-424b-9552-f4c5c89326f5" + ], + "x-ms-correlation-request-id": [ + "ee559766-52d7-45e9-9c75-4cefc2522f07" + ], + "x-ms-arm-service-request-id": [ + "c88b5b7e-0e22-40ab-bb35-f362ba9ba251" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T225501Z:ee559766-52d7-45e9-9c75-4cefc2522f07" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:55:01 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6964/providers/Microsoft.Network/virtualNetworks/csvnet8448?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY5NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9jc3ZuZXQ4NDQ4P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"d208c756-5f35-4258-9a9d-871a5a78b601\"" + ], + "x-ms-request-id": [ + "923635bf-e4ef-404c-9e5c-b2a96c316d80" + ], + "x-ms-correlation-request-id": [ + "f571d802-fa36-45e5-99be-2020725d2d74" + ], + "x-ms-arm-service-request-id": [ + "7053a684-b64a-411c-ad10-5dcbbee692ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T225501Z:f571d802-fa36-45e5-99be-2020725d2d74" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:55:01 GMT" + ], + "Content-Length": [ + "1234" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"csvnet8448\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6964/providers/Microsoft.Network/virtualNetworks/csvnet8448\",\r\n \"etag\": \"W/\\\"d208c756-5f35-4258-9a9d-871a5a78b601\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2cb16794-e46d-41f4-9874-8ad330bea380\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet5875\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6964/providers/Microsoft.Network/virtualNetworks/csvnet8448/subnets/subnet5875\",\r\n \"etag\": \"W/\\\"d208c756-5f35-4258-9a9d-871a5a78b601\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6964/providers/Microsoft.Network/publicIPAddresses/cspip8851?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY5NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2NzcGlwODg1MT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns4597\"\r\n }\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "783d7c0b-d532-46fb-8124-caa5f3588a93" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "163" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "c70c58cc-bb35-4020-ab1a-780094c80da8" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/c70c58cc-bb35-4020-ab1a-780094c80da8?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "9f5259bb-a9cb-4f87-a380-0f1361a8d279" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "845babfa-d7d7-49dc-b3ba-53ef524acc17" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T225506Z:9f5259bb-a9cb-4f87-a380-0f1361a8d279" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:55:06 GMT" + ], + "Content-Length": [ + "724" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cspip8851\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6964/providers/Microsoft.Network/publicIPAddresses/cspip8851\",\r\n \"etag\": \"W/\\\"6e14d699-d2d0-44db-a786-7c74ad08aed1\\\"\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f51f32e9-3483-41ea-b333-635682d873c3\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns4597\",\r\n \"fqdn\": \"dns4597.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/c70c58cc-bb35-4020-ab1a-780094c80da8?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2M3MGM1OGNjLWJiMzUtNDAyMC1hYjFhLTc4MDA5NGM4MGRhOD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2a0660c2-7bfd-4220-bcf9-ea76ecf71e1c" + ], + "x-ms-correlation-request-id": [ + "15d34f38-80da-4459-a82d-cdcd8ecc2b70" + ], + "x-ms-arm-service-request-id": [ + "bbfaca14-53a9-42bd-bfae-83fde20e626d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T225507Z:15d34f38-80da-4459-a82d-cdcd8ecc2b70" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:55:07 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6964/providers/Microsoft.Network/publicIPAddresses/cspip8851?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY5NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2NzcGlwODg1MT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"bfbdeddd-635c-4943-85db-da03ca7720d0\"" + ], + "x-ms-request-id": [ + "f1851568-eeb2-4f37-a6c2-62ffce4fc424" + ], + "x-ms-correlation-request-id": [ + "73133117-9ae3-4e24-a505-2970ff547d17" + ], + "x-ms-arm-service-request-id": [ + "d4a9c1d3-f96f-4fe5-9a16-bd7a4a9ae7a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T225508Z:73133117-9ae3-4e24-a505-2970ff547d17" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:55:07 GMT" + ], + "Content-Length": [ + "725" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cspip8851\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6964/providers/Microsoft.Network/publicIPAddresses/cspip8851\",\r\n \"etag\": \"W/\\\"bfbdeddd-635c-4943-85db-da03ca7720d0\\\"\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f51f32e9-3483-41ea-b333-635682d873c3\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns4597\",\r\n \"fqdn\": \"dns4597.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6964/providers/Microsoft.Storage/storageAccounts/saforcspkg8193?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY5NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmNzcGtnODE5Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "64c06f41-ec3e-4340-afdf-422f08e8ca08" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "89" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Storage/locations/eastus2/asyncoperations/b3f860ae-b137-4106-b165-66e1e11f0753?monitor=true&api-version=2015-06-15" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "b3f860ae-b137-4106-b165-66e1e11f0753" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "c7ce752a-58d5-43ef-af5b-08e3db3395b5" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T225516Z:c7ce752a-58d5-43ef-af5b-08e3db3395b5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:55:16 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Storage/locations/eastus2/asyncoperations/b3f860ae-b137-4106-b165-66e1e11f0753?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvYjNmODYwYWUtYjEzNy00MTA2LWIxNjUtNjZlMWUxMWYwNzUzP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "986a374f-b8e6-4704-8dcf-966afbe84c78" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "92c6a1cb-5174-4763-939b-f899951f5fbe" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T225534Z:92c6a1cb-5174-4763-939b-f899951f5fbe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:55:33 GMT" + ], + "Content-Length": [ + "89" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6964/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY5NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5fbec21c-9c97-448c-ac4a-bc07196221e2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "0f325127-ba68-4b17-acc3-90739ea80eda" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "0d99c102-c95d-4732-900c-daee3f631e2c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T225544Z:0d99c102-c95d-4732-900c-daee3f631e2c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:55:43 GMT" + ], + "Content-Length": [ + "747" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6964/providers/Microsoft.Storage/storageAccounts/saforcspkg8193\",\r\n \"name\": \"saforcspkg8193\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-03-13T22:55:16.3076971Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforcspkg8193.blob.core.windows.net/\",\r\n \"queue\": \"https://saforcspkg8193.queue.core.windows.net/\",\r\n \"table\": \"https://saforcspkg8193.table.core.windows.net/\",\r\n \"file\": \"https://saforcspkg8193.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6964/providers/Microsoft.Storage/storageAccounts/saforcspkg8193?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY5NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmNzcGtnODE5Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a61f8250-d5e2-4418-a936-51ae1ee2b92b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "64717fd8-89f7-46a6-ba23-9070638ec95e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "0e636454-f7d0-4846-97f1-7cb589b4fa52" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T225544Z:0e636454-f7d0-4846-97f1-7cb589b4fa52" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:55:44 GMT" + ], + "Content-Length": [ + "735" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6964/providers/Microsoft.Storage/storageAccounts/saforcspkg8193\",\r\n \"name\": \"saforcspkg8193\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-03-13T22:55:16.3076971Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforcspkg8193.blob.core.windows.net/\",\r\n \"queue\": \"https://saforcspkg8193.queue.core.windows.net/\",\r\n \"table\": \"https://saforcspkg8193.table.core.windows.net/\",\r\n \"file\": \"https://saforcspkg8193.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6964/providers/Microsoft.Storage/storageAccounts/saforcspkg8193/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY5NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmNzcGtnODE5My9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8923b152-c568-4b19-b111-383f15660351" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f0286061-8f37-4167-9c3f-46648b917d3f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "0ebf030c-b875-4476-8f12-706d1ba1cded" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T225545Z:0ebf030c-b875-4476-8f12-706d1ba1cded" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:55:44 GMT" + ], + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"0XKw5SG8J/qzK6xKmIzXw6jJs8DvAjTEE6p7GJwO9bgsOI9PpnDNQPz+bCC+pPnCkmbmDymFdMWnbkUCtRUJ4g==\",\r\n \"key2\": \"vUeV3K74aT9ffH/Tszvo3SLO7t/QA8iLB4KcG0VgnG6STowb/Pxxd/u7Veq8eBu4Y5F3lwXlnlIQNpxnNomGcw==\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6964/providers/Microsoft.Compute/cloudServices/cs1904?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY5NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MxOTA0P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"packageUrl\": \"https://saforcspkg8193.blob.core.windows.net/sascontainer/TestCloudServiceMultiRole_WorkerRole1(Standard_D2_v2)(1)_WorkerRole2(Standard_D1_v2)(1)_WebRole1(Standard_A2_v2)(2).cspkg?sv=2017-04-17&sr=b&sig=Z3rhorWSWuOM5rU2PxQeLgL%2Ba%2Fh2BjG3fWFO%2B8bIiwE%3D&st=2021-03-12T22%3A56%3A53Z&se=2021-03-15T22%3A56%3A53Z&sp=rw\",\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb1851\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"lbfe5153\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6964/providers/Microsoft.Network/publicIPAddresses/cspip8851\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\",\r\n \"protectedSettings\": \"VsmrdpTest!\"\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "966d540c-e35d-47d2-94f1-136375f27e6a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "4051" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/def52ae7-3c39-4272-96af-691a4fde3c35?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "def52ae7-3c39-4272-96af-691a4fde3c35" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;292" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "437dd871-d259-471a-9fc1-166c6f847b1e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T225703Z:437dd871-d259-471a-9fc1-166c6f847b1e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:57:02 GMT" + ], + "Content-Length": [ + "3843" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs1904\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR6964/providers/Microsoft.Compute/cloudServices/cs1904\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb1851\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe5153\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6964/providers/Microsoft.Network/publicIPAddresses/cspip8851\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\",\r\n \"rolesAppliedTo\": [\r\n \"*\"\r\n ],\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"uniqueId\": \"a72c752d-b1de-418e-927b-6c8651f2a120\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/def52ae7-3c39-4272-96af-691a4fde3c35?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZGVmNTJhZTctM2MzOS00MjcyLTk2YWYtNjkxYTRmZGUzYzM1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "813c6d13-7542-4226-9dd9-bc5df6d12aa2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "0fe17ec3-0274-4033-9dbe-5101e86c927d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T225734Z:0fe17ec3-0274-4033-9dbe-5101e86c927d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:57:33 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T04:27:01.9265242+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"def52ae7-3c39-4272-96af-691a4fde3c35\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/def52ae7-3c39-4272-96af-691a4fde3c35?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZGVmNTJhZTctM2MzOS00MjcyLTk2YWYtNjkxYTRmZGUzYzM1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "374975ad-fe46-4497-a6ce-aaf56396604f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "68d6e674-a165-4d33-b37d-e7ada71fa872" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T225805Z:68d6e674-a165-4d33-b37d-e7ada71fa872" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:58:04 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T04:27:01.9265242+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"def52ae7-3c39-4272-96af-691a4fde3c35\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/def52ae7-3c39-4272-96af-691a4fde3c35?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZGVmNTJhZTctM2MzOS00MjcyLTk2YWYtNjkxYTRmZGUzYzM1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "d3d850de-ccef-4c72-926c-1525812299c4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "41832c1c-b930-4a98-9e42-dbca39a9c8a1" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T225835Z:41832c1c-b930-4a98-9e42-dbca39a9c8a1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:58:35 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T04:27:01.9265242+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"def52ae7-3c39-4272-96af-691a4fde3c35\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/def52ae7-3c39-4272-96af-691a4fde3c35?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZGVmNTJhZTctM2MzOS00MjcyLTk2YWYtNjkxYTRmZGUzYzM1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "286bd4d3-b288-4ed4-8b65-db1b5d761a4f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "c57c55b1-8163-40ad-abf8-f7637f0138fb" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T225905Z:c57c55b1-8163-40ad-abf8-f7637f0138fb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:59:04 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T04:27:01.9265242+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"def52ae7-3c39-4272-96af-691a4fde3c35\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/def52ae7-3c39-4272-96af-691a4fde3c35?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZGVmNTJhZTctM2MzOS00MjcyLTk2YWYtNjkxYTRmZGUzYzM1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "9e2083a0-c294-484e-8241-fc26607fff5b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "2cdce719-415c-4908-831c-9fc89ee57fad" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T225935Z:2cdce719-415c-4908-831c-9fc89ee57fad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:59:35 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T04:27:01.9265242+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"def52ae7-3c39-4272-96af-691a4fde3c35\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/def52ae7-3c39-4272-96af-691a4fde3c35?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZGVmNTJhZTctM2MzOS00MjcyLTk2YWYtNjkxYTRmZGUzYzM1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "b751fb54-2168-49eb-8705-e010610c826c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "b1088888-8b29-4eab-8f36-4e2412772a52" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T230006Z:b1088888-8b29-4eab-8f36-4e2412772a52" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:00:05 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T04:27:01.9265242+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"def52ae7-3c39-4272-96af-691a4fde3c35\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/def52ae7-3c39-4272-96af-691a4fde3c35?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZGVmNTJhZTctM2MzOS00MjcyLTk2YWYtNjkxYTRmZGUzYzM1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "99ba3c49-4472-4994-8aad-08ed93d934c9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "ed1997a1-23f9-4b2e-a061-c63f0206c907" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T230036Z:ed1997a1-23f9-4b2e-a061-c63f0206c907" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:00:35 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T04:27:01.9265242+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"def52ae7-3c39-4272-96af-691a4fde3c35\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/def52ae7-3c39-4272-96af-691a4fde3c35?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZGVmNTJhZTctM2MzOS00MjcyLTk2YWYtNjkxYTRmZGUzYzM1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "f83b113e-473a-46c3-8794-cd853184b0d1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "303ef517-f78a-4122-841c-001ba08711ef" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T230106Z:303ef517-f78a-4122-841c-001ba08711ef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:01:05 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T04:27:01.9265242+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"def52ae7-3c39-4272-96af-691a4fde3c35\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/def52ae7-3c39-4272-96af-691a4fde3c35?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZGVmNTJhZTctM2MzOS00MjcyLTk2YWYtNjkxYTRmZGUzYzM1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "6edd5b86-4c4c-47db-9bf9-cd224c427576" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "0444094b-5672-487a-8daa-425e974c8d0b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T230136Z:0444094b-5672-487a-8daa-425e974c8d0b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:01:36 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T04:27:01.9265242+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"def52ae7-3c39-4272-96af-691a4fde3c35\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/def52ae7-3c39-4272-96af-691a4fde3c35?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZGVmNTJhZTctM2MzOS00MjcyLTk2YWYtNjkxYTRmZGUzYzM1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "21be1eb5-c496-4400-8746-70688ab97293" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "21c378af-a904-4993-a5a2-fccca4750eb2" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T230207Z:21c378af-a904-4993-a5a2-fccca4750eb2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:02:07 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T04:27:01.9265242+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"def52ae7-3c39-4272-96af-691a4fde3c35\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/def52ae7-3c39-4272-96af-691a4fde3c35?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZGVmNTJhZTctM2MzOS00MjcyLTk2YWYtNjkxYTRmZGUzYzM1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "ae9435da-f747-4b65-9ed3-859dfeb634cb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "3f8bd98e-7a6b-4210-935c-76021bbca89b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T230237Z:3f8bd98e-7a6b-4210-935c-76021bbca89b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:02:36 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T04:27:01.9265242+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"def52ae7-3c39-4272-96af-691a4fde3c35\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/def52ae7-3c39-4272-96af-691a4fde3c35?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZGVmNTJhZTctM2MzOS00MjcyLTk2YWYtNjkxYTRmZGUzYzM1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "bacaa12c-de4a-4b85-8c03-82c259c1cc40" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "d5bbf4a9-af82-4c72-8255-0d6a62156c44" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T230307Z:d5bbf4a9-af82-4c72-8255-0d6a62156c44" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:03:07 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T04:27:01.9265242+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"def52ae7-3c39-4272-96af-691a4fde3c35\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/def52ae7-3c39-4272-96af-691a4fde3c35?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZGVmNTJhZTctM2MzOS00MjcyLTk2YWYtNjkxYTRmZGUzYzM1P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "2c9409b7-dfa1-4fe5-a9ca-51109b4c1f68" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "a73f9d30-008d-4f32-b992-f3355a331da1" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T230337Z:a73f9d30-008d-4f32-b992-f3355a331da1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:03:37 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T04:27:01.9265242+05:30\",\r\n \"endTime\": \"2021-03-14T04:33:12.5377263+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"def52ae7-3c39-4272-96af-691a4fde3c35\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6964/providers/Microsoft.Compute/cloudServices/cs1904?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY5NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MxOTA0P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "4b1c92ca-a29f-4455-b333-02eda4d9c46a" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;398,Microsoft.Compute/GetCloudService30Min;2579" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "fa355e11-5613-402b-af98-03fc0f18d073" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T230338Z:fa355e11-5613-402b-af98-03fc0f18d073" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:03:37 GMT" + ], + "Content-Length": [ + "3845" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs1904\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR6964/providers/Microsoft.Compute/cloudServices/cs1904\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb1851\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe5153\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6964/providers/Microsoft.Network/publicIPAddresses/cspip8851\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"*\"\r\n ],\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"a72c752d-b1de-418e-927b-6c8651f2a120\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6964/providers/Microsoft.Compute/cloudServices/cs1904?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjY5NjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MxOTA0P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "509c5f6a-b271-4bac-81dc-7533121acf16" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "33c27245-e30f-417d-8cb2-ccb6f06511bd" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;397,Microsoft.Compute/GetCloudService30Min;2578" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "b8b163c3-2d49-4565-a76f-8eec2c46e027" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T230338Z:b8b163c3-2d49-4565-a76f-8eec2c46e027" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:03:37 GMT" + ], + "Content-Length": [ + "3845" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs1904\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR6964/providers/Microsoft.Compute/cloudServices/cs1904\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb1851\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe5153\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar6964/providers/Microsoft.Network/publicIPAddresses/cspip8851\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"*\"\r\n ],\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"a72c752d-b1de-418e-927b-6c8651f2a120\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar6964?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjY5NjQ/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ea70c743-d83b-4e03-9432-98a5b092cd7e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI2OTY0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "4f1ae1bd-fd4c-4c14-9e38-0e9eecd226a6" + ], + "x-ms-correlation-request-id": [ + "4f1ae1bd-fd4c-4c14-9e38-0e9eecd226a6" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T230342Z:4f1ae1bd-fd4c-4c14-9e38-0e9eecd226a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 23:03:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + } + ], + "Names": { + "TestCloudServiceOperationsInternal": [ + "crptestar6964", + "cs1904", + "cspip8851", + "csvnet8448", + "subnet5875", + "dns4597", + "lb1851", + "lbfe5153" + ], + "CreateCspkgSasUrl": [ + "saforcspkg8193", + "asforcspkg7386" + ] + }, + "Variables": { + "SubscriptionId": "0296790d-427c-48ca-b204-8b729bbd8670" + } +} \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceScenarioTests/TestCloudServiceScenarioOperations_InstanceView.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceScenarioTests/TestCloudServiceScenarioOperations_InstanceView.json new file mode 100644 index 0000000000000..fee74e67be9b8 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceScenarioTests/TestCloudServiceScenarioOperations_InstanceView.json @@ -0,0 +1,2140 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar5658?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjU2NTg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar5658\": \"2021-03-14 06:31:31Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "59cb21cb-0e1f-4cf3-a352-178a59b3728d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "93" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "f786be05-344b-4919-961c-f94145ddba86" + ], + "x-ms-correlation-request-id": [ + "f786be05-344b-4919-961c-f94145ddba86" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T063134Z:f786be05-344b-4919-961c-f94145ddba86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:31:33 GMT" + ], + "Content-Length": [ + "228" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar5658\",\r\n \"name\": \"crptestar5658\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar5658\": \"2021-03-14 06:31:31Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar5658?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjU2NTg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar5658\": \"2021-03-14 06:31:53Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b0434b1b-b570-4252-96f0-d3f339ee01cd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "93" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "976e028b-439d-478d-95de-cd83c324bd06" + ], + "x-ms-correlation-request-id": [ + "976e028b-439d-478d-95de-cd83c324bd06" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T063154Z:976e028b-439d-478d-95de-cd83c324bd06" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:31:54 GMT" + ], + "Content-Length": [ + "228" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar5658\",\r\n \"name\": \"crptestar5658\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar5658\": \"2021-03-14 06:31:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar5658?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjU2NTg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "08adcc06-c207-4078-85ef-aeb46eacf998" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "cb922482-bca0-4dd7-b653-1ba3c774eb09" + ], + "x-ms-correlation-request-id": [ + "cb922482-bca0-4dd7-b653-1ba3c774eb09" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T063258Z:cb922482-bca0-4dd7-b653-1ba3c774eb09" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:32:57 GMT" + ], + "Content-Length": [ + "180" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar5658\",\r\n \"name\": \"crptestar5658\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar5658/providers/Microsoft.Network/virtualNetworks/csvnet8039?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjU2NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9jc3ZuZXQ4MDM5P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"subnet2331\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "55f2eff8-51de-4c30-84a9-d53da3f9bb01" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "297" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "765d78c2-16ee-495e-91bc-b3f975394a8e" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/765d78c2-16ee-495e-91bc-b3f975394a8e?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "49a265a2-d263-4889-851b-2067b2d28ea8" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "7a821dc2-2c0e-4617-b2cf-9e8c7dcf8e71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T063142Z:49a265a2-d263-4889-851b-2067b2d28ea8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:31:42 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"csvnet8039\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar5658/providers/Microsoft.Network/virtualNetworks/csvnet8039\",\r\n \"etag\": \"W/\\\"4fb53cca-abed-4e6d-a3fe-1be019599653\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"cf733e23-5ad5-45a8-a418-a10853427aba\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet2331\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar5658/providers/Microsoft.Network/virtualNetworks/csvnet8039/subnets/subnet2331\",\r\n \"etag\": \"W/\\\"4fb53cca-abed-4e6d-a3fe-1be019599653\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/765d78c2-16ee-495e-91bc-b3f975394a8e?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzc2NWQ3OGMyLTE2ZWUtNDk1ZS05MWJjLWIzZjk3NTM5NGE4ZT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cb5b19f2-a8f9-45bd-83a7-7fc21a49e868" + ], + "x-ms-correlation-request-id": [ + "86aa4559-243f-45d5-87e3-a05191f174d4" + ], + "x-ms-arm-service-request-id": [ + "c786c565-4c00-498a-9560-042edd0352bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T063146Z:86aa4559-243f-45d5-87e3-a05191f174d4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:31:45 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar5658/providers/Microsoft.Network/virtualNetworks/csvnet8039?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjU2NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9jc3ZuZXQ4MDM5P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"8cc1e7d2-048d-4c02-ab58-f981f4a1567f\"" + ], + "x-ms-request-id": [ + "ed61bfe9-52f2-4e88-99fe-74c12dc47f78" + ], + "x-ms-correlation-request-id": [ + "c5cbd416-509d-4341-b470-930c7a7ca2ad" + ], + "x-ms-arm-service-request-id": [ + "da4b75a1-4170-4b55-863e-e387c3aa863f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T063146Z:c5cbd416-509d-4341-b470-930c7a7ca2ad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:31:46 GMT" + ], + "Content-Length": [ + "1234" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"csvnet8039\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar5658/providers/Microsoft.Network/virtualNetworks/csvnet8039\",\r\n \"etag\": \"W/\\\"8cc1e7d2-048d-4c02-ab58-f981f4a1567f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cf733e23-5ad5-45a8-a418-a10853427aba\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet2331\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar5658/providers/Microsoft.Network/virtualNetworks/csvnet8039/subnets/subnet2331\",\r\n \"etag\": \"W/\\\"8cc1e7d2-048d-4c02-ab58-f981f4a1567f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar5658/providers/Microsoft.Network/publicIPAddresses/cspip5764?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjU2NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2NzcGlwNTc2ND9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns7828\"\r\n }\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eb140fec-f068-45d7-b3fd-ac73d3c6acca" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "163" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "58074283-1cfa-4be1-847e-41aead7eb033" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/58074283-1cfa-4be1-847e-41aead7eb033?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "5d387e10-41d1-484b-aaae-587e29de5087" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "2acdab28-10f6-4c2e-a8dd-9bd3be484024" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T063151Z:5d387e10-41d1-484b-aaae-587e29de5087" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:31:51 GMT" + ], + "Content-Length": [ + "724" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cspip5764\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar5658/providers/Microsoft.Network/publicIPAddresses/cspip5764\",\r\n \"etag\": \"W/\\\"be6459c3-b4de-4a2f-adf6-03e3129da622\\\"\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"fd3c2aba-6450-4710-9eaa-5e0f5248f402\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns7828\",\r\n \"fqdn\": \"dns7828.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/58074283-1cfa-4be1-847e-41aead7eb033?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzU4MDc0MjgzLTFjZmEtNGJlMS04NDdlLTQxYWVhZDdlYjAzMz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c0647a35-7d22-4b36-bb0b-806bd213e6f9" + ], + "x-ms-correlation-request-id": [ + "8f305eb6-4d08-4618-b56a-e1ccd9f1fa98" + ], + "x-ms-arm-service-request-id": [ + "9e6f4139-6ab2-4b50-9111-67c4d8067863" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T063152Z:8f305eb6-4d08-4618-b56a-e1ccd9f1fa98" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:31:52 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar5658/providers/Microsoft.Network/publicIPAddresses/cspip5764?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjU2NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2NzcGlwNTc2ND9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"74318d90-e315-4405-b493-7d8d432b4b0c\"" + ], + "x-ms-request-id": [ + "e17ba95f-e1c7-4f0d-8e29-e9fd3e5c936a" + ], + "x-ms-correlation-request-id": [ + "df927d6f-da80-4666-958b-6bef90be3e4c" + ], + "x-ms-arm-service-request-id": [ + "5873fdc8-388d-486f-8a25-409b9c33cd7b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T063152Z:df927d6f-da80-4666-958b-6bef90be3e4c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:31:52 GMT" + ], + "Content-Length": [ + "725" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cspip5764\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar5658/providers/Microsoft.Network/publicIPAddresses/cspip5764\",\r\n \"etag\": \"W/\\\"74318d90-e315-4405-b493-7d8d432b4b0c\\\"\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fd3c2aba-6450-4710-9eaa-5e0f5248f402\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns7828\",\r\n \"fqdn\": \"dns7828.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar5658/providers/Microsoft.Storage/storageAccounts/saforcspkg9363?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjU2NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmNzcGtnOTM2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a270d2a5-0bc2-4545-a812-46813f3abdaa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "89" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Storage/locations/eastus2/asyncoperations/a6713386-5f33-4a2d-b510-4f805f1d6989?monitor=true&api-version=2015-06-15" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "a6713386-5f33-4a2d-b510-4f805f1d6989" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "5d96bd18-f9eb-4bb4-b9c5-a9cdf028d4f1" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T063202Z:5d96bd18-f9eb-4bb4-b9c5-a9cdf028d4f1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:32:02 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Storage/locations/eastus2/asyncoperations/a6713386-5f33-4a2d-b510-4f805f1d6989?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvYTY3MTMzODYtNWYzMy00YTJkLWI1MTAtNGY4MDVmMWQ2OTg5P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "63f74729-307a-4df1-9c38-699a4f91dd59" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "203a7efe-f779-4f60-98de-f70aca48946f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T063219Z:203a7efe-f779-4f60-98de-f70aca48946f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:32:18 GMT" + ], + "Content-Length": [ + "89" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar5658/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjU2NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0323b719-c959-42c4-9190-e7b0af3c7f9e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5123379d-60a4-45f3-979b-a3fedc0d4b77" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "b1b8fb7a-d1cd-4541-8f7a-dcdd66446c4d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T063230Z:b1b8fb7a-d1cd-4541-8f7a-dcdd66446c4d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:32:30 GMT" + ], + "Content-Length": [ + "747" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar5658/providers/Microsoft.Storage/storageAccounts/saforcspkg9363\",\r\n \"name\": \"saforcspkg9363\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-03-14T06:32:01.8994925Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforcspkg9363.blob.core.windows.net/\",\r\n \"queue\": \"https://saforcspkg9363.queue.core.windows.net/\",\r\n \"table\": \"https://saforcspkg9363.table.core.windows.net/\",\r\n \"file\": \"https://saforcspkg9363.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar5658/providers/Microsoft.Storage/storageAccounts/saforcspkg9363?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjU2NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmNzcGtnOTM2Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "871419e4-430d-46c7-99c2-d9e1a1ac472b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e687c10d-ac77-4f1e-8a06-04dadec03559" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "60be5b91-8f80-4481-ab20-cc4575695600" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T063230Z:60be5b91-8f80-4481-ab20-cc4575695600" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:32:30 GMT" + ], + "Content-Length": [ + "735" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar5658/providers/Microsoft.Storage/storageAccounts/saforcspkg9363\",\r\n \"name\": \"saforcspkg9363\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-03-14T06:32:01.8994925Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforcspkg9363.blob.core.windows.net/\",\r\n \"queue\": \"https://saforcspkg9363.queue.core.windows.net/\",\r\n \"table\": \"https://saforcspkg9363.table.core.windows.net/\",\r\n \"file\": \"https://saforcspkg9363.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar5658/providers/Microsoft.Storage/storageAccounts/saforcspkg9363/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjU2NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmNzcGtnOTM2My9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2f59ea8b-8861-4592-b582-7ebae71ac17d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1bb51b12-1cdb-4bd2-a745-ca8f32913b0d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "7e040fbf-1154-4e14-a21c-a707ce28b8d2" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T063231Z:7e040fbf-1154-4e14-a21c-a707ce28b8d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:32:30 GMT" + ], + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"6Ldu0MfLPZsVqE191nDM6w57gI9eFu2wjTusPpoWWPRV/hU5aeQEAI7TIWJGn8UEjmOdJtu9IU8m/5ykV1rz8A==\",\r\n \"key2\": \"2MmKp6D9Y969tlv0xOu/rf4lTyunNE1gi9URh/UsFLDrpHR7zWTnbghSyquGeUPL3Sm+HjwjVsck9riAiRvJmg==\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar5658/providers/Microsoft.Compute/cloudServices/cs5160?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjU2NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M1MTYwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"packageUrl\": \"https://saforcspkg9363.blob.core.windows.net/sascontainer/TestCloudServiceMultiRole_WorkerRole1(Standard_D2_v2)(1)_WorkerRole2(Standard_D1_v2)(1)_WebRole1(Standard_A2_v2)(2).cspkg?sv=2017-04-17&sr=b&sig=mGeRaJ4%2BdeCjb2QP7B69p06jf%2B%2BedzJp1zXdhilSq9w%3D&st=2021-03-13T06%3A32%3A56Z&se=2021-03-16T06%3A32%3A56Z&sp=rw\",\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb3438\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"lbfe8935\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar5658/providers/Microsoft.Network/publicIPAddresses/cspip5764\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "54b05a71-520d-4efd-8af9-c85f7f809c82" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3470" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/87a10f4f-025f-4bd9-b324-1d529ad18636?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "87a10f4f-025f-4bd9-b324-1d529ad18636" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;299" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "571ed938-4d09-44ea-bfb8-9f86a923b100" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T063305Z:571ed938-4d09-44ea-bfb8-9f86a923b100" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:33:04 GMT" + ], + "Content-Length": [ + "3249" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs5160\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR5658/providers/Microsoft.Compute/cloudServices/cs5160\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb3438\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe8935\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar5658/providers/Microsoft.Network/publicIPAddresses/cspip5764\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"uniqueId\": \"171eabab-1b5a-4dab-90b1-53269538fc0a\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/87a10f4f-025f-4bd9-b324-1d529ad18636?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvODdhMTBmNGYtMDI1Zi00YmQ5LWIzMjQtMWQ1MjlhZDE4NjM2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "5c4ef8ff-3e6e-4b4c-a661-c17e670a9f22" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "01e6b738-a227-43c6-b508-75456b9cdb2b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T063336Z:01e6b738-a227-43c6-b508-75456b9cdb2b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:33:36 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:03:04.117332+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"87a10f4f-025f-4bd9-b324-1d529ad18636\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/87a10f4f-025f-4bd9-b324-1d529ad18636?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvODdhMTBmNGYtMDI1Zi00YmQ5LWIzMjQtMWQ1MjlhZDE4NjM2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "ade2b54c-f0fa-4d9b-b118-17f52a290b07" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "8b3b9346-586a-41b8-9bb2-f7da76d028d2" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T063407Z:8b3b9346-586a-41b8-9bb2-f7da76d028d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:34:06 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:03:04.117332+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"87a10f4f-025f-4bd9-b324-1d529ad18636\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/87a10f4f-025f-4bd9-b324-1d529ad18636?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvODdhMTBmNGYtMDI1Zi00YmQ5LWIzMjQtMWQ1MjlhZDE4NjM2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "662f2729-bdb8-459e-a932-51b98c9baf84" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "44b27fb5-ef57-4130-ab65-f6fdb5ef58c1" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T063437Z:44b27fb5-ef57-4130-ab65-f6fdb5ef58c1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:34:36 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:03:04.117332+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"87a10f4f-025f-4bd9-b324-1d529ad18636\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/87a10f4f-025f-4bd9-b324-1d529ad18636?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvODdhMTBmNGYtMDI1Zi00YmQ5LWIzMjQtMWQ1MjlhZDE4NjM2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "e5c2f7e5-c626-4b72-a2e3-6f20749c5d5b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "04918145-c571-4956-b46d-c0e8e118736b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T063507Z:04918145-c571-4956-b46d-c0e8e118736b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:35:07 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:03:04.117332+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"87a10f4f-025f-4bd9-b324-1d529ad18636\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/87a10f4f-025f-4bd9-b324-1d529ad18636?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvODdhMTBmNGYtMDI1Zi00YmQ5LWIzMjQtMWQ1MjlhZDE4NjM2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "30dbd7c4-cbd6-451d-ac68-516f6dfc58e9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "82d902f9-3c7e-4b1a-93b5-42cf8cab23f3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T063537Z:82d902f9-3c7e-4b1a-93b5-42cf8cab23f3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:35:37 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:03:04.117332+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"87a10f4f-025f-4bd9-b324-1d529ad18636\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/87a10f4f-025f-4bd9-b324-1d529ad18636?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvODdhMTBmNGYtMDI1Zi00YmQ5LWIzMjQtMWQ1MjlhZDE4NjM2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "50c02f3a-3284-4dda-a262-1c919392d6f7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "32f8721c-e10f-48ad-abaf-594109db1f86" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T063608Z:32f8721c-e10f-48ad-abaf-594109db1f86" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:36:07 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:03:04.117332+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"87a10f4f-025f-4bd9-b324-1d529ad18636\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/87a10f4f-025f-4bd9-b324-1d529ad18636?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvODdhMTBmNGYtMDI1Zi00YmQ5LWIzMjQtMWQ1MjlhZDE4NjM2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "c3a8d4b5-ebf3-4379-8643-8b910cbea43f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "ad2d25e2-8140-4348-93e2-1b5ee3aeab2e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T063638Z:ad2d25e2-8140-4348-93e2-1b5ee3aeab2e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:36:38 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:03:04.117332+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"87a10f4f-025f-4bd9-b324-1d529ad18636\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/87a10f4f-025f-4bd9-b324-1d529ad18636?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvODdhMTBmNGYtMDI1Zi00YmQ5LWIzMjQtMWQ1MjlhZDE4NjM2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "75db0cb4-7279-41e0-a908-6253b6dc5fb5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "ca53aba5-b23c-44b1-94d5-a8cadd481985" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T063708Z:ca53aba5-b23c-44b1-94d5-a8cadd481985" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:37:08 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:03:04.117332+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"87a10f4f-025f-4bd9-b324-1d529ad18636\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/87a10f4f-025f-4bd9-b324-1d529ad18636?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvODdhMTBmNGYtMDI1Zi00YmQ5LWIzMjQtMWQ1MjlhZDE4NjM2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "d6e77f09-f54d-4cda-97e5-891b540ead48" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "96c27c92-cc81-461d-ba3c-f9b6a5c5b66b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T063738Z:96c27c92-cc81-461d-ba3c-f9b6a5c5b66b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:37:38 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:03:04.117332+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"87a10f4f-025f-4bd9-b324-1d529ad18636\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/87a10f4f-025f-4bd9-b324-1d529ad18636?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvODdhMTBmNGYtMDI1Zi00YmQ5LWIzMjQtMWQ1MjlhZDE4NjM2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "0ea14e7c-077e-44ba-adb9-7d0f9563696b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "fae33354-9171-4a6f-b90b-1851f844004b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T063809Z:fae33354-9171-4a6f-b90b-1851f844004b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:38:08 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:03:04.117332+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"87a10f4f-025f-4bd9-b324-1d529ad18636\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/87a10f4f-025f-4bd9-b324-1d529ad18636?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvODdhMTBmNGYtMDI1Zi00YmQ5LWIzMjQtMWQ1MjlhZDE4NjM2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "a6cf6471-e96c-465f-85c6-2ce7f0cea282" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "d5bb424a-cbb1-498f-bf11-d49bb25aeac3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T063839Z:d5bb424a-cbb1-498f-bf11-d49bb25aeac3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:38:39 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:03:04.117332+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"87a10f4f-025f-4bd9-b324-1d529ad18636\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/87a10f4f-025f-4bd9-b324-1d529ad18636?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvODdhMTBmNGYtMDI1Zi00YmQ5LWIzMjQtMWQ1MjlhZDE4NjM2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "558c06d3-4410-419c-9550-cd8ca3522c52" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "741c1dcf-b15b-48f3-bffc-882462a204fe" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T063909Z:741c1dcf-b15b-48f3-bffc-882462a204fe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:39:09 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:03:04.117332+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"87a10f4f-025f-4bd9-b324-1d529ad18636\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/87a10f4f-025f-4bd9-b324-1d529ad18636?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvODdhMTBmNGYtMDI1Zi00YmQ5LWIzMjQtMWQ1MjlhZDE4NjM2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "f174ff2d-99fd-4484-a728-638458eafa9f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "9f59f3a6-2ee3-4168-aa9e-c38ca8ae6db1" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T063940Z:9f59f3a6-2ee3-4168-aa9e-c38ca8ae6db1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:39:39 GMT" + ], + "Content-Length": [ + "133" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:03:04.117332+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"87a10f4f-025f-4bd9-b324-1d529ad18636\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/87a10f4f-025f-4bd9-b324-1d529ad18636?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvODdhMTBmNGYtMDI1Zi00YmQ5LWIzMjQtMWQ1MjlhZDE4NjM2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "2db622a6-8848-47fa-a9cc-41eb71692740" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "aa8dc5b8-68e7-4391-9a3f-1205a50f9044" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064010Z:aa8dc5b8-68e7-4391-9a3f-1205a50f9044" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:40:10 GMT" + ], + "Content-Length": [ + "183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T12:03:04.117332+05:30\",\r\n \"endTime\": \"2021-03-14T12:09:45.0723421+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"87a10f4f-025f-4bd9-b324-1d529ad18636\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar5658/providers/Microsoft.Compute/cloudServices/cs5160?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjU2NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M1MTYwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d7d6d271-dad2-4909-94f7-41e8bd79f5d3" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;398,Microsoft.Compute/GetCloudService30Min;2598" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "ca6d4796-fc62-4731-bc6a-5f7863c0982c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064011Z:ca6d4796-fc62-4731-bc6a-5f7863c0982c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:40:10 GMT" + ], + "Content-Length": [ + "3250" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs5160\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR5658/providers/Microsoft.Compute/cloudServices/cs5160\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb3438\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe8935\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar5658/providers/Microsoft.Network/publicIPAddresses/cspip5764\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"171eabab-1b5a-4dab-90b1-53269538fc0a\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar5658/providers/Microsoft.Compute/cloudServices/cs5160?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjU2NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M1MTYwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a06b1652-0b7f-4e61-91d9-c3ba767fb41f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f44c0e85-d260-47e9-ad6f-a4b3ce108e5b" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;397,Microsoft.Compute/GetCloudService30Min;2597" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "cfcf6639-5d33-4fc6-84b9-b309c11ca675" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064011Z:cfcf6639-5d33-4fc6-84b9-b309c11ca675" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:40:11 GMT" + ], + "Content-Length": [ + "3250" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs5160\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR5658/providers/Microsoft.Compute/cloudServices/cs5160\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb3438\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe8935\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar5658/providers/Microsoft.Network/publicIPAddresses/cspip5764\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"171eabab-1b5a-4dab-90b1-53269538fc0a\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar5658/providers/Microsoft.Compute/cloudServices/cs5160/instanceView?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjU2NTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M1MTYwL2luc3RhbmNlVmlldz9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2712de12-0b0b-406e-899a-c7af24c0073e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "f1dc3982-703f-480a-b6e3-46a61bfa34c4" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;396,Microsoft.Compute/GetCloudService30Min;2596" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "aeaad528-c8b2-433d-98cb-e51ad3b68fdc" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064011Z:aeaad528-c8b2-433d-98cb-e51ad3b68fdc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:40:11 GMT" + ], + "Content-Length": [ + "1082" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"roleInstance\": {\r\n \"statusesSummary\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"count\": 4\r\n },\r\n {\r\n \"code\": \"PowerState/started\",\r\n \"count\": 4\r\n },\r\n {\r\n \"code\": \"RoleState/RoleStateStarted\",\r\n \"count\": 4\r\n }\r\n ]\r\n },\r\n \"sdkVersion\": \"2.9.8699.20\",\r\n \"privateIds\": [\r\n \"e97ea460-1b21-491c-8cc3-8ea8e3562765\"\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2021-03-14T12:09:45.0254334+05:30\"\r\n },\r\n {\r\n \"code\": \"PowerState/started\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Started\",\r\n \"time\": \"2021-03-14T12:09:45.0254334+05:30\"\r\n },\r\n {\r\n \"code\": \"CurrentUpgradeDomain/-1\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Current Upgrade Domain of cloud service is -1.\"\r\n },\r\n {\r\n \"code\": \"MaxUpgradeDomain/1\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Max Upgrade Domain of cloud service is 1.\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar5658?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjU2NTg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c97c1094-6ae1-4b0c-ba49-f07c2b445c73" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI1NjU4LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "1ecbbfc1-01d1-4bc5-a6d9-46fe40b086cf" + ], + "x-ms-correlation-request-id": [ + "1ecbbfc1-01d1-4bc5-a6d9-46fe40b086cf" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210314T064015Z:1ecbbfc1-01d1-4bc5-a6d9-46fe40b086cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 14 Mar 2021 06:40:15 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + } + ], + "Names": { + "TestCloudServiceOperationsInternal": [ + "crptestar5658", + "cs5160", + "cspip5764", + "csvnet8039", + "subnet2331", + "dns7828", + "lb3438", + "lbfe8935" + ], + "CreateCspkgSasUrl": [ + "saforcspkg9363", + "asforcspkg9920" + ] + }, + "Variables": { + "SubscriptionId": "0296790d-427c-48ca-b204-8b729bbd8670" + } +} \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceUpdateTests/TestCloudServiceOperations_ScaleIn_ScaleOut.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceUpdateTests/TestCloudServiceOperations_ScaleIn_ScaleOut.json new file mode 100644 index 0000000000000..96ec5929bd6d9 --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceUpdateTests/TestCloudServiceOperations_ScaleIn_ScaleOut.json @@ -0,0 +1,5269 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar3628?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjM2Mjg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar3628\": \"2021-03-22 08:06:36Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9dbed261-dc97-41cc-892d-8b42eecd032e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "93" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "829e27d8-d120-41ff-bdff-22435e1fa7c2" + ], + "x-ms-correlation-request-id": [ + "829e27d8-d120-41ff-bdff-22435e1fa7c2" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T080638Z:829e27d8-d120-41ff-bdff-22435e1fa7c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:06:38 GMT" + ], + "Content-Length": [ + "228" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628\",\r\n \"name\": \"crptestar3628\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar3628\": \"2021-03-22 08:06:36Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar3628?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjM2Mjg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar3628\": \"2021-03-22 08:06:56Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "70aa1234-1a62-48ab-a702-3b0001a09bfe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "93" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "24a5dd9b-9f7a-434e-b99a-48e37bdd6546" + ], + "x-ms-correlation-request-id": [ + "24a5dd9b-9f7a-434e-b99a-48e37bdd6546" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T080657Z:24a5dd9b-9f7a-434e-b99a-48e37bdd6546" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:06:56 GMT" + ], + "Content-Length": [ + "228" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628\",\r\n \"name\": \"crptestar3628\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar3628\": \"2021-03-22 08:06:56Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar3628?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjM2Mjg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e506f97-e7de-4553-a667-6d119b1d79f0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "512a5ded-9ee5-49f3-9c69-39eed434a849" + ], + "x-ms-correlation-request-id": [ + "512a5ded-9ee5-49f3-9c69-39eed434a849" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T080737Z:512a5ded-9ee5-49f3-9c69-39eed434a849" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:07:36 GMT" + ], + "Content-Length": [ + "180" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628\",\r\n \"name\": \"crptestar3628\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar3628?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjM2Mjg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "00358e2a-e4b1-42b9-be40-84580a83300a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "f33f19ff-5783-4fe5-bb4f-16b44b566b41" + ], + "x-ms-correlation-request-id": [ + "f33f19ff-5783-4fe5-bb4f-16b44b566b41" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T081120Z:f33f19ff-5783-4fe5-bb4f-16b44b566b41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:11:20 GMT" + ], + "Content-Length": [ + "180" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628\",\r\n \"name\": \"crptestar3628\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar3628?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjM2Mjg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fdd91947-c3f4-485d-bd12-da1ebc210b6b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "b6dcc7ec-f9c4-4eef-8455-3a80eb873732" + ], + "x-ms-correlation-request-id": [ + "b6dcc7ec-f9c4-4eef-8455-3a80eb873732" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T081227Z:b6dcc7ec-f9c4-4eef-8455-3a80eb873732" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:12:27 GMT" + ], + "Content-Length": [ + "180" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628\",\r\n \"name\": \"crptestar3628\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar3628?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjM2Mjg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e161c5c9-c870-4f2b-a351-e281c20b3dd6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "321c8158-1375-43e5-bf74-50033bd6de50" + ], + "x-ms-correlation-request-id": [ + "321c8158-1375-43e5-bf74-50033bd6de50" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T081608Z:321c8158-1375-43e5-bf74-50033bd6de50" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:16:08 GMT" + ], + "Content-Length": [ + "180" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628\",\r\n \"name\": \"crptestar3628\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Network/virtualNetworks/csvnet4221?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM2MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9jc3ZuZXQ0MjIxP2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"subnet1148\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a9586d46-3d3a-4de1-a334-db1786d2812d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "297" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "e29a4912-dd6a-4352-ba90-b76c01b43436" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/e29a4912-dd6a-4352-ba90-b76c01b43436?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "4e7f864d-15b4-4f62-8898-96b448779806" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "7a73b148-8489-4e79-b1d3-b07e7c5695a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T080646Z:4e7f864d-15b4-4f62-8898-96b448779806" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:06:46 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"csvnet4221\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Network/virtualNetworks/csvnet4221\",\r\n \"etag\": \"W/\\\"cea1745c-0d9e-4e8e-b3d0-4c42a146fc7d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"cb4f8cf0-10ab-429b-9ff6-0e7aaaf17413\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1148\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Network/virtualNetworks/csvnet4221/subnets/subnet1148\",\r\n \"etag\": \"W/\\\"cea1745c-0d9e-4e8e-b3d0-4c42a146fc7d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/e29a4912-dd6a-4352-ba90-b76c01b43436?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2UyOWE0OTEyLWRkNmEtNDM1Mi1iYTkwLWI3NmMwMWI0MzQzNj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5482a13a-951f-4c8e-aa1a-b09c4cdc3c6f" + ], + "x-ms-correlation-request-id": [ + "c2b45b8e-9fd4-4ec7-82f6-cad7476bed87" + ], + "x-ms-arm-service-request-id": [ + "f4ec93c7-3ab4-4b20-88d9-c722049d8e47" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T080650Z:c2b45b8e-9fd4-4ec7-82f6-cad7476bed87" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:06:50 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Network/virtualNetworks/csvnet4221?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM2MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9jc3ZuZXQ0MjIxP2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"8c8c6851-0d5a-4032-882b-9ea3527aebbe\"" + ], + "x-ms-request-id": [ + "90710191-e083-4862-9423-549e65011afb" + ], + "x-ms-correlation-request-id": [ + "bd311a99-1539-4179-bb11-5b46b6595987" + ], + "x-ms-arm-service-request-id": [ + "847c34eb-ce2a-4906-b4d4-73b3112b91b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T080650Z:bd311a99-1539-4179-bb11-5b46b6595987" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:06:50 GMT" + ], + "Content-Length": [ + "1234" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"csvnet4221\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Network/virtualNetworks/csvnet4221\",\r\n \"etag\": \"W/\\\"8c8c6851-0d5a-4032-882b-9ea3527aebbe\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cb4f8cf0-10ab-429b-9ff6-0e7aaaf17413\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1148\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Network/virtualNetworks/csvnet4221/subnets/subnet1148\",\r\n \"etag\": \"W/\\\"8c8c6851-0d5a-4032-882b-9ea3527aebbe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Network/publicIPAddresses/cspip1029?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM2MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2NzcGlwMTAyOT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns7719\"\r\n }\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "79cfb29e-4131-41a4-b9c4-7c2244e10b57" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "163" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "21c568b1-f6a3-412e-85f4-92e2c120f2d2" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/21c568b1-f6a3-412e-85f4-92e2c120f2d2?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "fd65396d-d8d2-49a4-9d36-ba658a5659d5" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "77cfcc09-e8ef-4f18-bc3d-08f4d64f924a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T080654Z:fd65396d-d8d2-49a4-9d36-ba658a5659d5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:06:54 GMT" + ], + "Content-Length": [ + "724" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cspip1029\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Network/publicIPAddresses/cspip1029\",\r\n \"etag\": \"W/\\\"b2b76f0d-ca0e-477d-9d4b-3fd510c7285f\\\"\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e3b71e0c-e702-45ca-a7a7-3d2c29cbbb51\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns7719\",\r\n \"fqdn\": \"dns7719.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/21c568b1-f6a3-412e-85f4-92e2c120f2d2?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzIxYzU2OGIxLWY2YTMtNDEyZS04NWY0LTkyZTJjMTIwZjJkMj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "465fb9cb-59c7-4581-bac7-e59b375914cd" + ], + "x-ms-correlation-request-id": [ + "e5afc4ba-4ed0-4ede-a884-1c4d9cfaf54a" + ], + "x-ms-arm-service-request-id": [ + "5bca727f-49b5-4bbe-9e31-eb4fff9b79d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T080656Z:e5afc4ba-4ed0-4ede-a884-1c4d9cfaf54a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:06:55 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Network/publicIPAddresses/cspip1029?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM2MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2NzcGlwMTAyOT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"e04de61b-2cfa-42b1-abba-fbb70e6e98a4\"" + ], + "x-ms-request-id": [ + "4dd911e6-f1bf-44bd-95b9-de17b3e5d6da" + ], + "x-ms-correlation-request-id": [ + "2caf5a7c-9e70-4fc9-9204-bf0ae9cb462e" + ], + "x-ms-arm-service-request-id": [ + "b5307386-bdd6-4228-b208-affe4dfb7334" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T080656Z:2caf5a7c-9e70-4fc9-9204-bf0ae9cb462e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:06:56 GMT" + ], + "Content-Length": [ + "725" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cspip1029\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Network/publicIPAddresses/cspip1029\",\r\n \"etag\": \"W/\\\"e04de61b-2cfa-42b1-abba-fbb70e6e98a4\\\"\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e3b71e0c-e702-45ca-a7a7-3d2c29cbbb51\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns7719\",\r\n \"fqdn\": \"dns7719.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Storage/storageAccounts/saforcspkg9395?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM2MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmNzcGtnOTM5NT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1aa83757-b1a5-4b39-a9c3-7b859c0d0ea0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "89" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Storage/locations/eastus2/asyncoperations/1d13439b-39ea-41fd-95e5-fc6309978fa2?monitor=true&api-version=2015-06-15" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "1d13439b-39ea-41fd-95e5-fc6309978fa2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "b8df4923-f855-4b45-90f0-99e6f395d6b6" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T080704Z:b8df4923-f855-4b45-90f0-99e6f395d6b6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:07:03 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Storage/locations/eastus2/asyncoperations/1d13439b-39ea-41fd-95e5-fc6309978fa2?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvMWQxMzQzOWItMzllYS00MWZkLTk1ZTUtZmM2MzA5OTc4ZmEyP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b92d699d-9af3-4a7b-8908-583dd3339f8a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "72fbba76-b757-44d5-8d90-7bc6f9bfc952" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T080722Z:72fbba76-b757-44d5-8d90-7bc6f9bfc952" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:07:21 GMT" + ], + "Content-Length": [ + "89" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM2MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fbe96cf4-fa49-488e-b797-25c89bb61952" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a77f6f9a-f2ad-42cd-a9ee-132baaf07773" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "9fbabf55-b6bb-45a7-ac58-b9091ee5c069" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T080732Z:9fbabf55-b6bb-45a7-ac58-b9091ee5c069" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:07:32 GMT" + ], + "Content-Length": [ + "747" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Storage/storageAccounts/saforcspkg9395\",\r\n \"name\": \"saforcspkg9395\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-03-22T08:07:04.1332925Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforcspkg9395.blob.core.windows.net/\",\r\n \"queue\": \"https://saforcspkg9395.queue.core.windows.net/\",\r\n \"table\": \"https://saforcspkg9395.table.core.windows.net/\",\r\n \"file\": \"https://saforcspkg9395.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Storage/storageAccounts/saforcspkg9395?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM2MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmNzcGtnOTM5NT9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44e08547-a497-4cd0-8379-03fbfa9646b6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "db0094ec-6c76-41d5-ae1f-f8a47f6964f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "d5b3196d-9573-48d0-9e41-1a7fdd375408" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T080732Z:d5b3196d-9573-48d0-9e41-1a7fdd375408" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:07:32 GMT" + ], + "Content-Length": [ + "735" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Storage/storageAccounts/saforcspkg9395\",\r\n \"name\": \"saforcspkg9395\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-03-22T08:07:04.1332925Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforcspkg9395.blob.core.windows.net/\",\r\n \"queue\": \"https://saforcspkg9395.queue.core.windows.net/\",\r\n \"table\": \"https://saforcspkg9395.table.core.windows.net/\",\r\n \"file\": \"https://saforcspkg9395.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Storage/storageAccounts/saforcspkg9395/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM2MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmNzcGtnOTM5NS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "28bd99c0-5c2c-41d3-b5d8-f3a2085af3c4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "76b3380d-f87e-45cd-9edd-480b8f018629" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "10010584-0352-4f77-ba93-7e27ac0487e3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T080733Z:10010584-0352-4f77-ba93-7e27ac0487e3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:07:33 GMT" + ], + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"FFyDeKFIb3m6azNMzwh1RoyDSD0NIG9U1qRTxeGnLCb3qbUOL7o45ENp22R91EZypKzUKRvzY2SE1VoMG5hkjA==\",\r\n \"key2\": \"Ayk7m3gSFcD7ndYk4kAxvMp/R3D6PwPeTLCNivJFLtoAz+KX9ptsg6QltdV+bVaZjRDtVrEE9zy22x9zqaOQyA==\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Compute/cloudServices/cs6290?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM2MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M2MjkwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"packageUrl\": \"https://saforcspkg9395.blob.core.windows.net/sascontainer/HelloWorldWorker_Standard_D2_v2.cspkg?sv=2017-04-17&sr=b&sig=lxTZO4vFoPdjrIoTVmKKTJY3wj2b%2BGNemaABpcLEnp4%3D&st=2021-03-21T08%3A07%3A36Z&se=2021-03-24T08%3A07%3A36Z&sp=rw\",\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb4261\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"lbfe3556\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Network/publicIPAddresses/cspip1029\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a32fc0cb-7867-4154-9240-b10e66c4b8e8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2255" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/fc03bbd9-06e6-4f9a-9038-5b8645e1976b?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fc03bbd9-06e6-4f9a-9038-5b8645e1976b" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;299" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "1d2b7a6b-44f1-4619-b2fa-e0300944514e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T080745Z:1d2b7a6b-44f1-4619-b2fa-e0300944514e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:07:45 GMT" + ], + "Content-Length": [ + "2122" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs6290\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3628/providers/Microsoft.Compute/cloudServices/cs6290\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb4261\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe3556\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Network/publicIPAddresses/cspip1029\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"uniqueId\": \"6c2dad14-ee93-47c4-8ccf-b22226948fce\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Compute/cloudServices/cs6290?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM2MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M2MjkwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"packageUrl\": \"https://saforcspkg9395.blob.core.windows.net/sascontainer/HelloWorldWorker_Standard_D2_v2.cspkg?sv=2017-04-17&sr=b&sig=lxTZO4vFoPdjrIoTVmKKTJY3wj2b%2BGNemaABpcLEnp4%3D&st=2021-03-21T08%3A07%3A36Z&se=2021-03-24T08%3A07%3A36Z&sp=rw\",\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb4261\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"lbfe3556\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Network/publicIPAddresses/cspip1029\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "28777031-681b-423f-b05b-9891591b17a9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2263" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/7a4ae706-4d0e-447b-b45f-0ad7faf3c2ef?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7a4ae706-4d0e-447b-b45f-0ad7faf3c2ef" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;298" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "e39e633f-49b3-4252-93fa-f76a7ab6f040" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T081124Z:e39e633f-49b3-4252-93fa-f76a7ab6f040" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:11:24 GMT" + ], + "Content-Length": [ + "2130" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs6290\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3628/providers/Microsoft.Compute/cloudServices/cs6290\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb4261\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe3556\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Network/publicIPAddresses/cspip1029\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"uniqueId\": \"6c2dad14-ee93-47c4-8ccf-b22226948fce\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Compute/cloudServices/cs6290?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM2MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M2MjkwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"packageUrl\": \"https://saforcspkg9395.blob.core.windows.net/sascontainer/HelloWorldWorker_Standard_D2_v2.cspkg?sv=2017-04-17&sr=b&sig=lxTZO4vFoPdjrIoTVmKKTJY3wj2b%2BGNemaABpcLEnp4%3D&st=2021-03-21T08%3A07%3A36Z&se=2021-03-24T08%3A07%3A36Z&sp=rw\",\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb4261\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"lbfe3556\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Network/publicIPAddresses/cspip1029\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e366167-5762-4fac-b182-bf5e100a2d16" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2255" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/18dbbd65-5937-466c-8b0c-dc9e57a9185a?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "18dbbd65-5937-466c-8b0c-dc9e57a9185a" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;297" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "3954f07d-61e7-46b4-9eb3-52d4432b4c2b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T081232Z:3954f07d-61e7-46b4-9eb3-52d4432b4c2b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:12:31 GMT" + ], + "Content-Length": [ + "2122" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs6290\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3628/providers/Microsoft.Compute/cloudServices/cs6290\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb4261\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe3556\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Network/publicIPAddresses/cspip1029\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"uniqueId\": \"6c2dad14-ee93-47c4-8ccf-b22226948fce\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Compute/cloudServices/cs6290?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM2MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M2MjkwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"packageUrl\": \"https://saforcspkg9395.blob.core.windows.net/sascontainer/HelloWorldWorker_Standard_D2_v2.cspkg?sv=2017-04-17&sr=b&sig=lxTZO4vFoPdjrIoTVmKKTJY3wj2b%2BGNemaABpcLEnp4%3D&st=2021-03-21T08%3A07%3A36Z&se=2021-03-24T08%3A07%3A36Z&sp=rw\",\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb4261\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"lbfe3556\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Network/publicIPAddresses/cspip1029\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0500649c-d9b2-4d4a-b7ba-97a5a9a910d8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2255" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/187a4108-de24-4f9c-986d-fae5d26d0bf6?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "187a4108-de24-4f9c-986d-fae5d26d0bf6" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;296" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "05a9b154-4107-440a-b116-0a2849928306" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T081612Z:05a9b154-4107-440a-b116-0a2849928306" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:16:12 GMT" + ], + "Content-Length": [ + "2122" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs6290\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3628/providers/Microsoft.Compute/cloudServices/cs6290\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb4261\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe3556\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Network/publicIPAddresses/cspip1029\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"uniqueId\": \"6c2dad14-ee93-47c4-8ccf-b22226948fce\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/fc03bbd9-06e6-4f9a-9038-5b8645e1976b?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZmMwM2JiZDktMDZlNi00ZjlhLTkwMzgtNWI4NjQ1ZTE5NzZiP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "37ee6c64-d556-4cbb-b19e-ee47895d7bf1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "eb715695-0666-488c-940a-2313ce1362ac" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T080816Z:eb715695-0666-488c-940a-2313ce1362ac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:08:15 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:37:43.8250719+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fc03bbd9-06e6-4f9a-9038-5b8645e1976b\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/fc03bbd9-06e6-4f9a-9038-5b8645e1976b?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZmMwM2JiZDktMDZlNi00ZjlhLTkwMzgtNWI4NjQ1ZTE5NzZiP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "28a30d90-46e9-43e0-86f2-a82c16f339e6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "f6397cb5-bb46-4f07-a637-ddb07e1e079d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T080846Z:f6397cb5-bb46-4f07-a637-ddb07e1e079d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:08:45 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:37:43.8250719+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fc03bbd9-06e6-4f9a-9038-5b8645e1976b\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/fc03bbd9-06e6-4f9a-9038-5b8645e1976b?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZmMwM2JiZDktMDZlNi00ZjlhLTkwMzgtNWI4NjQ1ZTE5NzZiP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "de1ca80a-b151-4695-8942-841cfe5b926d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "a7a2c6fb-fb7d-49cf-9876-1740cd4da05b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T080917Z:a7a2c6fb-fb7d-49cf-9876-1740cd4da05b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:09:16 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:37:43.8250719+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fc03bbd9-06e6-4f9a-9038-5b8645e1976b\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/fc03bbd9-06e6-4f9a-9038-5b8645e1976b?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZmMwM2JiZDktMDZlNi00ZjlhLTkwMzgtNWI4NjQ1ZTE5NzZiP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "d84aa9a4-1100-4d16-80ac-79961da7d3ae" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "3652a71a-de26-4191-bc94-b5c43087f9f5" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T080947Z:3652a71a-de26-4191-bc94-b5c43087f9f5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:09:46 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:37:43.8250719+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fc03bbd9-06e6-4f9a-9038-5b8645e1976b\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/fc03bbd9-06e6-4f9a-9038-5b8645e1976b?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZmMwM2JiZDktMDZlNi00ZjlhLTkwMzgtNWI4NjQ1ZTE5NzZiP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "8db88178-01b7-4b18-a4b0-8e473f7746b5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "1c1eb660-2221-42e3-8316-55a077c6f70a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T081017Z:1c1eb660-2221-42e3-8316-55a077c6f70a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:10:16 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:37:43.8250719+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fc03bbd9-06e6-4f9a-9038-5b8645e1976b\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/fc03bbd9-06e6-4f9a-9038-5b8645e1976b?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZmMwM2JiZDktMDZlNi00ZjlhLTkwMzgtNWI4NjQ1ZTE5NzZiP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "44c09906-19eb-4884-82f0-dc9ba105160a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "87a98f51-34a5-459b-9c9d-a552ae879ad1" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T081047Z:87a98f51-34a5-459b-9c9d-a552ae879ad1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:10:46 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:37:43.8250719+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fc03bbd9-06e6-4f9a-9038-5b8645e1976b\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/fc03bbd9-06e6-4f9a-9038-5b8645e1976b?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvZmMwM2JiZDktMDZlNi00ZjlhLTkwMzgtNWI4NjQ1ZTE5NzZiP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "dfe18109-d581-4f60-94c4-00ea9ab9f6d8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "dba166a7-a2b2-46ab-b634-53d1a3395836" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T081118Z:dba166a7-a2b2-46ab-b634-53d1a3395836" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:11:17 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:37:43.8250719+05:30\",\r\n \"endTime\": \"2021-03-22T13:40:58.3482294+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fc03bbd9-06e6-4f9a-9038-5b8645e1976b\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Compute/cloudServices/cs6290?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM2MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M2MjkwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1f4dc658-e920-4181-99f2-b6d3eb7a8d3d" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;398,Microsoft.Compute/GetCloudService30Min;2595" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "6b6bb8ca-863d-4cfe-ba57-8c11450a7b9a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T081118Z:6b6bb8ca-863d-4cfe-ba57-8c11450a7b9a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:11:18 GMT" + ], + "Content-Length": [ + "2123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs6290\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3628/providers/Microsoft.Compute/cloudServices/cs6290\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb4261\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe3556\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Network/publicIPAddresses/cspip1029\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"6c2dad14-ee93-47c4-8ccf-b22226948fce\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Compute/cloudServices/cs6290?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM2MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M2MjkwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "00817f32-deab-4c5b-b770-cd35501abbd7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a5cf01e5-fca2-4c99-a4ab-91bfceb3cf6b" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;397,Microsoft.Compute/GetCloudService30Min;2594" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "1b94577e-3347-48a2-b48e-8f4ec1f5e62b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T081118Z:1b94577e-3347-48a2-b48e-8f4ec1f5e62b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:11:18 GMT" + ], + "Content-Length": [ + "2123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs6290\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3628/providers/Microsoft.Compute/cloudServices/cs6290\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb4261\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe3556\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Network/publicIPAddresses/cspip1029\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"6c2dad14-ee93-47c4-8ccf-b22226948fce\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Compute/cloudServices/cs6290?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM2MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M2MjkwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "60c93b38-f1ee-40d8-b07a-91f0140cac20" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;396,Microsoft.Compute/GetCloudService30Min;2593" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "a35b30a7-c39c-4df4-80eb-42c47362623d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T081225Z:a35b30a7-c39c-4df4-80eb-42c47362623d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:12:24 GMT" + ], + "Content-Length": [ + "2131" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs6290\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3628/providers/Microsoft.Compute/cloudServices/cs6290\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb4261\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe3556\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Network/publicIPAddresses/cspip1029\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"6c2dad14-ee93-47c4-8ccf-b22226948fce\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Compute/cloudServices/cs6290?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM2MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M2MjkwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee05da8c-8b20-428c-9909-83d2a3276f0d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7fb476f3-34e7-4442-8e75-317d358c5f3f" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;395,Microsoft.Compute/GetCloudService30Min;2592" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "e8fffbc8-36bf-47e3-a32f-4e0ecae091cf" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T081225Z:e8fffbc8-36bf-47e3-a32f-4e0ecae091cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:12:24 GMT" + ], + "Content-Length": [ + "2131" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs6290\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3628/providers/Microsoft.Compute/cloudServices/cs6290\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb4261\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe3556\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Network/publicIPAddresses/cspip1029\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"6c2dad14-ee93-47c4-8ccf-b22226948fce\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Compute/cloudServices/cs6290?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM2MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M2MjkwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9bfa8968-5cbe-463a-a71c-5118bd2376d6" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;399,Microsoft.Compute/GetCloudService30Min;2591" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "7ad817a2-46af-42e9-9732-242ff0ee5292" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T081605Z:7ad817a2-46af-42e9-9732-242ff0ee5292" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:16:04 GMT" + ], + "Content-Length": [ + "2123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs6290\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3628/providers/Microsoft.Compute/cloudServices/cs6290\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb4261\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe3556\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Network/publicIPAddresses/cspip1029\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"6c2dad14-ee93-47c4-8ccf-b22226948fce\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Compute/cloudServices/cs6290?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM2MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M2MjkwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "72b55a94-abc4-49b5-a0f5-7fe679fba1ba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ed880b03-0886-4b82-9416-aeec031433b1" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;398,Microsoft.Compute/GetCloudService30Min;2590" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "38407d9d-b01e-4d36-9d35-b01ee178ab21" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T081605Z:38407d9d-b01e-4d36-9d35-b01ee178ab21" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:16:04 GMT" + ], + "Content-Length": [ + "2123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs6290\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3628/providers/Microsoft.Compute/cloudServices/cs6290\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb4261\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe3556\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Network/publicIPAddresses/cspip1029\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"6c2dad14-ee93-47c4-8ccf-b22226948fce\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Compute/cloudServices/cs6290?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM2MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M2MjkwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "68955fda-2208-4c2f-8f0c-cdb5a857bac7" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;398,Microsoft.Compute/GetCloudService30Min;2587" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-correlation-request-id": [ + "b5bd7738-b0ad-462e-a861-78736c22bf8f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T082448Z:b5bd7738-b0ad-462e-a861-78736c22bf8f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:24:47 GMT" + ], + "Content-Length": [ + "2123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs6290\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3628/providers/Microsoft.Compute/cloudServices/cs6290\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb4261\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe3556\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Network/publicIPAddresses/cspip1029\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"6c2dad14-ee93-47c4-8ccf-b22226948fce\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Compute/cloudServices/cs6290?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM2MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M2MjkwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9556606f-0bee-4959-8c75-474242165a20" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b67a0242-3dfa-49ca-826f-7adfb3ac15c6" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;397,Microsoft.Compute/GetCloudService30Min;2586" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-correlation-request-id": [ + "95a85142-b11c-4609-a5fb-cc245566d0da" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T082448Z:95a85142-b11c-4609-a5fb-cc245566d0da" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:24:47 GMT" + ], + "Content-Length": [ + "2123" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs6290\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3628/providers/Microsoft.Compute/cloudServices/cs6290\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb4261\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe3556\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Network/publicIPAddresses/cspip1029\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"6c2dad14-ee93-47c4-8ccf-b22226948fce\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/7a4ae706-4d0e-447b-b45f-0ad7faf3c2ef?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvN2E0YWU3MDYtNGQwZS00NDdiLWI0NWYtMGFkN2ZhZjNjMmVmP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "a1a018a2-f9b6-4692-a3a1-59832973a6ed" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "2daa16f9-7514-46f7-ba38-0932685f2014" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T081154Z:2daa16f9-7514-46f7-ba38-0932685f2014" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:11:54 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:41:22.1460236+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7a4ae706-4d0e-447b-b45f-0ad7faf3c2ef\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/7a4ae706-4d0e-447b-b45f-0ad7faf3c2ef?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvN2E0YWU3MDYtNGQwZS00NDdiLWI0NWYtMGFkN2ZhZjNjMmVmP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "2d7708b4-9bcd-4ae5-8f7f-943f660b6d26" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "e842cf07-fe41-400d-8bd6-a4d2d0637817" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T081225Z:e842cf07-fe41-400d-8bd6-a4d2d0637817" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:12:24 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:41:22.1460236+05:30\",\r\n \"endTime\": \"2021-03-22T13:42:18.4606993+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7a4ae706-4d0e-447b-b45f-0ad7faf3c2ef\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/18dbbd65-5937-466c-8b0c-dc9e57a9185a?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMThkYmJkNjUtNTkzNy00NjZjLThiMGMtZGM5ZTU3YTkxODVhP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "bfefea9e-4373-4142-a53e-5bcd6d5c80df" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "3c71d5ea-aa8b-47e3-b87b-61af90bf307c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T081303Z:3c71d5ea-aa8b-47e3-b87b-61af90bf307c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:13:03 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:42:30.0236405+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"18dbbd65-5937-466c-8b0c-dc9e57a9185a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/18dbbd65-5937-466c-8b0c-dc9e57a9185a?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMThkYmJkNjUtNTkzNy00NjZjLThiMGMtZGM5ZTU3YTkxODVhP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "beb83e87-9f22-42e7-bfcd-4bad21ced8da" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "4f0e9e72-fbae-4768-a31a-842117098905" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T081333Z:4f0e9e72-fbae-4768-a31a-842117098905" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:13:33 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:42:30.0236405+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"18dbbd65-5937-466c-8b0c-dc9e57a9185a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/18dbbd65-5937-466c-8b0c-dc9e57a9185a?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMThkYmJkNjUtNTkzNy00NjZjLThiMGMtZGM5ZTU3YTkxODVhP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "0525af0e-a0ac-4e9f-a422-525fcada5c5d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "545377a0-d5b0-456c-91c8-2c48b3349ee9" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T081403Z:545377a0-d5b0-456c-91c8-2c48b3349ee9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:14:03 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:42:30.0236405+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"18dbbd65-5937-466c-8b0c-dc9e57a9185a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/18dbbd65-5937-466c-8b0c-dc9e57a9185a?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMThkYmJkNjUtNTkzNy00NjZjLThiMGMtZGM5ZTU3YTkxODVhP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "0b090dfa-a4d4-487f-8713-39020aae4da0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "876f5096-880b-4e13-a557-f185e33dae41" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T081434Z:876f5096-880b-4e13-a557-f185e33dae41" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:14:33 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:42:30.0236405+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"18dbbd65-5937-466c-8b0c-dc9e57a9185a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/18dbbd65-5937-466c-8b0c-dc9e57a9185a?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMThkYmJkNjUtNTkzNy00NjZjLThiMGMtZGM5ZTU3YTkxODVhP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "7fcf12d8-1df4-4b65-82f3-2883d6d7228c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "caf7622e-7a4f-4eff-96a1-42f709e134be" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T081504Z:caf7622e-7a4f-4eff-96a1-42f709e134be" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:15:04 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:42:30.0236405+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"18dbbd65-5937-466c-8b0c-dc9e57a9185a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/18dbbd65-5937-466c-8b0c-dc9e57a9185a?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMThkYmJkNjUtNTkzNy00NjZjLThiMGMtZGM5ZTU3YTkxODVhP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "7752485e-5477-4edf-94e3-5489df4392e9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "4e22fe83-c368-42e7-8a50-7822b6494c0c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T081534Z:4e22fe83-c368-42e7-8a50-7822b6494c0c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:15:34 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:42:30.0236405+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"18dbbd65-5937-466c-8b0c-dc9e57a9185a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/18dbbd65-5937-466c-8b0c-dc9e57a9185a?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMThkYmJkNjUtNTkzNy00NjZjLThiMGMtZGM5ZTU3YTkxODVhP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "5da1601e-59b9-4062-8f35-6ae2938ccc6d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "f6ade04b-ccd8-423d-8f94-80e108002593" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T081605Z:f6ade04b-ccd8-423d-8f94-80e108002593" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:16:04 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:42:30.0236405+05:30\",\r\n \"endTime\": \"2021-03-22T13:45:58.0639673+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"18dbbd65-5937-466c-8b0c-dc9e57a9185a\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Compute/cloudServices/cs6290/roleInstances?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM2MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M2MjkwL3JvbGVJbnN0YW5jZXM/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e8c564c0-2df4-418e-8cdc-8a3f01268edb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bd90f8f4-7b95-4d19-958f-5890022ba410" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;397,Microsoft.Compute/GetCloudService30Min;2589" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-correlation-request-id": [ + "f6925a6e-30ab-4c9f-bd3c-39d535d5b2a7" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T081606Z:f6925a6e-30ab-4c9f-bd3c-39d535d5b2a7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:16:06 GMT" + ], + "Content-Length": [ + "1394" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"WorkerRole1_IN_0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3628/providers/Microsoft.Compute/cloudServices/cs6290/roleInstances/WorkerRole1_IN_0\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3628/providers/Microsoft.Compute/cloudServices/cs6290/roleInstances/WorkerRole1_IN_0/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1_IN_1\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3628/providers/Microsoft.Compute/cloudServices/cs6290/roleInstances/WorkerRole1_IN_1\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3628/providers/Microsoft.Compute/cloudServices/cs6290/roleInstances/WorkerRole1_IN_1/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Compute/cloudServices/cs6290/roleInstances?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM2MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M2MjkwL3JvbGVJbnN0YW5jZXM/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d1650a0a-1761-41ca-adeb-0ae14d706ed0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d8a9fc30-1d00-491f-8dbd-62577873be05" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;396,Microsoft.Compute/GetCloudService30Min;2585" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-correlation-request-id": [ + "10e838cb-1af9-436b-a768-0e8346de32a7" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T082448Z:10e838cb-1af9-436b-a768-0e8346de32a7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:24:47 GMT" + ], + "Content-Length": [ + "708" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"WorkerRole1_IN_0\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3628/providers/Microsoft.Compute/cloudServices/cs6290/roleInstances/WorkerRole1_IN_0\",\r\n \"type\": \"Microsoft.Compute/cloudServices/roleInstances\",\r\n \"location\": \"eastus2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR3628/providers/Microsoft.Compute/cloudServices/cs6290/roleInstances/WorkerRole1_IN_0/networkInterfaces/nic1\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/187a4108-de24-4f9c-986d-fae5d26d0bf6?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMTg3YTQxMDgtZGUyNC00ZjljLTk4NmQtZmFlNWQyNmQwYmY2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "84bd4ae6-2773-47f6-bed2-6d6c655aaab0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-correlation-request-id": [ + "14cf3cd1-b858-4b91-aa91-246afdddbc8b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T081642Z:14cf3cd1-b858-4b91-aa91-246afdddbc8b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:16:42 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:46:09.5332132+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"187a4108-de24-4f9c-986d-fae5d26d0bf6\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/187a4108-de24-4f9c-986d-fae5d26d0bf6?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMTg3YTQxMDgtZGUyNC00ZjljLTk4NmQtZmFlNWQyNmQwYmY2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "7ed8b7e0-284c-47c4-a942-1627e4fea9a5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "991b7fbd-43c8-4902-8991-4f13362a5f0c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T081712Z:991b7fbd-43c8-4902-8991-4f13362a5f0c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:17:12 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:46:09.5332132+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"187a4108-de24-4f9c-986d-fae5d26d0bf6\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/187a4108-de24-4f9c-986d-fae5d26d0bf6?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMTg3YTQxMDgtZGUyNC00ZjljLTk4NmQtZmFlNWQyNmQwYmY2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "94ce7495-17a3-4dd9-83c0-159709187b39" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-correlation-request-id": [ + "fa90a469-7db0-4bcb-b461-2ffdeaad2cdb" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T081743Z:fa90a469-7db0-4bcb-b461-2ffdeaad2cdb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:17:42 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:46:09.5332132+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"187a4108-de24-4f9c-986d-fae5d26d0bf6\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/187a4108-de24-4f9c-986d-fae5d26d0bf6?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMTg3YTQxMDgtZGUyNC00ZjljLTk4NmQtZmFlNWQyNmQwYmY2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "a3922e3d-b08d-49ac-8875-e23a6a3036d5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "a72b5d13-7f13-4ba9-82e1-787a2819f85e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T081813Z:a72b5d13-7f13-4ba9-82e1-787a2819f85e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:18:13 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:46:09.5332132+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"187a4108-de24-4f9c-986d-fae5d26d0bf6\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/187a4108-de24-4f9c-986d-fae5d26d0bf6?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMTg3YTQxMDgtZGUyNC00ZjljLTk4NmQtZmFlNWQyNmQwYmY2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "2d4f94d4-443d-48bd-a3d5-d44f10ae652c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-correlation-request-id": [ + "1916930c-acba-4521-991d-9b50d90f9edf" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T081844Z:1916930c-acba-4521-991d-9b50d90f9edf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:18:43 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:46:09.5332132+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"187a4108-de24-4f9c-986d-fae5d26d0bf6\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/187a4108-de24-4f9c-986d-fae5d26d0bf6?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMTg3YTQxMDgtZGUyNC00ZjljLTk4NmQtZmFlNWQyNmQwYmY2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "74c7fc27-3c8b-40cd-8670-90a4d837b5cb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-correlation-request-id": [ + "ac4c93ce-7c62-437c-bfb0-5994dc185c6d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T081914Z:ac4c93ce-7c62-437c-bfb0-5994dc185c6d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:19:13 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:46:09.5332132+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"187a4108-de24-4f9c-986d-fae5d26d0bf6\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/187a4108-de24-4f9c-986d-fae5d26d0bf6?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMTg3YTQxMDgtZGUyNC00ZjljLTk4NmQtZmFlNWQyNmQwYmY2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "876557d0-4e91-495c-acee-0adea094f9d4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-correlation-request-id": [ + "70afdd51-5ffa-48c1-8f71-5977352e152b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T081944Z:70afdd51-5ffa-48c1-8f71-5977352e152b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:19:44 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:46:09.5332132+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"187a4108-de24-4f9c-986d-fae5d26d0bf6\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/187a4108-de24-4f9c-986d-fae5d26d0bf6?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMTg3YTQxMDgtZGUyNC00ZjljLTk4NmQtZmFlNWQyNmQwYmY2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "591a798a-99cb-4f6f-9936-01a65527fe13" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-correlation-request-id": [ + "d3cf6e8d-2d71-4623-af76-5a9a110a9fed" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T082014Z:d3cf6e8d-2d71-4623-af76-5a9a110a9fed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:20:14 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:46:09.5332132+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"187a4108-de24-4f9c-986d-fae5d26d0bf6\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/187a4108-de24-4f9c-986d-fae5d26d0bf6?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMTg3YTQxMDgtZGUyNC00ZjljLTk4NmQtZmFlNWQyNmQwYmY2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "93eafe4d-35a1-4966-8aaa-3a9f907b4ae7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-correlation-request-id": [ + "d699b04c-8f03-4b7d-878e-891df15914c7" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T082045Z:d699b04c-8f03-4b7d-878e-891df15914c7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:20:44 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:46:09.5332132+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"187a4108-de24-4f9c-986d-fae5d26d0bf6\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/187a4108-de24-4f9c-986d-fae5d26d0bf6?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMTg3YTQxMDgtZGUyNC00ZjljLTk4NmQtZmFlNWQyNmQwYmY2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "397bbfbb-929a-4476-88ae-b4c38fb9f280" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-correlation-request-id": [ + "f421929b-a245-4d2f-9bf1-cfba2479ea7d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T082115Z:f421929b-a245-4d2f-9bf1-cfba2479ea7d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:21:15 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:46:09.5332132+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"187a4108-de24-4f9c-986d-fae5d26d0bf6\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/187a4108-de24-4f9c-986d-fae5d26d0bf6?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMTg3YTQxMDgtZGUyNC00ZjljLTk4NmQtZmFlNWQyNmQwYmY2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "eb7cdf34-abb9-4a37-8a9b-48ec95023bf4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "2a9c58ff-9c46-4c8c-a944-2e0a04c9a07c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T082145Z:2a9c58ff-9c46-4c8c-a944-2e0a04c9a07c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:21:45 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:46:09.5332132+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"187a4108-de24-4f9c-986d-fae5d26d0bf6\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/187a4108-de24-4f9c-986d-fae5d26d0bf6?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMTg3YTQxMDgtZGUyNC00ZjljLTk4NmQtZmFlNWQyNmQwYmY2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "541b6a18-6700-4b9c-b3f9-73dc396e012d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-correlation-request-id": [ + "a885a545-5791-40af-aa18-c6b86cb4a71e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T082216Z:a885a545-5791-40af-aa18-c6b86cb4a71e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:22:16 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:46:09.5332132+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"187a4108-de24-4f9c-986d-fae5d26d0bf6\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/187a4108-de24-4f9c-986d-fae5d26d0bf6?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMTg3YTQxMDgtZGUyNC00ZjljLTk4NmQtZmFlNWQyNmQwYmY2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "5ba70a66-c2bb-4582-99d2-46b3069ed668" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-correlation-request-id": [ + "b7fcce55-1d46-4313-a406-d768080edc1e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T082246Z:b7fcce55-1d46-4313-a406-d768080edc1e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:22:46 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:46:09.5332132+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"187a4108-de24-4f9c-986d-fae5d26d0bf6\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/187a4108-de24-4f9c-986d-fae5d26d0bf6?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMTg3YTQxMDgtZGUyNC00ZjljLTk4NmQtZmFlNWQyNmQwYmY2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "9f38829d-170c-4872-a450-8f4f4c354978" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-correlation-request-id": [ + "94b62459-9468-4c36-b02a-141a364dfb89" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T082316Z:94b62459-9468-4c36-b02a-141a364dfb89" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:23:15 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:46:09.5332132+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"187a4108-de24-4f9c-986d-fae5d26d0bf6\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/187a4108-de24-4f9c-986d-fae5d26d0bf6?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMTg3YTQxMDgtZGUyNC00ZjljLTk4NmQtZmFlNWQyNmQwYmY2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "b5ee87ca-eec1-4c4a-b53f-33cb2f1daf51" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-correlation-request-id": [ + "6d19cd09-4553-496b-8bef-b6171ac1e795" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T082347Z:6d19cd09-4553-496b-8bef-b6171ac1e795" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:23:46 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:46:09.5332132+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"187a4108-de24-4f9c-986d-fae5d26d0bf6\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/187a4108-de24-4f9c-986d-fae5d26d0bf6?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMTg3YTQxMDgtZGUyNC00ZjljLTk4NmQtZmFlNWQyNmQwYmY2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "09d1f720-1179-4d4d-8284-20577d2fdab8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-correlation-request-id": [ + "17815371-3566-4a70-a315-8719f0a73164" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T082417Z:17815371-3566-4a70-a315-8719f0a73164" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:24:16 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:46:09.5332132+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"187a4108-de24-4f9c-986d-fae5d26d0bf6\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/187a4108-de24-4f9c-986d-fae5d26d0bf6?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMTg3YTQxMDgtZGUyNC00ZjljLTk4NmQtZmFlNWQyNmQwYmY2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "d6b77a95-1622-430d-9b34-675b2754aff9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-correlation-request-id": [ + "1b7a284f-7061-4fe5-8239-ae31b1d259f1" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T082447Z:1b7a284f-7061-4fe5-8239-ae31b1d259f1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:24:46 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:46:09.5332132+05:30\",\r\n \"endTime\": \"2021-03-22T13:54:21.1170018+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"187a4108-de24-4f9c-986d-fae5d26d0bf6\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar3628/providers/Microsoft.Compute/cloudServices/cs6290?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjM2MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3M2MjkwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4acbeaa0-79a8-440d-9a7b-1f68bd1d31ca" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/0f39c9d8-5d72-4e6b-8644-2c156f9e97e3?monitor=true&api-version=2021-03-01" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/0f39c9d8-5d72-4e6b-8644-2c156f9e97e3?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0f39c9d8-5d72-4e6b-8644-2c156f9e97e3" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;295" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "8b8f1179-fe8e-4822-8670-838a5acc3d3f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T082450Z:8b8f1179-fe8e-4822-8670-838a5acc3d3f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:24:49 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/0f39c9d8-5d72-4e6b-8644-2c156f9e97e3?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMGYzOWM5ZDgtNWQ3Mi00ZTZiLTg2NDQtMmMxNTZmOWU5N2UzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "6639f26c-6d09-46b9-bee3-8cf1b8630bbf" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-correlation-request-id": [ + "9ef5d437-3b4d-40e6-802a-a628e86d401d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T082520Z:9ef5d437-3b4d-40e6-802a-a628e86d401d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:25:20 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:54:49.9932252+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0f39c9d8-5d72-4e6b-8644-2c156f9e97e3\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/0f39c9d8-5d72-4e6b-8644-2c156f9e97e3?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMGYzOWM5ZDgtNWQ3Mi00ZTZiLTg2NDQtMmMxNTZmOWU5N2UzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "f38e5afc-680f-44ca-a3b8-e630961d1311" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-correlation-request-id": [ + "586d2ae5-cd69-40a8-b68e-a474aa8769dd" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T082550Z:586d2ae5-cd69-40a8-b68e-a474aa8769dd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:25:49 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:54:49.9932252+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0f39c9d8-5d72-4e6b-8644-2c156f9e97e3\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/0f39c9d8-5d72-4e6b-8644-2c156f9e97e3?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMGYzOWM5ZDgtNWQ3Mi00ZTZiLTg2NDQtMmMxNTZmOWU5N2UzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "40c9a546-a5d1-429c-a150-55d23d40dbd9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "603ed5f2-c956-4693-bb31-18cc695be838" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T082620Z:603ed5f2-c956-4693-bb31-18cc695be838" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:26:19 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:54:49.9932252+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0f39c9d8-5d72-4e6b-8644-2c156f9e97e3\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/0f39c9d8-5d72-4e6b-8644-2c156f9e97e3?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMGYzOWM5ZDgtNWQ3Mi00ZTZiLTg2NDQtMmMxNTZmOWU5N2UzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "ddb20048-5898-46a5-aabe-2b45f6ed2647" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-correlation-request-id": [ + "7e285c7b-e406-4710-9a41-c888d7ae0f84" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T082651Z:7e285c7b-e406-4710-9a41-c888d7ae0f84" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:26:51 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:54:49.9932252+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0f39c9d8-5d72-4e6b-8644-2c156f9e97e3\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/0f39c9d8-5d72-4e6b-8644-2c156f9e97e3?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMGYzOWM5ZDgtNWQ3Mi00ZTZiLTg2NDQtMmMxNTZmOWU5N2UzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "cfba8f9c-099a-4846-b333-fa2a026d56db" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-correlation-request-id": [ + "50308c32-1c09-45ed-a253-f1fd8bab6338" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T082722Z:50308c32-1c09-45ed-a253-f1fd8bab6338" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:27:21 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:54:49.9932252+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0f39c9d8-5d72-4e6b-8644-2c156f9e97e3\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/0f39c9d8-5d72-4e6b-8644-2c156f9e97e3?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMGYzOWM5ZDgtNWQ3Mi00ZTZiLTg2NDQtMmMxNTZmOWU5N2UzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "f72174f4-b58c-4634-abae-fb8971cc9e43" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], + "x-ms-correlation-request-id": [ + "0c911870-9428-4561-b19b-f1a97c0324f4" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T082752Z:0c911870-9428-4561-b19b-f1a97c0324f4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:27:51 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:54:49.9932252+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0f39c9d8-5d72-4e6b-8644-2c156f9e97e3\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/0f39c9d8-5d72-4e6b-8644-2c156f9e97e3?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMGYzOWM5ZDgtNWQ3Mi00ZTZiLTg2NDQtMmMxNTZmOWU5N2UzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "8f5c2079-a24e-46d5-a8c6-f3fe7ecb3838" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-correlation-request-id": [ + "49381c8d-228c-474c-9742-be649ec4e7a3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T082822Z:49381c8d-228c-474c-9742-be649ec4e7a3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:28:22 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:54:49.9932252+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0f39c9d8-5d72-4e6b-8644-2c156f9e97e3\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/0f39c9d8-5d72-4e6b-8644-2c156f9e97e3?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMGYzOWM5ZDgtNWQ3Mi00ZTZiLTg2NDQtMmMxNTZmOWU5N2UzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "f8bba5d5-aa6b-46f9-bdd2-a99f4f3bbdd8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11949" + ], + "x-ms-correlation-request-id": [ + "dffc28fd-ae57-4e71-8e87-af4b1147dd9c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T082852Z:dffc28fd-ae57-4e71-8e87-af4b1147dd9c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:28:52 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:54:49.9932252+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0f39c9d8-5d72-4e6b-8644-2c156f9e97e3\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/0f39c9d8-5d72-4e6b-8644-2c156f9e97e3?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMGYzOWM5ZDgtNWQ3Mi00ZTZiLTg2NDQtMmMxNTZmOWU5N2UzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "0ae06c26-7838-4b6e-97de-08237e06397c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" + ], + "x-ms-correlation-request-id": [ + "6a88507c-6264-4ddb-9827-dfcb99b23d83" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T082923Z:6a88507c-6264-4ddb-9827-dfcb99b23d83" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:29:22 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:54:49.9932252+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0f39c9d8-5d72-4e6b-8644-2c156f9e97e3\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/0f39c9d8-5d72-4e6b-8644-2c156f9e97e3?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMGYzOWM5ZDgtNWQ3Mi00ZTZiLTg2NDQtMmMxNTZmOWU5N2UzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "8eac454b-ac00-421b-9ad1-aa5e6fae932a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11947" + ], + "x-ms-correlation-request-id": [ + "594e03b4-e8f0-4763-a5cf-f440e0e44cbb" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T082953Z:594e03b4-e8f0-4763-a5cf-f440e0e44cbb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:29:53 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:54:49.9932252+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0f39c9d8-5d72-4e6b-8644-2c156f9e97e3\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/0f39c9d8-5d72-4e6b-8644-2c156f9e97e3?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMGYzOWM5ZDgtNWQ3Mi00ZTZiLTg2NDQtMmMxNTZmOWU5N2UzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "13e23e63-4bc9-4aa3-874c-7051a9f12208" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], + "x-ms-correlation-request-id": [ + "2a98c76f-4721-40b4-bee1-225f55de64fa" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T083023Z:2a98c76f-4721-40b4-bee1-225f55de64fa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:30:23 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:54:49.9932252+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0f39c9d8-5d72-4e6b-8644-2c156f9e97e3\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/0f39c9d8-5d72-4e6b-8644-2c156f9e97e3?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMGYzOWM5ZDgtNWQ3Mi00ZTZiLTg2NDQtMmMxNTZmOWU5N2UzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "a50a33f9-ce1e-4ad3-a08b-9a36ae0995a2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11945" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "ee531d98-9813-4753-83ec-f9e9dde919de" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T083053Z:ee531d98-9813-4753-83ec-f9e9dde919de" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:30:53 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:54:49.9932252+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0f39c9d8-5d72-4e6b-8644-2c156f9e97e3\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/0f39c9d8-5d72-4e6b-8644-2c156f9e97e3?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMGYzOWM5ZDgtNWQ3Mi00ZTZiLTg2NDQtMmMxNTZmOWU5N2UzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "c0614099-ef25-4a0b-afb4-db7dd6f441f4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11944" + ], + "x-ms-correlation-request-id": [ + "19c02c40-31d0-42e3-8db8-c0d8ac442312" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T083124Z:19c02c40-31d0-42e3-8db8-c0d8ac442312" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:31:24 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:54:49.9932252+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0f39c9d8-5d72-4e6b-8644-2c156f9e97e3\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/0f39c9d8-5d72-4e6b-8644-2c156f9e97e3?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMGYzOWM5ZDgtNWQ3Mi00ZTZiLTg2NDQtMmMxNTZmOWU5N2UzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "4c48967d-a308-41a7-b889-586914ca46ea" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11943" + ], + "x-ms-correlation-request-id": [ + "84cc19dd-47c5-4d2a-9403-43333174c628" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T083154Z:84cc19dd-47c5-4d2a-9403-43333174c628" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:31:54 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:54:49.9932252+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0f39c9d8-5d72-4e6b-8644-2c156f9e97e3\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/0f39c9d8-5d72-4e6b-8644-2c156f9e97e3?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMGYzOWM5ZDgtNWQ3Mi00ZTZiLTg2NDQtMmMxNTZmOWU5N2UzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "7fbb9e0e-abe7-447e-817f-7112acc05432" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11942" + ], + "x-ms-correlation-request-id": [ + "8635bd4a-b402-40e4-9a9c-3b684b2a1330" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T083225Z:8635bd4a-b402-40e4-9a9c-3b684b2a1330" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:32:24 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:54:49.9932252+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0f39c9d8-5d72-4e6b-8644-2c156f9e97e3\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/0f39c9d8-5d72-4e6b-8644-2c156f9e97e3?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMGYzOWM5ZDgtNWQ3Mi00ZTZiLTg2NDQtMmMxNTZmOWU5N2UzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "29bb6df1-23f0-4edb-9107-c6e950228d28" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11941" + ], + "x-ms-correlation-request-id": [ + "e0bad569-8e6e-41b7-8498-71ab2766a8c7" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T083255Z:e0bad569-8e6e-41b7-8498-71ab2766a8c7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:32:55 GMT" + ], + "Content-Length": [ + "183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-22T13:54:49.9932252+05:30\",\r\n \"endTime\": \"2021-03-22T14:02:30.907304+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0f39c9d8-5d72-4e6b-8644-2c156f9e97e3\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/0f39c9d8-5d72-4e6b-8644-2c156f9e97e3?monitor=true&api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMGYzOWM5ZDgtNWQ3Mi00ZTZiLTg2NDQtMmMxNTZmOWU5N2UzP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132583015631487447" + ], + "x-ms-request-id": [ + "40da9cc7-b965-4438-8059-6187049a157d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11940" + ], + "x-ms-correlation-request-id": [ + "b7d49320-a197-4d7f-b546-47d38d8233cf" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T083255Z:b7d49320-a197-4d7f-b546-47d38d8233cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:32:55 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar3628?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjM2Mjg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "74db0cbf-e9df-4929-a020-06880728b6e8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIzNjI4LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "0df9bc63-ed93-45ce-bb71-267f0d45cda6" + ], + "x-ms-correlation-request-id": [ + "0df9bc63-ed93-45ce-bb71-267f0d45cda6" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210322T083300Z:0df9bc63-ed93-45ce-bb71-267f0d45cda6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 22 Mar 2021 08:33:00 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + } + ], + "Names": { + "TestCloudServiceOperations_ScaleIn_ScaleOut": [ + "crptestar3628", + "cs6290", + "cspip1029", + "csvnet4221", + "subnet1148", + "dns7719", + "lb4261", + "lbfe3556" + ], + "CreateCspkgSasUrl": [ + "saforcspkg9395", + "asforcspkg3568" + ] + }, + "Variables": { + "SubscriptionId": "0296790d-427c-48ca-b204-8b729bbd8670" + } +} \ No newline at end of file diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceUpdateTests/TestCloudServiceUpdateOperations.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceUpdateTests/TestCloudServiceUpdateOperations.json new file mode 100644 index 0000000000000..69b650caf395c --- /dev/null +++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/CloudServiceUpdateTests/TestCloudServiceUpdateOperations.json @@ -0,0 +1,3401 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar2612?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjI2MTI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar2612\": \"2021-03-13 22:08:12Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c7b71947-20cf-49ed-9724-f251a9145ac5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "93" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "6b2ff5af-06cc-4991-a6de-b80fc5a172bd" + ], + "x-ms-correlation-request-id": [ + "6b2ff5af-06cc-4991-a6de-b80fc5a172bd" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220814Z:6b2ff5af-06cc-4991-a6de-b80fc5a172bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:08:13 GMT" + ], + "Content-Length": [ + "228" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612\",\r\n \"name\": \"crptestar2612\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar2612\": \"2021-03-13 22:08:12Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar2612?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjI2MTI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar2612\": \"2021-03-13 22:08:31Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9f396d7f-7b8f-4177-8843-84c63703359b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "93" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "93002bc7-752c-44b5-9c4e-f929be4883e0" + ], + "x-ms-correlation-request-id": [ + "93002bc7-752c-44b5-9c4e-f929be4883e0" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220832Z:93002bc7-752c-44b5-9c4e-f929be4883e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:08:32 GMT" + ], + "Content-Length": [ + "228" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612\",\r\n \"name\": \"crptestar2612\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar2612\": \"2021-03-13 22:08:31Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar2612?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjI2MTI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "062f73d2-56da-4bd8-9e23-82460fade5f3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "ce48589b-4cf5-4bbf-8d5c-904e79792b74" + ], + "x-ms-correlation-request-id": [ + "ce48589b-4cf5-4bbf-8d5c-904e79792b74" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T221002Z:ce48589b-4cf5-4bbf-8d5c-904e79792b74" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:10:01 GMT" + ], + "Content-Length": [ + "180" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612\",\r\n \"name\": \"crptestar2612\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar2612?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjI2MTI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar2612\": \"2021-03-13 22:16:44Z\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1d45ad4c-4284-4cb7-939b-2506589cbdcf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "93" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "bc00cf53-0f63-46a3-9c7d-f7632e20bb7b" + ], + "x-ms-correlation-request-id": [ + "bc00cf53-0f63-46a3-9c7d-f7632e20bb7b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T221647Z:bc00cf53-0f63-46a3-9c7d-f7632e20bb7b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:16:46 GMT" + ], + "Content-Length": [ + "228" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612\",\r\n \"name\": \"crptestar2612\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar2612\": \"2021-03-13 22:16:44Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Network/virtualNetworks/csvnet5608?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI2MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9jc3ZuZXQ1NjA4P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"subnet8981\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "be9a049f-ff1e-4562-b0ea-83a522ce1dd7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "297" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "81dc0c54-24d5-4856-9183-27636a7f3df7" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/81dc0c54-24d5-4856-9183-27636a7f3df7?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "91d48b90-42b6-43c0-b382-f55b288a8e61" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "4b1ae25f-6e6d-4cad-a685-820f54c68e95" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220821Z:91d48b90-42b6-43c0-b382-f55b288a8e61" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:08:20 GMT" + ], + "Content-Length": [ + "1232" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"csvnet5608\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Network/virtualNetworks/csvnet5608\",\r\n \"etag\": \"W/\\\"01d71226-0a62-4e81-85b2-96adaea1b013\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f2cb26fe-3633-4663-9b45-540695cff30c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet8981\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Network/virtualNetworks/csvnet5608/subnets/subnet8981\",\r\n \"etag\": \"W/\\\"01d71226-0a62-4e81-85b2-96adaea1b013\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/81dc0c54-24d5-4856-9183-27636a7f3df7?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzgxZGMwYzU0LTI0ZDUtNDg1Ni05MTgzLTI3NjM2YTdmM2RmNz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "97f4c612-4840-4417-b686-c7929b15662e" + ], + "x-ms-correlation-request-id": [ + "b9cedbe7-e68d-427b-9296-07690bdff066" + ], + "x-ms-arm-service-request-id": [ + "1450be8b-2eb5-4644-9d9b-db99dc8994e7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220824Z:b9cedbe7-e68d-427b-9296-07690bdff066" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:08:24 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Network/virtualNetworks/csvnet5608?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI2MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy9jc3ZuZXQ1NjA4P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"a9f0b0c2-af66-4430-837b-dfb0e9497cc5\"" + ], + "x-ms-request-id": [ + "c1ab8b1e-328d-43d9-889d-760c72b418f6" + ], + "x-ms-correlation-request-id": [ + "f83229d3-ad0a-4220-9371-44eb25715107" + ], + "x-ms-arm-service-request-id": [ + "3e4b66d7-d2db-4bde-9765-684b8d2493be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220824Z:f83229d3-ad0a-4220-9371-44eb25715107" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:08:24 GMT" + ], + "Content-Length": [ + "1234" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"csvnet5608\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Network/virtualNetworks/csvnet5608\",\r\n \"etag\": \"W/\\\"a9f0b0c2-af66-4430-837b-dfb0e9497cc5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f2cb26fe-3633-4663-9b45-540695cff30c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet8981\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Network/virtualNetworks/csvnet5608/subnets/subnet8981\",\r\n \"etag\": \"W/\\\"a9f0b0c2-af66-4430-837b-dfb0e9497cc5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Network/publicIPAddresses/cspip1067?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI2MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2NzcGlwMTA2Nz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns3552\"\r\n }\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4c609a47-9066-470f-94f2-29f4fbac791e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "163" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "55f0979c-2d11-4ab2-b75b-8e9f5abeb54a" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/55f0979c-2d11-4ab2-b75b-8e9f5abeb54a?api-version=2019-09-01" + ], + "x-ms-correlation-request-id": [ + "5028311e-cf9b-478e-a2e8-e39c36f81585" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "190c58ac-3c32-4503-bdd0-3b5f04cfa43d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220829Z:5028311e-cf9b-478e-a2e8-e39c36f81585" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:08:28 GMT" + ], + "Content-Length": [ + "724" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cspip1067\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Network/publicIPAddresses/cspip1067\",\r\n \"etag\": \"W/\\\"cc8b29fa-c81c-4e9b-a82d-bce8341710fe\\\"\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7d3cdb69-94e2-4639-b602-8cf51c02f2f2\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns3552\",\r\n \"fqdn\": \"dns3552.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Network/locations/eastus2/operations/55f0979c-2d11-4ab2-b75b-8e9f5abeb54a?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzU1ZjA5NzljLTJkMTEtNGFiMi1iNzViLThlOWY1YWJlYjU0YT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "40261d23-ac39-4d02-ae5d-574047d50263" + ], + "x-ms-correlation-request-id": [ + "aeb3c90e-8610-42d6-a0a3-0da639d6bfae" + ], + "x-ms-arm-service-request-id": [ + "e5978a77-fba5-4a6b-afb6-4e1cade307a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220831Z:aeb3c90e-8610-42d6-a0a3-0da639d6bfae" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:08:30 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Network/publicIPAddresses/cspip1067?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI2MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL2NzcGlwMTA2Nz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"28812931-d058-44ed-aead-b5e76f549111\"" + ], + "x-ms-request-id": [ + "d53d11d3-6d16-44c2-9b49-e8607296db8e" + ], + "x-ms-correlation-request-id": [ + "1fe26faa-0e8c-4ec8-8a86-899d887b3cca" + ], + "x-ms-arm-service-request-id": [ + "38242640-faf2-4ef3-96ae-89ac14e8d604" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220831Z:1fe26faa-0e8c-4ec8-8a86-899d887b3cca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:08:30 GMT" + ], + "Content-Length": [ + "725" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cspip1067\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Network/publicIPAddresses/cspip1067\",\r\n \"etag\": \"W/\\\"28812931-d058-44ed-aead-b5e76f549111\\\"\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7d3cdb69-94e2-4639-b602-8cf51c02f2f2\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dns3552\",\r\n \"fqdn\": \"dns3552.eastus2.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Storage/storageAccounts/saforcspkg7493?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI2MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmNzcGtnNzQ5Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7298c7cd-9bdd-44de-88e4-46498136d0b6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "89" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Storage/locations/eastus2/asyncoperations/40d40ea5-d78e-4202-b9df-95d6d0721801?monitor=true&api-version=2015-06-15" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "40d40ea5-d78e-4202-b9df-95d6d0721801" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "be922549-c928-4d8d-8341-de1ff0b7c45f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220841Z:be922549-c928-4d8d-8341-de1ff0b7c45f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:08:41 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Storage/locations/eastus2/asyncoperations/40d40ea5-d78e-4202-b9df-95d6d0721801?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvNDBkNDBlYTUtZDc4ZS00MjAyLWI5ZGYtOTVkNmQwNzIxODAxP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "86d3e783-f754-456f-be6b-87e84c232c41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "61984de9-762e-4575-bd4e-547e8eb4e341" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220858Z:61984de9-762e-4575-bd4e-547e8eb4e341" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:08:58 GMT" + ], + "Content-Length": [ + "89" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI2MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1e5481d9-060a-43d3-b6b5-7b4199507edf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9c2e5bdc-a899-4c25-a327-10cafe4c2d05" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "6f5405db-aaad-42b7-92c0-206e9f733980" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220909Z:6f5405db-aaad-42b7-92c0-206e9f733980" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:09:09 GMT" + ], + "Content-Length": [ + "747" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Storage/storageAccounts/saforcspkg7493\",\r\n \"name\": \"saforcspkg7493\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-03-13T22:08:40.9659348Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforcspkg7493.blob.core.windows.net/\",\r\n \"queue\": \"https://saforcspkg7493.queue.core.windows.net/\",\r\n \"table\": \"https://saforcspkg7493.table.core.windows.net/\",\r\n \"file\": \"https://saforcspkg7493.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI2MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "14b2b181-0395-499b-bf83-3b922d06a6e8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e2151c62-830b-4a5b-83bb-d4c3f8e37fa6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "366311ce-7a6a-4052-a4eb-0d6ebea9308a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T221719Z:366311ce-7a6a-4052-a4eb-0d6ebea9308a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:17:19 GMT" + ], + "Content-Length": [ + "1483" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Storage/storageAccounts/saforcspkg1592\",\r\n \"name\": \"saforcspkg1592\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-03-13T22:16:51.4968227Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforcspkg1592.blob.core.windows.net/\",\r\n \"queue\": \"https://saforcspkg1592.queue.core.windows.net/\",\r\n \"table\": \"https://saforcspkg1592.table.core.windows.net/\",\r\n \"file\": \"https://saforcspkg1592.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Storage/storageAccounts/saforcspkg7493\",\r\n \"name\": \"saforcspkg7493\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-03-13T22:08:40.9659348Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforcspkg7493.blob.core.windows.net/\",\r\n \"queue\": \"https://saforcspkg7493.queue.core.windows.net/\",\r\n \"table\": \"https://saforcspkg7493.table.core.windows.net/\",\r\n \"file\": \"https://saforcspkg7493.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Storage/storageAccounts/saforcspkg7493?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI2MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmNzcGtnNzQ5Mz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "81877fb8-ca16-4d63-aa3e-02f98d666e3c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "92c49db8-1a12-42bc-992c-5877a03747b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "9b6ed744-df7a-463d-89a5-09619acf4e6b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220909Z:9b6ed744-df7a-463d-89a5-09619acf4e6b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:09:09 GMT" + ], + "Content-Length": [ + "735" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Storage/storageAccounts/saforcspkg7493\",\r\n \"name\": \"saforcspkg7493\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-03-13T22:08:40.9659348Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforcspkg7493.blob.core.windows.net/\",\r\n \"queue\": \"https://saforcspkg7493.queue.core.windows.net/\",\r\n \"table\": \"https://saforcspkg7493.table.core.windows.net/\",\r\n \"file\": \"https://saforcspkg7493.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Storage/storageAccounts/saforcspkg7493/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI2MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmNzcGtnNzQ5My9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44f7b200-34f5-4dbf-b0b9-ff2802c83d64" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e54e2f2b-a41c-4d43-a0aa-04f2ee0e27ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "3aaf0c33-25ec-4c9f-892b-5ec757f9e1b0" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T220909Z:3aaf0c33-25ec-4c9f-892b-5ec757f9e1b0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:09:09 GMT" + ], + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"BBor+dP5kLb++RyeAdxwCDyC5ncG4m3SpAn+alVxO7loA9fI+kNL7jqooKdkeRMdd/96eS7fUcnYRPHjR9eNlw==\",\r\n \"key2\": \"6SQlWb8FpB5lxE4URrQt36JVH19dbyz2EaTLjllxFvjBg2W1Ec+xL+QkCdOfRUQrBiJAypz56mdVqOo0Mk/ItQ==\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Compute/cloudServices/cs2303?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI2MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MyMzAzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"packageUrl\": \"https://saforcspkg7493.blob.core.windows.net/sascontainer/TestCloudServiceMultiRole_WorkerRole1(Standard_D2_v2)(1)_WorkerRole2(Standard_D1_v2)(1)_WebRole1(Standard_A2_v2)(2).cspkg?sv=2017-04-17&sr=b&sig=TDF4pp7%2B4aUoke8J3daFJoOLmjPiXP%2BMBTPvo35GLR4%3D&st=2021-03-12T22%3A10%3A00Z&se=2021-03-15T22%3A10%3A00Z&sp=rw\",\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb4279\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"lbfe9680\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Network/publicIPAddresses/cspip1067\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6ee0091c-4bb9-4e64-908c-3022b4f06e12" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3468" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/40a096ae-d81c-4c65-9783-a5c4d37ed280?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "40a096ae-d81c-4c65-9783-a5c4d37ed280" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;287" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "da52d3a8-2814-4307-bac1-a6631f368e82" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T221008Z:da52d3a8-2814-4307-bac1-a6631f368e82" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:10:07 GMT" + ], + "Content-Length": [ + "3249" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs2303\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR2612/providers/Microsoft.Compute/cloudServices/cs2303\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb4279\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe9680\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Network/publicIPAddresses/cspip1067\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"uniqueId\": \"c8914fa9-eb0e-4b13-aab0-239033600903\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Compute/cloudServices/cs2303?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI2MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MyMzAzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"packageUrl\": \"https://saforcspkg1592.blob.core.windows.net/sascontainer/TestCloudServiceMultiRole_WorkerRole2(Standard_D2_v2)(1)_WebRole1(Standard_A2_v2)(1).cspkg?sv=2017-04-17&sr=b&sig=4IwyYHcmmH6Fjy7ZQaHRPoiG1%2FTWZoAvtMdK8z4MGzs%3D&st=2021-03-12T22%3A18%3A01Z&se=2021-03-15T22%3A18%3A01Z&sp=rw\",\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb4279\",\r\n \"properties\": {\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"lbfe9680\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Network/publicIPAddresses/cspip1067\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\",\r\n \"protectedSettings\": \"VsmrdpTest!\"\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "54319939-a6c4-4ccb-99cf-ac8a434497af" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "3391" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/2ac2e1ea-7f77-4e7c-85a4-c937f60cfcb1?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2ac2e1ea-7f77-4e7c-85a4-c937f60cfcb1" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;288" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "1180243e-2428-45a5-aafc-0468a8a04548" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T221806Z:1180243e-2428-45a5-aafc-0468a8a04548" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:18:05 GMT" + ], + "Content-Length": [ + "3218" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs2303\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR2612/providers/Microsoft.Compute/cloudServices/cs2303\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb4279\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe9680\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Network/publicIPAddresses/cspip1067\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"rolesAppliedTo\": [\r\n \"*\"\r\n ],\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"uniqueId\": \"c8914fa9-eb0e-4b13-aab0-239033600903\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/40a096ae-d81c-4c65-9783-a5c4d37ed280?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNDBhMDk2YWUtZDgxYy00YzY1LTk3ODMtYTVjNGQzN2VkMjgwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "4ba923e9-2deb-4a0a-905f-21ef4b5410d0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "26b566ce-1146-42d6-843f-cea0c28f189b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T221039Z:26b566ce-1146-42d6-843f-cea0c28f189b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:10:39 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:40:06.8959855+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"40a096ae-d81c-4c65-9783-a5c4d37ed280\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/40a096ae-d81c-4c65-9783-a5c4d37ed280?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNDBhMDk2YWUtZDgxYy00YzY1LTk3ODMtYTVjNGQzN2VkMjgwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "44ff3b06-4550-47b1-888a-d547e6e80dd8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "86fb29f1-6b36-42bd-865b-efa38b89c843" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T221110Z:86fb29f1-6b36-42bd-865b-efa38b89c843" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:11:09 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:40:06.8959855+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"40a096ae-d81c-4c65-9783-a5c4d37ed280\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/40a096ae-d81c-4c65-9783-a5c4d37ed280?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNDBhMDk2YWUtZDgxYy00YzY1LTk3ODMtYTVjNGQzN2VkMjgwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "0457ba68-2f06-4596-b866-27847682b0e0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "7780e1cc-cb21-4137-91df-ebd5a5050c0e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T221140Z:7780e1cc-cb21-4137-91df-ebd5a5050c0e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:11:39 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:40:06.8959855+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"40a096ae-d81c-4c65-9783-a5c4d37ed280\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/40a096ae-d81c-4c65-9783-a5c4d37ed280?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNDBhMDk2YWUtZDgxYy00YzY1LTk3ODMtYTVjNGQzN2VkMjgwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "dd3cf804-a5bd-429f-ab6b-1827b957dc5e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "039fd4db-4e81-4743-818f-6910a0bfd429" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T221210Z:039fd4db-4e81-4743-818f-6910a0bfd429" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:12:10 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:40:06.8959855+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"40a096ae-d81c-4c65-9783-a5c4d37ed280\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/40a096ae-d81c-4c65-9783-a5c4d37ed280?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNDBhMDk2YWUtZDgxYy00YzY1LTk3ODMtYTVjNGQzN2VkMjgwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "47d0109a-6f0e-47d4-aa13-1081ca02a895" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "88b124c7-159d-4cb0-afa8-aa275875aa05" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T221240Z:88b124c7-159d-4cb0-afa8-aa275875aa05" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:12:39 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:40:06.8959855+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"40a096ae-d81c-4c65-9783-a5c4d37ed280\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/40a096ae-d81c-4c65-9783-a5c4d37ed280?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNDBhMDk2YWUtZDgxYy00YzY1LTk3ODMtYTVjNGQzN2VkMjgwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "89e26880-b2c2-4a09-a53e-0a91c7eb8c06" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "63beb14b-6280-46be-981b-f29ed93833af" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T221311Z:63beb14b-6280-46be-981b-f29ed93833af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:13:10 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:40:06.8959855+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"40a096ae-d81c-4c65-9783-a5c4d37ed280\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/40a096ae-d81c-4c65-9783-a5c4d37ed280?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNDBhMDk2YWUtZDgxYy00YzY1LTk3ODMtYTVjNGQzN2VkMjgwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "0f14d10b-4af5-4603-82ac-e896d292243c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "f24cafec-9f66-499c-9887-5be92f41b3b9" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T221341Z:f24cafec-9f66-499c-9887-5be92f41b3b9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:13:41 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:40:06.8959855+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"40a096ae-d81c-4c65-9783-a5c4d37ed280\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/40a096ae-d81c-4c65-9783-a5c4d37ed280?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNDBhMDk2YWUtZDgxYy00YzY1LTk3ODMtYTVjNGQzN2VkMjgwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "d87a8756-0d02-4026-9d2d-0c69cd193868" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "6cf5329b-2d9d-46ad-bbb6-dac7d61a2f7f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T221411Z:6cf5329b-2d9d-46ad-bbb6-dac7d61a2f7f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:14:11 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:40:06.8959855+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"40a096ae-d81c-4c65-9783-a5c4d37ed280\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/40a096ae-d81c-4c65-9783-a5c4d37ed280?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNDBhMDk2YWUtZDgxYy00YzY1LTk3ODMtYTVjNGQzN2VkMjgwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "80b1a5bd-6795-47df-aa38-5c02d64e450b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "c1ed4b67-68d6-4d78-ab70-2b0098e0ca59" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T221441Z:c1ed4b67-68d6-4d78-ab70-2b0098e0ca59" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:14:41 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:40:06.8959855+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"40a096ae-d81c-4c65-9783-a5c4d37ed280\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/40a096ae-d81c-4c65-9783-a5c4d37ed280?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNDBhMDk2YWUtZDgxYy00YzY1LTk3ODMtYTVjNGQzN2VkMjgwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "bc038479-4ff4-4e39-86ea-debf0c42e5a5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "1a3a493e-51e0-440e-ac31-514de84125d0" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T221512Z:1a3a493e-51e0-440e-ac31-514de84125d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:15:12 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:40:06.8959855+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"40a096ae-d81c-4c65-9783-a5c4d37ed280\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/40a096ae-d81c-4c65-9783-a5c4d37ed280?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNDBhMDk2YWUtZDgxYy00YzY1LTk3ODMtYTVjNGQzN2VkMjgwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "b43ee30b-de0e-48c4-92e9-9df7d874d763" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "88b5401a-d50a-4108-bf59-3476d1569dd8" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T221542Z:88b5401a-d50a-4108-bf59-3476d1569dd8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:15:42 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:40:06.8959855+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"40a096ae-d81c-4c65-9783-a5c4d37ed280\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/40a096ae-d81c-4c65-9783-a5c4d37ed280?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNDBhMDk2YWUtZDgxYy00YzY1LTk3ODMtYTVjNGQzN2VkMjgwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "6b23019c-32d2-443d-aee9-5e009a2349c8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "0dd55ae9-e7fc-44b0-9ae6-07fe8e5c5e45" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T221613Z:0dd55ae9-e7fc-44b0-9ae6-07fe8e5c5e45" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:16:12 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:40:06.8959855+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"40a096ae-d81c-4c65-9783-a5c4d37ed280\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/40a096ae-d81c-4c65-9783-a5c4d37ed280?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNDBhMDk2YWUtZDgxYy00YzY1LTk3ODMtYTVjNGQzN2VkMjgwP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "035892c7-6e97-464e-aaf9-102bf481e447" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "bbd9a727-5b57-4263-a98c-7df4003e5ea4" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T221643Z:bbd9a727-5b57-4263-a98c-7df4003e5ea4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:16:43 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:40:06.8959855+05:30\",\r\n \"endTime\": \"2021-03-14T03:46:36.1648185+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"40a096ae-d81c-4c65-9783-a5c4d37ed280\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Compute/cloudServices/cs2303?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI2MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MyMzAzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c2399a2f-f4cb-42dc-bea1-ac910a43a0eb" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;398,Microsoft.Compute/GetCloudService30Min;2572" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "a96d7950-80e6-4b08-a1ce-8e89f4395f69" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T221643Z:a96d7950-80e6-4b08-a1ce-8e89f4395f69" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:16:43 GMT" + ], + "Content-Length": [ + "3250" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs2303\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR2612/providers/Microsoft.Compute/cloudServices/cs2303\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb4279\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe9680\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Network/publicIPAddresses/cspip1067\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"c8914fa9-eb0e-4b13-aab0-239033600903\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Compute/cloudServices/cs2303?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI2MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MyMzAzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a1a801b-4684-4db7-a803-8bfb4f519613" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ef4a55cc-52af-4fea-a8ee-50699a8ca74e" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;397,Microsoft.Compute/GetCloudService30Min;2571" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "4f473acf-d871-4373-8110-57f033f7ac9e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T221644Z:4f473acf-d871-4373-8110-57f033f7ac9e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:16:43 GMT" + ], + "Content-Length": [ + "3250" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs2303\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR2612/providers/Microsoft.Compute/cloudServices/cs2303\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb4279\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe9680\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Network/publicIPAddresses/cspip1067\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"c8914fa9-eb0e-4b13-aab0-239033600903\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Compute/cloudServices/cs2303?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI2MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MyMzAzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9f291ee7-7c9a-441f-b6ce-a3cb1974916e" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;397,Microsoft.Compute/GetCloudService30Min;2571" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-correlation-request-id": [ + "a42f5bfe-ea3c-4e20-885b-d3305a2b4d6d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T222240Z:a42f5bfe-ea3c-4e20-885b-d3305a2b4d6d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:22:39 GMT" + ], + "Content-Length": [ + "3220" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs2303\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR2612/providers/Microsoft.Compute/cloudServices/cs2303\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb4279\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe9680\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Network/publicIPAddresses/cspip1067\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"*\"\r\n ],\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"c8914fa9-eb0e-4b13-aab0-239033600903\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Compute/cloudServices/cs2303?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI2MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MyMzAzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "edeac44e-3ffd-4ae1-9964-f6d9b9fa0418" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "ceed1636-72e2-493d-98e8-d42fec9d9bc8" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetCloudService3Min;396,Microsoft.Compute/GetCloudService30Min;2570" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-correlation-request-id": [ + "b572fc77-8e66-4389-8c89-b0d16a5d8205" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T222240Z:b572fc77-8e66-4389-8c89-b0d16a5d8205" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:22:39 GMT" + ], + "Content-Length": [ + "3220" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"cs2303\",\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/CRPTESTAR2612/providers/Microsoft.Compute/cloudServices/cs2303\",\r\n \"type\": \"Microsoft.Compute/cloudServices\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"configuration\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"upgradeMode\": \"Auto\",\r\n \"roleProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"WebRole1\",\r\n \"sku\": {\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n },\r\n {\r\n \"name\": \"WorkerRole2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"loadBalancerConfigurations\": [\r\n {\r\n \"name\": \"lb4279\",\r\n \"properties\": {\r\n \"frontendIpConfigurations\": [\r\n {\r\n \"name\": \"lbfe9680\",\r\n \"properties\": {\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Network/publicIPAddresses/cspip1067\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"name\": \"RDPExtension\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"rolesAppliedTo\": [\r\n \"*\"\r\n ],\r\n \"publisher\": \"Microsoft.Windows.Azure.Extensions\",\r\n \"type\": \"RDP\",\r\n \"typeHandlerVersion\": \"1.2.1\",\r\n \"settings\": \"adminRdpTest2021-10-27T23:59:59\"\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"c8914fa9-eb0e-4b13-aab0-239033600903\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Storage/storageAccounts/saforcspkg1592?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI2MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmNzcGtnMTU5Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f933eb2e-5f12-4703-82c3-aea3c5d0fe3a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "89" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Storage/locations/eastus2/asyncoperations/b57729de-93b8-4097-b0f8-7dd9d2e22323?monitor=true&api-version=2015-06-15" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "b57729de-93b8-4097-b0f8-7dd9d2e22323" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "0619130a-5bb5-4bc6-84da-6ff21fc0d267" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T221652Z:0619130a-5bb5-4bc6-84da-6ff21fc0d267" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:16:51 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Storage/locations/eastus2/asyncoperations/b57729de-93b8-4097-b0f8-7dd9d2e22323?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMi9hc3luY29wZXJhdGlvbnMvYjU3NzI5ZGUtOTNiOC00MDk3LWIwZjgtN2RkOWQyZTIyMzIzP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "68ef38a6-341e-46ab-8ba0-f490af818cd7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "1cd92ca8-1149-4ca6-9a5c-147f1f344085" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T221709Z:1cd92ca8-1149-4ca6-9a5c-147f1f344085" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:17:08 GMT" + ], + "Content-Length": [ + "89" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Storage/storageAccounts/saforcspkg1592?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI2MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmNzcGtnMTU5Mj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c57b274-c89c-4b8d-888e-d021b04ae9df" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fbb4beeb-0e13-444f-9075-ab5bfd1e3aef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "bf550589-e2cc-415b-b4c1-c2755d802464" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T221719Z:bf550589-e2cc-415b-b4c1-c2755d802464" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:17:19 GMT" + ], + "Content-Length": [ + "735" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Storage/storageAccounts/saforcspkg1592\",\r\n \"name\": \"saforcspkg1592\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-03-13T22:16:51.4968227Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforcspkg1592.blob.core.windows.net/\",\r\n \"queue\": \"https://saforcspkg1592.queue.core.windows.net/\",\r\n \"table\": \"https://saforcspkg1592.table.core.windows.net/\",\r\n \"file\": \"https://saforcspkg1592.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"centralus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Storage/storageAccounts/saforcspkg1592/listKeys?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI2MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmNzcGtnMTU5Mi9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6cde0aea-f5d0-49d0-8995-a3e14361b709" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1735865f-c0d4-433a-8dcc-4bafb49e2dc6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "57f2f968-ddb3-4d44-a2dc-e75e7a5d4244" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T221720Z:57f2f968-ddb3-4d44-a2dc-e75e7a5d4244" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:17:19 GMT" + ], + "Content-Length": [ + "197" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"key1\": \"iDEAPOnPPJgRJm1pKnirMRtRpHE+mRZqQneD8JAs/uAV9BFzvhkJtxIBh0A053njzgLRj6HBsADMXawg8kx1sQ==\",\r\n \"key2\": \"ZKfRLiNblQKr5Xp/XH4PGBYnpmAYLcYSX6Zc/r2HofHtqybOfwF0wv57yGty5t4G7zyPUZhG0v0+DUE+bFm3gQ==\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/2ac2e1ea-7f77-4e7c-85a4-c937f60cfcb1?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMmFjMmUxZWEtN2Y3Ny00ZTdjLTg1YTQtYzkzN2Y2MGNmY2IxP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "70e3b297-5fc8-4810-9e96-dd58e4dd2a66" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "d583c606-79d0-4160-ac0b-2491fa95478e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T221837Z:d583c606-79d0-4160-ac0b-2491fa95478e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:18:37 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:48:03.1027603+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2ac2e1ea-7f77-4e7c-85a4-c937f60cfcb1\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/2ac2e1ea-7f77-4e7c-85a4-c937f60cfcb1?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMmFjMmUxZWEtN2Y3Ny00ZTdjLTg1YTQtYzkzN2Y2MGNmY2IxP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "0918fdd3-3311-4509-9f15-6b846bcae79f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "89c642e6-54ed-4fb0-9cf8-96b2bfe4cded" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T221908Z:89c642e6-54ed-4fb0-9cf8-96b2bfe4cded" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:19:07 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:48:03.1027603+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2ac2e1ea-7f77-4e7c-85a4-c937f60cfcb1\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/2ac2e1ea-7f77-4e7c-85a4-c937f60cfcb1?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMmFjMmUxZWEtN2Y3Ny00ZTdjLTg1YTQtYzkzN2Y2MGNmY2IxP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "7aa86cc7-13a8-4b79-a823-eccae408d477" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "cfbcfdae-7fab-4141-9205-987683b75775" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T221938Z:cfbcfdae-7fab-4141-9205-987683b75775" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:19:38 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:48:03.1027603+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2ac2e1ea-7f77-4e7c-85a4-c937f60cfcb1\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/2ac2e1ea-7f77-4e7c-85a4-c937f60cfcb1?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMmFjMmUxZWEtN2Y3Ny00ZTdjLTg1YTQtYzkzN2Y2MGNmY2IxP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "0ad08f45-4981-41a4-9fae-77e743fcc952" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "28438d8e-a33d-489b-bd24-a6f513f55171" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T222008Z:28438d8e-a33d-489b-bd24-a6f513f55171" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:20:07 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:48:03.1027603+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2ac2e1ea-7f77-4e7c-85a4-c937f60cfcb1\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/2ac2e1ea-7f77-4e7c-85a4-c937f60cfcb1?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMmFjMmUxZWEtN2Y3Ny00ZTdjLTg1YTQtYzkzN2Y2MGNmY2IxP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "44a15b21-2ca7-4d42-9bec-09e3f644bcfd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-correlation-request-id": [ + "a2edbcd2-cc2b-4195-a7ca-26c0c60d3cac" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T222038Z:a2edbcd2-cc2b-4195-a7ca-26c0c60d3cac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:20:38 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:48:03.1027603+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2ac2e1ea-7f77-4e7c-85a4-c937f60cfcb1\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/2ac2e1ea-7f77-4e7c-85a4-c937f60cfcb1?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMmFjMmUxZWEtN2Y3Ny00ZTdjLTg1YTQtYzkzN2Y2MGNmY2IxP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "b847d7d1-449f-488f-bdae-3e054baeb45e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-correlation-request-id": [ + "69b23d97-5525-42d7-abcf-d785be395d4a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T222109Z:69b23d97-5525-42d7-abcf-d785be395d4a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:21:08 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:48:03.1027603+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2ac2e1ea-7f77-4e7c-85a4-c937f60cfcb1\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/2ac2e1ea-7f77-4e7c-85a4-c937f60cfcb1?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMmFjMmUxZWEtN2Y3Ny00ZTdjLTg1YTQtYzkzN2Y2MGNmY2IxP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "f34fb4a5-53fc-434f-a983-9f8205508365" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-correlation-request-id": [ + "c0d7f68f-b091-4cf4-9ada-c5eb0fa938eb" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T222139Z:c0d7f68f-b091-4cf4-9ada-c5eb0fa938eb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:21:38 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:48:03.1027603+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2ac2e1ea-7f77-4e7c-85a4-c937f60cfcb1\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/2ac2e1ea-7f77-4e7c-85a4-c937f60cfcb1?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMmFjMmUxZWEtN2Y3Ny00ZTdjLTg1YTQtYzkzN2Y2MGNmY2IxP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "20fd7cfb-a1f3-4185-bc02-77550dfeaca7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-correlation-request-id": [ + "2dd911e5-a57e-4c91-8152-a7b5dc94aa89" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T222209Z:2dd911e5-a57e-4c91-8152-a7b5dc94aa89" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:22:08 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:48:03.1027603+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2ac2e1ea-7f77-4e7c-85a4-c937f60cfcb1\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/2ac2e1ea-7f77-4e7c-85a4-c937f60cfcb1?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvMmFjMmUxZWEtN2Y3Ny00ZTdjLTg1YTQtYzkzN2Y2MGNmY2IxP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "9c0403c0-b02a-4972-b5a1-dbe0dec3b33b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "54a51cc0-705b-4411-8b9e-66581fef87d7" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T222239Z:54a51cc0-705b-4411-8b9e-66581fef87d7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:22:39 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:48:03.1027603+05:30\",\r\n \"endTime\": \"2021-03-14T03:52:22.5254775+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2ac2e1ea-7f77-4e7c-85a4-c937f60cfcb1\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourceGroups/crptestar2612/providers/Microsoft.Compute/cloudServices/cs2303?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjI2MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2Nsb3VkU2VydmljZXMvY3MyMzAzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6bc59013-2b4a-4c9f-8eb5-96a28d69e501" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/512f9244-d77e-4d10-be10-dba21ed111ab?monitor=true&api-version=2021-03-01" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/512f9244-d77e-4d10-be10-dba21ed111ab?api-version=2021-03-01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "512f9244-d77e-4d10-be10-dba21ed111ab" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDeleteCloudServiceOperations30Min;290" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "6b712134-b1f6-41fc-9c41-f01f22e0a103" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T222241Z:6b712134-b1f6-41fc-9c41-f01f22e0a103" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:22:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/512f9244-d77e-4d10-be10-dba21ed111ab?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNTEyZjkyNDQtZDc3ZS00ZDEwLWJlMTAtZGJhMjFlZDExMWFiP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "80fb3078-a1c8-40c4-a33f-563050eff301" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "70073abb-9677-4cae-b9bb-6b693a9cbdc5" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T222311Z:70073abb-9677-4cae-b9bb-6b693a9cbdc5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:23:11 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:52:41.0880971+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"512f9244-d77e-4d10-be10-dba21ed111ab\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/512f9244-d77e-4d10-be10-dba21ed111ab?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNTEyZjkyNDQtZDc3ZS00ZDEwLWJlMTAtZGJhMjFlZDExMWFiP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "091a1a46-b42e-436d-8e2a-da9b488ffdee" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-correlation-request-id": [ + "48e43467-4cc6-4340-a061-9e8977c33863" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T222342Z:48e43467-4cc6-4340-a061-9e8977c33863" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:23:41 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-03-14T03:52:41.0880971+05:30\",\r\n \"endTime\": \"2021-03-14T03:53:41.8384444+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"512f9244-d77e-4d10-be10-dba21ed111ab\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/providers/Microsoft.Compute/locations/eastus2/CsOperations/512f9244-d77e-4d10-be10-dba21ed111ab?monitor=true&api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9Dc09wZXJhdGlvbnMvNTEyZjkyNDQtZDc3ZS00ZDEwLWJlMTAtZGJhMjFlZDExMWFiP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTAzLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/45.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-served-by": [ + "532cf927-99e1-4c94-9b33-80f77cdebb54_132556723587569343" + ], + "x-ms-request-id": [ + "40b08395-2395-47b2-bf21-a02ab3034806" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-correlation-request-id": [ + "7cf7f47f-c618-4149-8ae3-cc93b9661c42" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T222342Z:7cf7f47f-c618-4149-8ae3-cc93b9661c42" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:23:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/resourcegroups/crptestar2612?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMDI5Njc5MGQtNDI3Yy00OGNhLWIyMDQtOGI3MjliYmQ4NjcwL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjI2MTI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "61bfa53e-9ba1-4f14-a6f6-5098953e9957" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/0296790d-427c-48ca-b204-8b729bbd8670/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIyNjEyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "d262bde8-4afe-461c-9d08-4a9740151f64" + ], + "x-ms-correlation-request-id": [ + "d262bde8-4afe-461c-9d08-4a9740151f64" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210313T222347Z:d262bde8-4afe-461c-9d08-4a9740151f64" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sat, 13 Mar 2021 22:23:46 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + } + ], + "Names": { + "TestCloudServiceUpdateOperations": [ + "crptestar2612", + "cs2303", + "cspip1067", + "csvnet5608", + "subnet8981", + "dns3552", + "lb4279", + "lbfe9680" + ], + "CreateCspkgSasUrl": [ + "saforcspkg7493", + "asforcspkg2192", + "saforcspkg1592", + "asforcspkg623" + ] + }, + "Variables": { + "SubscriptionId": "0296790d-427c-48ca-b204-8b729bbd8670" + } +} \ No newline at end of file