diff --git a/eng/mgmt/mgmtmetadata/batch_resource-manager.txt b/eng/mgmt/mgmtmetadata/batch_resource-manager.txt index b9da6af9a24a..50b69911b546 100644 --- a/eng/mgmt/mgmtmetadata/batch_resource-manager.txt +++ b/eng/mgmt/mgmtmetadata/batch_resource-manager.txt @@ -3,12 +3,13 @@ AutoRest installed successfully. Commencing code generation Generating CSharp code Executing AutoRest command -cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/batch/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=E:\development\microsoft\public\azure-sdk-for-net\sdk -2021-01-23 13:54:16 UTC +cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/batch/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=E:\hpc\azure-sdk-for-net\sdk +Autorest CSharp Version: 2.3.91 +2021-07-30 01:12:15 UTC Azure-rest-api-specs repository information GitHub fork: Azure Branch: master -Commit: d88bf131ab29975a4488e3d9f4527a7791b3e438 +Commit: d81e31601e4bcc061ac6436de40d97b7db5e4dd3 AutoRest information Requested version: v2 -Bootstrapper version: autorest@2.0.4413 +Bootstrapper version: autorest@3.2.3 diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/.markdownlint.jsonc b/sdk/batch/Microsoft.Azure.Management.Batch/.markdownlint.jsonc new file mode 100644 index 000000000000..7a2d39a2bfc0 --- /dev/null +++ b/sdk/batch/Microsoft.Azure.Management.Batch/.markdownlint.jsonc @@ -0,0 +1,4 @@ +{ + "MD013": false, + "MD024": { "siblings_only": true } +} \ No newline at end of file diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/AzSdk.RP.props b/sdk/batch/Microsoft.Azure.Management.Batch/AzSdk.RP.props index 4fe6038bb949..cf59311586b1 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/AzSdk.RP.props +++ b/sdk/batch/Microsoft.Azure.Management.Batch/AzSdk.RP.props @@ -1,7 +1,7 @@ - Batch_2020-05-01; + Batch_2021-06-01; $(PackageTags);$(CommonTags);$(AzureApiTag); \ No newline at end of file diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/CHANGELOG.md b/sdk/batch/Microsoft.Azure.Management.Batch/CHANGELOG.md index ad9f58eed7a4..d56946849fdf 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/CHANGELOG.md +++ b/sdk/batch/Microsoft.Azure.Management.Batch/CHANGELOG.md @@ -1,38 +1,73 @@ # Release History +## 14.0.0 (2021-06-01) + +### REST API version + +- This version targets REST API version 2021-01-01. + +### Features + +- Added two new properties on accounts which enable auto-storage to use a managed identity for authentication rather than a shared key: + - Setting `AutoStorageAuthenticationMode` to "BatchAccountManagedIdentity" will use the identity on the account for storage management operations such as blob container creation/deletion. + - Setting `IdentityReference` will specify the identity which can be used on compute nodes to access auto-storage. Note that this identity *must* be assigned to each pool individually. +- Added `IdentityReference` property to the following models to support accessing resources via managed identity: + - `AzureBlobFileSystemConfiguration` + - `ContainerRegistry` + - `ResourceFile` +- Added `AllowedAuthenticationModes` property on `BatchAccount` to list the allowed authentication modes for a given account that can be used to authenticate with the data plane. This does not affect authentication with the control plane. +- Added new `OsDisk` property to `VirtualMachineConfiguration`, which contains settings for the operating system disk of the Virtual Machine. + - The `Placement` property on 'DiffDiskSettings' specifies the ephemeral disk placement for operating system disk for all VMs in the pool. Setting it to "CacheDisk" will store the ephemeral OS disk on the VM cache. +- Added a new `ListSupportedVirtualMachineSkus` operation, which gets the list of Batch-supported Virtual Machine VM sizes available at a given location. +- Added a new `ListOutboundNetworkDependenciesEndpoints` operation, which lists the endpoints that a Batch Compute Node under a Batch Account may call as part of Batch service administration. + - [https://docs.microsoft.com/en-us/azure/batch/batch-virtual-network](More information about creating a pool inside of a virtual network.) + ## 13.0.0 (2021-01-01) + ### REST API version + - This version targets REST API version 2021-01-01. ### Features + - Added new `Extensions` property to `VirtualMachineConfiguration` on pools to specify virtual machine extensions for nodes - Added the ability to specify availability zones using a new property `NodePlacementConfiguration` on `VirtualMachineConfiguration` - Added a new `Identity` property on `Pool` to specify a managed identity - **[Breaking]** Removed `BeginCreate` and `BeginCreateAsync` certificate operation methods. Certificate operations are not long running operations so these were incorrect. ## 12.0.0 (2020-09-17) + ### REST API version + - This version targets REST API version 2020-09-01. ### Features + - **[Breaking]** The property `MaxTasksPerNode` on `Pool` has been replaced with `TaskSlotsPerNode` to allow tasks to be created which utilize more than one scheduling slot. ## 11.0.0 (2020-06-01) + ### REST API version + - This version targets REST API version 2020-05-01. ### Features + - Added `BatchAccountIdentity` property on `BatchAccount` for enabling system assigned identity when `Microsoft.KeyVault` is specified as the `BatchAccount` encryption property. ### Bug Fixes + - **[Breaking]** Convert the `PrivateEndpointConnection` update operation to a long running operation. ## 10.0.0 (2020-04-11) + ### REST API version + - This version targets REST API version 2020-03-01. - **[Warning]** It is not recommended to use this SDK version. Please update to 11.0.0 or greater. ### Features + - Added ability to access the Batch DataPlane API without needing a public DNS entry for the account via the new `PublicNetworkAccess` property on `BatchAccount`. - Added new `PrivateLinkResource` and `PrivateEndpointConnection` resource types. These are both only used when the `PublicNetworkAccess` property on `BatchAccount` is set to `Disabled`. - When `PublicNetworkAccess` is set to `Disabled` a new `PrivateLinkResource` is visible in that account, which can be used to connect to the account using an ARM Private Endpoint in your VNET. @@ -43,11 +78,14 @@ - The `PublicIPs` property of `NetworkConfiguration` has moved in to `PublicIPAddressConfiguration` as well. This property can only be specified if `IPAddressProvisioningType` is `UserManaged`. ## 9.0.0 + ### REST API version + - This version targets REST API version 2019-08-01. ### Features -- Added ability to specify a collection of public IPs on `NetworkConfiguration` via the new `PublicIPs` property. This guarantees nodes in the Pool will have an + +- Added ability to specify a collection of public IPs on `NetworkConfiguration` via the new `PublicIPs` property. This guarantees nodes in the Pool will have an IP from the list user provided IPs. - Added ability to mount remote file-systems on each node of a pool via the `MountConfiguration` property on `Pool`. - Shared Image Gallery images can now be specified on the `VirtualMachineImageId` property of `ImageReference` by referencing the image via its ARM ID. @@ -55,18 +93,24 @@ - **[Breaking]** When not specified, the default value for `Scope` on `AutoUserSpecification` is now always `Pool` (was `Task` on Windows nodes, `Pool` on Linux nodes). ## 8.0.0 + ### REST API version + - This version targets REST API version 2019-04-01. ### Features + - Added BatchAccount properties `DedicatedCoreQuotaPerVMFamily` and `DedicatedCoreQuotaPerVMFamilyEnforced` to facilitate the transition to per VM family quota - **[Breaking]** Accounts created with `PoolAllocationMode` set to `UserSubscription` will not return core quota properties `DedicatedCoreQuota` or `LowPriorityCoreQuota` ## 7.0.0 + ### REST API version + - This version targets REST API version 2018-12-01. ### Features + - **[Breaking]** ResourceFile improvements - Added the ability specify an entire Azure Storage container in `ResourceFile`. - A new property `HttpUrl` replaces `BlobSource`. This can be any HTTP URL. Previously, this had to be an Azure Blob Storage URL. @@ -81,57 +125,74 @@ - Added support for `ContainerConfiguration` when creating a pool. ### Bug fixes + - Deleting an account will no longer return `NotFound` at the end of the operation ## 6.0.0 + ### REST API version + - This version targets REST API version 2017-09-01. ### Features + - Adding support for Certificate and Pool operations. ## 5.1.0 + ### REST API version + - This version targets REST API version 2017-05-01. ### Features + - Added a new `CheckNameAvailability` API which allows you to check if an account name is available on a particular region. ## 5.0.0 + ### REST API version + - This version targets REST API version 2017-05-01. ### Features + #### Breaking changes + - BatchAccount `CoreQuota` renamed to `DedicatedCoreQuota`. - The structure of `CloudError` has changed. It now has an `Error` property, and the error information (`code`, `message`, `target`, and `details`) is inside that property. - The type `UpdateApplicationParameters` was renamed to `ApplicationUpdateParameters`. - The type `AddApplicationParameters` was renamed to `ApplicationCreateParameters`. #### Non-breaking changes + - BatchAccount now reports the low-priority core quota as well in the property `LowPriorityCoreQuota`. - Added a new `Operations` API, which can be used to query the available operations. ### Packaging + - Now targets `netstandard1.4` instead of `netstandard1.5` and `netstandard1.1`. ## 4.2.0 + - Added option to create a Batch account which allocates pool nodes in the user's subscription. This is done with `PoolAllocationMode = UserSubscription`. When using this mode, a `KeyVaultReference` must also be supplied. - Changed classes which appear only in responses to be immutable. - This version targets REST API version 2017-01-01. ## 4.1.0 + - This package version had an issue and was unlisted on NuGet immediately after shipping. This version **should not be used**. ## 3.0.0 + - Renamed `AccountResource` to `BatchAccount`. - Renamed `AccountOperations` to `BatchAccountOperations`. The `IBatchManagementClient.Account` property was also renamed to `IBatchManagementClient.BatchAccount`. -- Split `Application` and `ApplicationPackage` operations up into two separate operation groups. +- Split `Application` and `ApplicationPackage` operations up into two separate operation groups. - Updated `Application` and `ApplicationPackage` methods to use the standard `Create`, `Delete`, `Update` syntax. For example creating an `Application` is done via `ApplicationOperations.Create`. - Renamed `SubscriptionOperations` to `LocationOperations` and changed `SubscriptionOperations.GetSubscriptionQuotas` to be `LocationOperations.GetQuotas`. - This version targets REST API version 2015-12-01. ## 2.1.0 + - Added support for .NETStandard. - Fixed the .NETFramework 4.5 dependencies. - This version targets REST API version 2015-12-01. diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/ApplicationPackageOperations.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/ApplicationPackageOperations.cs index 085edd7da4aa..e63ea1fd3a60 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/ApplicationPackageOperations.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/ApplicationPackageOperations.cs @@ -331,10 +331,11 @@ internal ApplicationPackageOperations(BatchManagementClient client) } /// - /// Creates an application package record. The record contains the SAS where - /// the package should be uploaded to. Once it is uploaded the + /// Creates an application package record. The record contains a storageUrl + /// where the package should be uploaded to. Once it is uploaded the /// `ApplicationPackage` needs to be activated using `ApplicationPackageActive` - /// before it can be used. + /// before it can be used. If the auto storage account was configured to use + /// storage keys, the URL returned will contain a SAS. /// /// /// The name of the resource group that contains the Batch account. diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/ApplicationPackageOperationsExtensions.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/ApplicationPackageOperationsExtensions.cs index 52c9f82ec97a..a6e592fbd837 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/ApplicationPackageOperationsExtensions.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/ApplicationPackageOperationsExtensions.cs @@ -84,10 +84,11 @@ public static ApplicationPackage Activate(this IApplicationPackageOperations ope } /// - /// Creates an application package record. The record contains the SAS where - /// the package should be uploaded to. Once it is uploaded the + /// Creates an application package record. The record contains a storageUrl + /// where the package should be uploaded to. Once it is uploaded the /// `ApplicationPackage` needs to be activated using `ApplicationPackageActive` - /// before it can be used. + /// before it can be used. If the auto storage account was configured to use + /// storage keys, the URL returned will contain a SAS. /// /// /// The operations group for this extension method. @@ -110,10 +111,11 @@ public static ApplicationPackage Create(this IApplicationPackageOperations opera } /// - /// Creates an application package record. The record contains the SAS where - /// the package should be uploaded to. Once it is uploaded the + /// Creates an application package record. The record contains a storageUrl + /// where the package should be uploaded to. Once it is uploaded the /// `ApplicationPackage` needs to be activated using `ApplicationPackageActive` - /// before it can be used. + /// before it can be used. If the auto storage account was configured to use + /// storage keys, the URL returned will contain a SAS. /// /// /// The operations group for this extension method. diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/BatchAccountOperations.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/BatchAccountOperations.cs index 295637f218b7..cf7e11c7e2a4 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/BatchAccountOperations.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/BatchAccountOperations.cs @@ -908,7 +908,7 @@ internal BatchAccountOperations(BatchManagementClient client) /// /// Synchronizes access keys for the auto-storage account configured for the - /// specified Batch account. + /// specified Batch account, only if storage key authentication is being used. /// /// /// The name of the resource group that contains the Batch account. @@ -1100,6 +1100,14 @@ internal BatchAccountOperations(BatchManagementClient client) /// /// Regenerates the specified account key for the Batch account. /// + /// + /// This operation applies only to Batch accounts with + /// allowedAuthenticationModes containing 'SharedKey'. If the Batch account + /// doesn't contain 'SharedKey' in its allowedAuthenticationMode, clients + /// cannot use shared keys to authenticate, and must use another + /// allowedAuthenticationModes instead. In this case, regenerating the keys + /// will fail. + /// /// /// The name of the resource group that contains the Batch account. /// @@ -1325,11 +1333,12 @@ internal BatchAccountOperations(BatchManagementClient client) /// Gets the account keys for the specified Batch account. /// /// - /// This operation applies only to Batch accounts created with a - /// poolAllocationMode of 'BatchService'. If the Batch account was created with - /// a poolAllocationMode of 'UserSubscription', clients cannot use access to - /// keys to authenticate, and must use Azure Active Directory instead. In this - /// case, getting the keys will fail. + /// This operation applies only to Batch accounts with + /// allowedAuthenticationModes containing 'SharedKey'. If the Batch account + /// doesn't contain 'SharedKey' in its allowedAuthenticationMode, clients + /// cannot use shared keys to authenticate, and must use another + /// allowedAuthenticationModes instead. In this case, getting the keys will + /// fail. /// /// /// The name of the resource group that contains the Batch account. @@ -1539,6 +1548,223 @@ internal BatchAccountOperations(BatchManagementClient client) return _result; } + /// + /// Lists the endpoints that a Batch Compute Node under this Batch Account may + /// call as part of Batch service administration. If you are deploying a Pool + /// inside of a virtual network that you specify, you must make sure your + /// network allows outbound access to these endpoints. Failure to allow access + /// to these endpoints may cause Batch to mark the affected nodes as unusable. + /// For more information about creating a pool inside of a virtual network, see + /// https://docs.microsoft.com/en-us/azure/batch/batch-virtual-network. + /// + /// + /// The name of the resource group that contains the Batch account. + /// + /// + /// The name of the Batch account. + /// + /// + /// 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>> ListOutboundNetworkDependenciesEndpointsWithHttpMessagesAsync(string resourceGroupName, string accountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (accountName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "accountName"); + } + if (accountName != null) + { + if (accountName.Length > 24) + { + throw new ValidationException(ValidationRules.MaxLength, "accountName", 24); + } + if (accountName.Length < 3) + { + throw new ValidationException(ValidationRules.MinLength, "accountName", 3); + } + if (!System.Text.RegularExpressions.Regex.IsMatch(accountName, "^[a-zA-Z0-9]+$")) + { + throw new ValidationException(ValidationRules.Pattern, "accountName", "^[a-zA-Z0-9]+$"); + } + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("accountName", accountName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListOutboundNetworkDependenciesEndpoints", 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.Batch/batchAccounts/{accountName}/outboundNetworkDependenciesEndpoints").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{accountName}", System.Uri.EscapeDataString(accountName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + /// /// Creates a new Batch account with the specified parameters. Existing /// accounts cannot be updated with this API and should instead be updated with @@ -2338,5 +2564,184 @@ internal BatchAccountOperations(BatchManagementClient client) return _result; } + /// + /// Lists the endpoints that a Batch Compute Node under this Batch Account may + /// call as part of Batch service administration. If you are deploying a Pool + /// inside of a virtual network that you specify, you must make sure your + /// network allows outbound access to these endpoints. Failure to allow access + /// to these endpoints may cause Batch to mark the affected nodes as unusable. + /// For more information about creating a pool inside of a virtual network, see + /// https://docs.microsoft.com/en-us/azure/batch/batch-virtual-network. + /// + /// + /// 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>> ListOutboundNetworkDependenciesEndpointsNextWithHttpMessagesAsync(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, "ListOutboundNetworkDependenciesEndpointsNext", 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/batch/Microsoft.Azure.Management.Batch/src/Generated/BatchAccountOperationsExtensions.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/BatchAccountOperationsExtensions.cs index f94f9ed6e3a2..a0264f663500 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/BatchAccountOperationsExtensions.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/BatchAccountOperationsExtensions.cs @@ -273,7 +273,7 @@ public static IPage ListByResourceGroup(this IBatchAccountOperatio /// /// Synchronizes access keys for the auto-storage account configured for the - /// specified Batch account. + /// specified Batch account, only if storage key authentication is being used. /// /// /// The operations group for this extension method. @@ -291,7 +291,7 @@ public static void SynchronizeAutoStorageKeys(this IBatchAccountOperations opera /// /// Synchronizes access keys for the auto-storage account configured for the - /// specified Batch account. + /// specified Batch account, only if storage key authentication is being used. /// /// /// The operations group for this extension method. @@ -313,6 +313,14 @@ public static void SynchronizeAutoStorageKeys(this IBatchAccountOperations opera /// /// Regenerates the specified account key for the Batch account. /// + /// + /// This operation applies only to Batch accounts with + /// allowedAuthenticationModes containing 'SharedKey'. If the Batch account + /// doesn't contain 'SharedKey' in its allowedAuthenticationMode, clients + /// cannot use shared keys to authenticate, and must use another + /// allowedAuthenticationModes instead. In this case, regenerating the keys + /// will fail. + /// /// /// The operations group for this extension method. /// @@ -334,6 +342,14 @@ public static BatchAccountKeys RegenerateKey(this IBatchAccountOperations operat /// /// Regenerates the specified account key for the Batch account. /// + /// + /// This operation applies only to Batch accounts with + /// allowedAuthenticationModes containing 'SharedKey'. If the Batch account + /// doesn't contain 'SharedKey' in its allowedAuthenticationMode, clients + /// cannot use shared keys to authenticate, and must use another + /// allowedAuthenticationModes instead. In this case, regenerating the keys + /// will fail. + /// /// /// The operations group for this extension method. /// @@ -362,11 +378,12 @@ public static BatchAccountKeys RegenerateKey(this IBatchAccountOperations operat /// Gets the account keys for the specified Batch account. /// /// - /// This operation applies only to Batch accounts created with a - /// poolAllocationMode of 'BatchService'. If the Batch account was created with - /// a poolAllocationMode of 'UserSubscription', clients cannot use access to - /// keys to authenticate, and must use Azure Active Directory instead. In this - /// case, getting the keys will fail. + /// This operation applies only to Batch accounts with + /// allowedAuthenticationModes containing 'SharedKey'. If the Batch account + /// doesn't contain 'SharedKey' in its allowedAuthenticationMode, clients + /// cannot use shared keys to authenticate, and must use another + /// allowedAuthenticationModes instead. In this case, getting the keys will + /// fail. /// /// /// The operations group for this extension method. @@ -386,11 +403,12 @@ public static BatchAccountKeys GetKeys(this IBatchAccountOperations operations, /// Gets the account keys for the specified Batch account. /// /// - /// This operation applies only to Batch accounts created with a - /// poolAllocationMode of 'BatchService'. If the Batch account was created with - /// a poolAllocationMode of 'UserSubscription', clients cannot use access to - /// keys to authenticate, and must use Azure Active Directory instead. In this - /// case, getting the keys will fail. + /// This operation applies only to Batch accounts with + /// allowedAuthenticationModes containing 'SharedKey'. If the Batch account + /// doesn't contain 'SharedKey' in its allowedAuthenticationMode, clients + /// cannot use shared keys to authenticate, and must use another + /// allowedAuthenticationModes instead. In this case, getting the keys will + /// fail. /// /// /// The operations group for this extension method. @@ -412,6 +430,58 @@ public static BatchAccountKeys GetKeys(this IBatchAccountOperations operations, } } + /// + /// Lists the endpoints that a Batch Compute Node under this Batch Account may + /// call as part of Batch service administration. If you are deploying a Pool + /// inside of a virtual network that you specify, you must make sure your + /// network allows outbound access to these endpoints. Failure to allow access + /// to these endpoints may cause Batch to mark the affected nodes as unusable. + /// For more information about creating a pool inside of a virtual network, see + /// https://docs.microsoft.com/en-us/azure/batch/batch-virtual-network. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the Batch account. + /// + /// + /// The name of the Batch account. + /// + public static IPage ListOutboundNetworkDependenciesEndpoints(this IBatchAccountOperations operations, string resourceGroupName, string accountName) + { + return operations.ListOutboundNetworkDependenciesEndpointsAsync(resourceGroupName, accountName).GetAwaiter().GetResult(); + } + + /// + /// Lists the endpoints that a Batch Compute Node under this Batch Account may + /// call as part of Batch service administration. If you are deploying a Pool + /// inside of a virtual network that you specify, you must make sure your + /// network allows outbound access to these endpoints. Failure to allow access + /// to these endpoints may cause Batch to mark the affected nodes as unusable. + /// For more information about creating a pool inside of a virtual network, see + /// https://docs.microsoft.com/en-us/azure/batch/batch-virtual-network. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the Batch account. + /// + /// + /// The name of the Batch account. + /// + /// + /// The cancellation token. + /// + public static async Task> ListOutboundNetworkDependenciesEndpointsAsync(this IBatchAccountOperations operations, string resourceGroupName, string accountName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListOutboundNetworkDependenciesEndpointsWithHttpMessagesAsync(resourceGroupName, accountName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Creates a new Batch account with the specified parameters. Existing /// accounts cannot be updated with this API and should instead be updated with @@ -582,5 +652,51 @@ public static IPage ListByResourceGroupNext(this IBatchAccountOper } } + /// + /// Lists the endpoints that a Batch Compute Node under this Batch Account may + /// call as part of Batch service administration. If you are deploying a Pool + /// inside of a virtual network that you specify, you must make sure your + /// network allows outbound access to these endpoints. Failure to allow access + /// to these endpoints may cause Batch to mark the affected nodes as unusable. + /// For more information about creating a pool inside of a virtual network, see + /// https://docs.microsoft.com/en-us/azure/batch/batch-virtual-network. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListOutboundNetworkDependenciesEndpointsNext(this IBatchAccountOperations operations, string nextPageLink) + { + return operations.ListOutboundNetworkDependenciesEndpointsNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists the endpoints that a Batch Compute Node under this Batch Account may + /// call as part of Batch service administration. If you are deploying a Pool + /// inside of a virtual network that you specify, you must make sure your + /// network allows outbound access to these endpoints. Failure to allow access + /// to these endpoints may cause Batch to mark the affected nodes as unusable. + /// For more information about creating a pool inside of a virtual network, see + /// https://docs.microsoft.com/en-us/azure/batch/batch-virtual-network. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListOutboundNetworkDependenciesEndpointsNextAsync(this IBatchAccountOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListOutboundNetworkDependenciesEndpointsNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + } } diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/BatchManagementClient.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/BatchManagementClient.cs index 848c46624334..50f0464f4981 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/BatchManagementClient.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/BatchManagementClient.cs @@ -21,6 +21,9 @@ namespace Microsoft.Azure.Management.Batch using System.Net; using System.Net.Http; + /// + /// Batch Client + /// public partial class BatchManagementClient : ServiceClient, IBatchManagementClient, IAzureClient { /// @@ -368,7 +371,7 @@ private void Initialize() PrivateEndpointConnection = new PrivateEndpointConnectionOperations(this); Pool = new PoolOperations(this); BaseUri = new System.Uri("https://management.azure.com"); - ApiVersion = "2021-01-01"; + ApiVersion = "2021-06-01"; AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; GenerateClientRequestId = true; diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/IApplicationPackageOperations.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/IApplicationPackageOperations.cs index dfc986a11f13..7def00614d67 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/IApplicationPackageOperations.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/IApplicationPackageOperations.cs @@ -62,10 +62,12 @@ public partial interface IApplicationPackageOperations /// Task> ActivateWithHttpMessagesAsync(string resourceGroupName, string accountName, string applicationName, string versionName, string format, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Creates an application package record. The record contains the SAS - /// where the package should be uploaded to. Once it is uploaded the - /// `ApplicationPackage` needs to be activated using - /// `ApplicationPackageActive` before it can be used. + /// Creates an application package record. The record contains a + /// storageUrl where the package should be uploaded to. Once it is + /// uploaded the `ApplicationPackage` needs to be activated using + /// `ApplicationPackageActive` before it can be used. If the auto + /// storage account was configured to use storage keys, the URL + /// returned will contain a SAS. /// /// /// The name of the resource group that contains the Batch account. diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/IBatchAccountOperations.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/IBatchAccountOperations.cs index ccd05f6a78f7..4d2b646890d1 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/IBatchAccountOperations.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/IBatchAccountOperations.cs @@ -178,7 +178,8 @@ public partial interface IBatchAccountOperations Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Synchronizes access keys for the auto-storage account configured - /// for the specified Batch account. + /// for the specified Batch account, only if storage key authentication + /// is being used. /// /// /// The name of the resource group that contains the Batch account. @@ -202,6 +203,14 @@ public partial interface IBatchAccountOperations /// /// Regenerates the specified account key for the Batch account. /// + /// + /// This operation applies only to Batch accounts with + /// allowedAuthenticationModes containing 'SharedKey'. If the Batch + /// account doesn't contain 'SharedKey' in its + /// allowedAuthenticationMode, clients cannot use shared keys to + /// authenticate, and must use another allowedAuthenticationModes + /// instead. In this case, regenerating the keys will fail. + /// /// /// The name of the resource group that contains the Batch account. /// @@ -232,11 +241,12 @@ public partial interface IBatchAccountOperations /// Gets the account keys for the specified Batch account. /// /// - /// This operation applies only to Batch accounts created with a - /// poolAllocationMode of 'BatchService'. If the Batch account was - /// created with a poolAllocationMode of 'UserSubscription', clients - /// cannot use access to keys to authenticate, and must use Azure - /// Active Directory instead. In this case, getting the keys will fail. + /// This operation applies only to Batch accounts with + /// allowedAuthenticationModes containing 'SharedKey'. If the Batch + /// account doesn't contain 'SharedKey' in its + /// allowedAuthenticationMode, clients cannot use shared keys to + /// authenticate, and must use another allowedAuthenticationModes + /// instead. In this case, getting the keys will fail. /// /// /// The name of the resource group that contains the Batch account. @@ -261,6 +271,38 @@ public partial interface IBatchAccountOperations /// Task> GetKeysWithHttpMessagesAsync(string resourceGroupName, string accountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Lists the endpoints that a Batch Compute Node under this Batch + /// Account may call as part of Batch service administration. If you + /// are deploying a Pool inside of a virtual network that you specify, + /// you must make sure your network allows outbound access to these + /// endpoints. Failure to allow access to these endpoints may cause + /// Batch to mark the affected nodes as unusable. For more information + /// about creating a pool inside of a virtual network, see + /// https://docs.microsoft.com/en-us/azure/batch/batch-virtual-network. + /// + /// + /// The name of the resource group that contains the Batch account. + /// + /// + /// The name of the Batch account. + /// + /// + /// 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>> ListOutboundNetworkDependenciesEndpointsWithHttpMessagesAsync(string resourceGroupName, string accountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Creates a new Batch account with the specified parameters. Existing /// accounts cannot be updated with this API and should instead be /// updated with the Update Batch Account API. @@ -363,5 +405,34 @@ public partial interface IBatchAccountOperations /// Thrown when a required parameter is null /// Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists the endpoints that a Batch Compute Node under this Batch + /// Account may call as part of Batch service administration. If you + /// are deploying a Pool inside of a virtual network that you specify, + /// you must make sure your network allows outbound access to these + /// endpoints. Failure to allow access to these endpoints may cause + /// Batch to mark the affected nodes as unusable. For more information + /// about creating a pool inside of a virtual network, see + /// https://docs.microsoft.com/en-us/azure/batch/batch-virtual-network. + /// + /// + /// 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>> ListOutboundNetworkDependenciesEndpointsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/IBatchManagementClient.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/IBatchManagementClient.cs index a5044e02df3c..0f81354b9cca 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/IBatchManagementClient.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/IBatchManagementClient.cs @@ -16,6 +16,7 @@ namespace Microsoft.Azure.Management.Batch using Newtonsoft.Json; /// + /// Batch Client /// public partial interface IBatchManagementClient : System.IDisposable { diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/ILocationOperations.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/ILocationOperations.cs index 72eb5290bb86..7d6bfcabaca6 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/ILocationOperations.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/ILocationOperations.cs @@ -47,6 +47,66 @@ public partial interface ILocationOperations /// Task> GetQuotasWithHttpMessagesAsync(string locationName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Gets the list of Batch supported Virtual Machine VM sizes available + /// at the given location. + /// + /// + /// The region for which to retrieve Batch service supported SKUs. + /// + /// + /// The maximum number of items to return in the response. + /// + /// + /// OData filter expression. Valid properties for filtering are + /// "familyName". + /// + /// + /// 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>> ListSupportedVirtualMachineSkusWithHttpMessagesAsync(string locationName, int? maxresults = default(int?), string filter = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the list of Batch supported Cloud Service VM sizes available + /// at the given location. + /// + /// + /// The region for which to retrieve Batch service supported SKUs. + /// + /// + /// The maximum number of items to return in the response. + /// + /// + /// OData filter expression. Valid properties for filtering are + /// "familyName". + /// + /// + /// 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>> ListSupportedCloudServiceSkusWithHttpMessagesAsync(string locationName, int? maxresults = default(int?), string filter = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Checks whether the Batch account name is available in the specified /// region. /// @@ -72,5 +132,51 @@ public partial interface ILocationOperations /// Thrown when a required parameter is null /// Task> CheckNameAvailabilityWithHttpMessagesAsync(string locationName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the list of Batch supported Virtual Machine VM sizes available + /// at the given location. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListSupportedVirtualMachineSkusNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the list of Batch supported Cloud Service VM sizes available + /// at the given location. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListSupportedCloudServiceSkusNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/LocationOperations.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/LocationOperations.cs index bdc78c58bcf0..5c307ccd6160 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/LocationOperations.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/LocationOperations.cs @@ -239,13 +239,17 @@ internal LocationOperations(BatchManagementClient client) } /// - /// Checks whether the Batch account name is available in the specified region. + /// Gets the list of Batch supported Virtual Machine VM sizes available at the + /// given location. /// /// - /// The desired region for the name check. + /// The region for which to retrieve Batch service supported SKUs. /// - /// - /// The name to check for availability + /// + /// The maximum number of items to return in the response. + /// + /// + /// OData filter expression. Valid properties for filtering are "familyName". /// /// /// Headers that will be added to request. @@ -268,7 +272,7 @@ internal LocationOperations(BatchManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CheckNameAvailabilityWithHttpMessagesAsync(string locationName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListSupportedVirtualMachineSkusWithHttpMessagesAsync(string locationName, int? maxresults = default(int?), string filter = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (locationName == null) { @@ -282,14 +286,209 @@ internal LocationOperations(BatchManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (name == null) + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) { - throw new ValidationException(ValidationRules.CannotBeNull, "name"); + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("locationName", locationName); + tracingParameters.Add("maxresults", maxresults); + tracingParameters.Add("filter", filter); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListSupportedVirtualMachineSkus", tracingParameters); } - CheckNameAvailabilityParameters parameters = new CheckNameAvailabilityParameters(); - if (name != null) + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Batch/locations/{locationName}/virtualMachineSkus").ToString(); + _url = _url.Replace("{locationName}", System.Uri.EscapeDataString(locationName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (maxresults != null) { - parameters.Name = name; + _queryParameters.Add(string.Format("maxresults={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(maxresults, Client.SerializationSettings).Trim('"')))); + } + if (filter != null) + { + _queryParameters.Add(string.Format("$filter={0}", System.Uri.EscapeDataString(filter))); + } + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets the list of Batch supported Cloud Service VM sizes available at the + /// given location. + /// + /// + /// The region for which to retrieve Batch service supported SKUs. + /// + /// + /// The maximum number of items to return in the response. + /// + /// + /// OData filter expression. Valid properties for filtering are "familyName". + /// + /// + /// 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>> ListSupportedCloudServiceSkusWithHttpMessagesAsync(string locationName, int? maxresults = default(int?), string filter = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (locationName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "locationName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -299,16 +498,25 @@ internal LocationOperations(BatchManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("locationName", locationName); - tracingParameters.Add("parameters", parameters); + tracingParameters.Add("maxresults", maxresults); + tracingParameters.Add("filter", filter); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CheckNameAvailability", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListSupportedCloudServiceSkus", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Batch/locations/{locationName}/checkNameAvailability").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Batch/locations/{locationName}/cloudServiceSkus").ToString(); _url = _url.Replace("{locationName}", System.Uri.EscapeDataString(locationName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); + if (maxresults != null) + { + _queryParameters.Add(string.Format("maxresults={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(maxresults, Client.SerializationSettings).Trim('"')))); + } + if (filter != null) + { + _queryParameters.Add(string.Format("$filter={0}", System.Uri.EscapeDataString(filter))); + } if (Client.ApiVersion != null) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); @@ -320,7 +528,7 @@ internal LocationOperations(BatchManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -351,12 +559,6 @@ internal LocationOperations(BatchManagementClient client) // 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) { @@ -412,7 +614,7 @@ internal LocationOperations(BatchManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -425,7 +627,561 @@ internal LocationOperations(BatchManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Checks whether the Batch account name is available in the specified region. + /// + /// + /// The desired region for the name check. + /// + /// + /// The name to check for availability + /// + /// + /// 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> CheckNameAvailabilityWithHttpMessagesAsync(string locationName, string name, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (locationName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "locationName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (name == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "name"); + } + CheckNameAvailabilityParameters parameters = new CheckNameAvailabilityParameters(); + if (name != null) + { + parameters.Name = name; + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("locationName", locationName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "CheckNameAvailability", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Batch/locations/{locationName}/checkNameAvailability").ToString(); + _url = _url.Replace("{locationName}", System.Uri.EscapeDataString(locationName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(parameters != null) + { + _requestContent = 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; + } + + /// + /// Gets the list of Batch supported Virtual Machine VM sizes available at the + /// given location. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListSupportedVirtualMachineSkusNextWithHttpMessagesAsync(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, "ListSupportedVirtualMachineSkusNext", 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 the list of Batch supported Cloud Service VM sizes available at the + /// given location. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListSupportedCloudServiceSkusNextWithHttpMessagesAsync(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, "ListSupportedCloudServiceSkusNext", 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) { diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/LocationOperationsExtensions.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/LocationOperationsExtensions.cs index da2cc9f816c5..27c2d9898fde 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/LocationOperationsExtensions.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/LocationOperationsExtensions.cs @@ -57,6 +57,102 @@ public static BatchLocationQuota GetQuotas(this ILocationOperations operations, } } + /// + /// Gets the list of Batch supported Virtual Machine VM sizes available at the + /// given location. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The region for which to retrieve Batch service supported SKUs. + /// + /// + /// The maximum number of items to return in the response. + /// + /// + /// OData filter expression. Valid properties for filtering are "familyName". + /// + public static IPage ListSupportedVirtualMachineSkus(this ILocationOperations operations, string locationName, int? maxresults = default(int?), string filter = default(string)) + { + return operations.ListSupportedVirtualMachineSkusAsync(locationName, maxresults, filter).GetAwaiter().GetResult(); + } + + /// + /// Gets the list of Batch supported Virtual Machine VM sizes available at the + /// given location. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The region for which to retrieve Batch service supported SKUs. + /// + /// + /// The maximum number of items to return in the response. + /// + /// + /// OData filter expression. Valid properties for filtering are "familyName". + /// + /// + /// The cancellation token. + /// + public static async Task> ListSupportedVirtualMachineSkusAsync(this ILocationOperations operations, string locationName, int? maxresults = default(int?), string filter = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListSupportedVirtualMachineSkusWithHttpMessagesAsync(locationName, maxresults, filter, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the list of Batch supported Cloud Service VM sizes available at the + /// given location. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The region for which to retrieve Batch service supported SKUs. + /// + /// + /// The maximum number of items to return in the response. + /// + /// + /// OData filter expression. Valid properties for filtering are "familyName". + /// + public static IPage ListSupportedCloudServiceSkus(this ILocationOperations operations, string locationName, int? maxresults = default(int?), string filter = default(string)) + { + return operations.ListSupportedCloudServiceSkusAsync(locationName, maxresults, filter).GetAwaiter().GetResult(); + } + + /// + /// Gets the list of Batch supported Cloud Service VM sizes available at the + /// given location. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The region for which to retrieve Batch service supported SKUs. + /// + /// + /// The maximum number of items to return in the response. + /// + /// + /// OData filter expression. Valid properties for filtering are "familyName". + /// + /// + /// The cancellation token. + /// + public static async Task> ListSupportedCloudServiceSkusAsync(this ILocationOperations operations, string locationName, int? maxresults = default(int?), string filter = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListSupportedCloudServiceSkusWithHttpMessagesAsync(locationName, maxresults, filter, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Checks whether the Batch account name is available in the specified region. /// @@ -97,5 +193,77 @@ public static CheckNameAvailabilityResult CheckNameAvailability(this ILocationOp } } + /// + /// Gets the list of Batch supported Virtual Machine VM sizes available at the + /// given location. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListSupportedVirtualMachineSkusNext(this ILocationOperations operations, string nextPageLink) + { + return operations.ListSupportedVirtualMachineSkusNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets the list of Batch supported Virtual Machine VM sizes available at the + /// given location. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListSupportedVirtualMachineSkusNextAsync(this ILocationOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListSupportedVirtualMachineSkusNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the list of Batch supported Cloud Service VM sizes available at the + /// given location. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListSupportedCloudServiceSkusNext(this ILocationOperations operations, string nextPageLink) + { + return operations.ListSupportedCloudServiceSkusNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets the list of Batch supported Cloud Service VM sizes available at the + /// given location. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListSupportedCloudServiceSkusNextAsync(this ILocationOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListSupportedCloudServiceSkusNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + } } diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/AuthenticationMode.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/AuthenticationMode.cs new file mode 100644 index 000000000000..6bd4013dcc5e --- /dev/null +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/AuthenticationMode.cs @@ -0,0 +1,75 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Batch.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for AuthenticationMode. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum AuthenticationMode + { + /// + /// The authentication mode using shared keys. + /// + [EnumMember(Value = "SharedKey")] + SharedKey, + /// + /// The authentication mode using Azure Active Directory. + /// + [EnumMember(Value = "AAD")] + AAD, + /// + /// The authentication mode using task authentication tokens. + /// + [EnumMember(Value = "TaskAuthenticationToken")] + TaskAuthenticationToken + } + internal static class AuthenticationModeEnumExtension + { + internal static string ToSerializedValue(this AuthenticationMode? value) + { + return value == null ? null : ((AuthenticationMode)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this AuthenticationMode value) + { + switch( value ) + { + case AuthenticationMode.SharedKey: + return "SharedKey"; + case AuthenticationMode.AAD: + return "AAD"; + case AuthenticationMode.TaskAuthenticationToken: + return "TaskAuthenticationToken"; + } + return null; + } + + internal static AuthenticationMode? ParseAuthenticationMode(this string value) + { + switch( value ) + { + case "SharedKey": + return AuthenticationMode.SharedKey; + case "AAD": + return AuthenticationMode.AAD; + case "TaskAuthenticationToken": + return AuthenticationMode.TaskAuthenticationToken; + } + return null; + } + } +} diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/AutoStorageAuthenticationMode.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/AutoStorageAuthenticationMode.cs new file mode 100644 index 000000000000..0832984cdecd --- /dev/null +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/AutoStorageAuthenticationMode.cs @@ -0,0 +1,68 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Batch.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for AutoStorageAuthenticationMode. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum AutoStorageAuthenticationMode + { + /// + /// The Batch service will authenticate requests to auto-storage using + /// storage account keys. + /// + [EnumMember(Value = "StorageKeys")] + StorageKeys, + /// + /// The Batch service will authenticate requests to auto-storage using + /// the managed identity assigned to the Batch account. + /// + [EnumMember(Value = "BatchAccountManagedIdentity")] + BatchAccountManagedIdentity + } + internal static class AutoStorageAuthenticationModeEnumExtension + { + internal static string ToSerializedValue(this AutoStorageAuthenticationMode? value) + { + return value == null ? null : ((AutoStorageAuthenticationMode)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this AutoStorageAuthenticationMode value) + { + switch( value ) + { + case AutoStorageAuthenticationMode.StorageKeys: + return "StorageKeys"; + case AutoStorageAuthenticationMode.BatchAccountManagedIdentity: + return "BatchAccountManagedIdentity"; + } + return null; + } + + internal static AutoStorageAuthenticationMode? ParseAutoStorageAuthenticationMode(this string value) + { + switch( value ) + { + case "StorageKeys": + return AutoStorageAuthenticationMode.StorageKeys; + case "BatchAccountManagedIdentity": + return AutoStorageAuthenticationMode.BatchAccountManagedIdentity; + } + return null; + } + } +} diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/AutoStorageBaseProperties.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/AutoStorageBaseProperties.cs index 653517dc0935..4abfdad9c44f 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/AutoStorageBaseProperties.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/AutoStorageBaseProperties.cs @@ -32,9 +32,18 @@ public AutoStorageBaseProperties() /// /// The resource ID of the storage /// account to be used for auto-storage account. - public AutoStorageBaseProperties(string storageAccountId) + /// The authentication mode which the + /// Batch service will use to manage the auto-storage account. Possible + /// values include: 'StorageKeys', + /// 'BatchAccountManagedIdentity' + /// The reference to the user + /// assigned identity which compute nodes will use to access + /// auto-storage. + public AutoStorageBaseProperties(string storageAccountId, AutoStorageAuthenticationMode? authenticationMode = default(AutoStorageAuthenticationMode?), ComputeNodeIdentityReference nodeIdentityReference = default(ComputeNodeIdentityReference)) { StorageAccountId = storageAccountId; + AuthenticationMode = authenticationMode; + NodeIdentityReference = nodeIdentityReference; CustomInit(); } @@ -50,6 +59,25 @@ public AutoStorageBaseProperties(string storageAccountId) [JsonProperty(PropertyName = "storageAccountId")] public string StorageAccountId { get; set; } + /// + /// Gets or sets the authentication mode which the Batch service will + /// use to manage the auto-storage account. Possible values include: + /// 'StorageKeys', 'BatchAccountManagedIdentity' + /// + [JsonProperty(PropertyName = "authenticationMode")] + public AutoStorageAuthenticationMode? AuthenticationMode { get; set; } + + /// + /// Gets or sets the reference to the user assigned identity which + /// compute nodes will use to access auto-storage. + /// + /// + /// The identity referenced here must be assigned to pools which have + /// compute nodes that need access to auto-storage. + /// + [JsonProperty(PropertyName = "nodeIdentityReference")] + public ComputeNodeIdentityReference NodeIdentityReference { get; set; } + /// /// Validate the object. /// diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/AutoStorageProperties.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/AutoStorageProperties.cs index f519ea0cd060..ad6d6517aeb1 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/AutoStorageProperties.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/AutoStorageProperties.cs @@ -34,8 +34,15 @@ public AutoStorageProperties() /// account to be used for auto-storage account. /// The UTC time at which storage keys were /// last synchronized with the Batch account. - public AutoStorageProperties(string storageAccountId, System.DateTime lastKeySync) - : base(storageAccountId) + /// The authentication mode which the + /// Batch service will use to manage the auto-storage account. Possible + /// values include: 'StorageKeys', + /// 'BatchAccountManagedIdentity' + /// The reference to the user + /// assigned identity which compute nodes will use to access + /// auto-storage. + public AutoStorageProperties(string storageAccountId, System.DateTime lastKeySync, AutoStorageAuthenticationMode? authenticationMode = default(AutoStorageAuthenticationMode?), ComputeNodeIdentityReference nodeIdentityReference = default(ComputeNodeIdentityReference)) + : base(storageAccountId, authenticationMode, nodeIdentityReference) { LastKeySync = lastKeySync; CustomInit(); diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/AzureBlobFileSystemConfiguration.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/AzureBlobFileSystemConfiguration.cs index 691b1a05cf31..33ddef7e7ca3 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/AzureBlobFileSystemConfiguration.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/AzureBlobFileSystemConfiguration.cs @@ -42,7 +42,9 @@ public AzureBlobFileSystemConfiguration() /// The Azure Storage SAS token. /// Additional command line options to /// pass to the mount command. - public AzureBlobFileSystemConfiguration(string accountName, string containerName, string relativeMountPath, string accountKey = default(string), string sasKey = default(string), string blobfuseOptions = default(string)) + /// The reference to the user assigned + /// identity to use to access containerName + public AzureBlobFileSystemConfiguration(string accountName, string containerName, string relativeMountPath, string accountKey = default(string), string sasKey = default(string), string blobfuseOptions = default(string), ComputeNodeIdentityReference identityReference = default(ComputeNodeIdentityReference)) { AccountName = accountName; ContainerName = containerName; @@ -50,6 +52,7 @@ public AzureBlobFileSystemConfiguration() SasKey = sasKey; BlobfuseOptions = blobfuseOptions; RelativeMountPath = relativeMountPath; + IdentityReference = identityReference; CustomInit(); } @@ -74,8 +77,8 @@ public AzureBlobFileSystemConfiguration() /// Gets or sets the Azure Storage Account key. /// /// - /// This property is mutually exclusive with sasKey and one must be - /// specified. + /// This property is mutually exclusive with both sasKey and identity; + /// exactly one must be specified. /// [JsonProperty(PropertyName = "accountKey")] public string AccountKey { get; set; } @@ -84,8 +87,8 @@ public AzureBlobFileSystemConfiguration() /// Gets or sets the Azure Storage SAS token. /// /// - /// This property is mutually exclusive with accountKey and one must be - /// specified. + /// This property is mutually exclusive with both accountKey and + /// identity; exactly one must be specified. /// [JsonProperty(PropertyName = "sasKey")] public string SasKey { get; set; } @@ -113,6 +116,17 @@ public AzureBlobFileSystemConfiguration() [JsonProperty(PropertyName = "relativeMountPath")] public string RelativeMountPath { get; set; } + /// + /// Gets or sets the reference to the user assigned identity to use to + /// access containerName + /// + /// + /// This property is mutually exclusive with both accountKey and + /// sasKey; exactly one must be specified. + /// + [JsonProperty(PropertyName = "identityReference")] + public ComputeNodeIdentityReference IdentityReference { get; set; } + /// /// Validate the object. /// diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/BatchAccount.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/BatchAccount.cs index 597e19cc3252..2984ca3ee51a 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/BatchAccount.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/BatchAccount.cs @@ -58,7 +58,7 @@ public BatchAccount() /// account. /// The dedicated core quota for the /// Batch account. - /// The low priority core quota for + /// The low-priority core quota for /// the Batch account. /// A list of the dedicated /// core quota per Virtual Machine family for the Batch account. For @@ -71,8 +71,12 @@ public BatchAccount() /// account. /// The active job and job /// schedule quota for the Batch account. + /// List of allowed + /// authentication modes for the Batch account that can be used to + /// authenticate with the data plane. This does not affect + /// authentication with the control plane. /// The identity of the Batch account. - public BatchAccount(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), string accountEndpoint = default(string), ProvisioningState provisioningState = default(ProvisioningState), PoolAllocationMode? poolAllocationMode = default(PoolAllocationMode?), KeyVaultReference keyVaultReference = default(KeyVaultReference), PublicNetworkAccessType? publicNetworkAccess = default(PublicNetworkAccessType?), IList privateEndpointConnections = default(IList), AutoStorageProperties autoStorage = default(AutoStorageProperties), EncryptionProperties encryption = default(EncryptionProperties), int? dedicatedCoreQuota = default(int?), int? lowPriorityCoreQuota = default(int?), IList dedicatedCoreQuotaPerVMFamily = default(IList), bool dedicatedCoreQuotaPerVMFamilyEnforced = default(bool), int poolQuota = default(int), int activeJobAndJobScheduleQuota = default(int), BatchAccountIdentity identity = default(BatchAccountIdentity)) + public BatchAccount(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), string accountEndpoint = default(string), ProvisioningState provisioningState = default(ProvisioningState), PoolAllocationMode? poolAllocationMode = default(PoolAllocationMode?), KeyVaultReference keyVaultReference = default(KeyVaultReference), PublicNetworkAccessType? publicNetworkAccess = default(PublicNetworkAccessType?), IList privateEndpointConnections = default(IList), AutoStorageProperties autoStorage = default(AutoStorageProperties), EncryptionProperties encryption = default(EncryptionProperties), int? dedicatedCoreQuota = default(int?), int? lowPriorityCoreQuota = default(int?), IList dedicatedCoreQuotaPerVMFamily = default(IList), bool dedicatedCoreQuotaPerVMFamilyEnforced = default(bool), int poolQuota = default(int), int activeJobAndJobScheduleQuota = default(int), IList allowedAuthenticationModes = default(IList), BatchAccountIdentity identity = default(BatchAccountIdentity)) : base(id, name, type, location, tags) { AccountEndpoint = accountEndpoint; @@ -89,6 +93,7 @@ public BatchAccount() DedicatedCoreQuotaPerVMFamilyEnforced = dedicatedCoreQuotaPerVMFamilyEnforced; PoolQuota = poolQuota; ActiveJobAndJobScheduleQuota = activeJobAndJobScheduleQuota; + AllowedAuthenticationModes = allowedAuthenticationModes; Identity = identity; CustomInit(); } @@ -176,7 +181,7 @@ public BatchAccount() public int? DedicatedCoreQuota { get; private set; } /// - /// Gets the low priority core quota for the Batch account. + /// Gets the low-priority core quota for the Batch account. /// /// /// For accounts with PoolAllocationMode set to UserSubscription, quota @@ -224,6 +229,14 @@ public BatchAccount() [JsonProperty(PropertyName = "properties.activeJobAndJobScheduleQuota")] public int ActiveJobAndJobScheduleQuota { get; private set; } + /// + /// Gets list of allowed authentication modes for the Batch account + /// that can be used to authenticate with the data plane. This does not + /// affect authentication with the control plane. + /// + [JsonProperty(PropertyName = "properties.allowedAuthenticationModes")] + public IList AllowedAuthenticationModes { get; private set; } + /// /// Gets or sets the identity of the Batch account. /// diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/BatchAccountCreateParameters.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/BatchAccountCreateParameters.cs index a32c2bc81efc..a2208b67668c 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/BatchAccountCreateParameters.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/BatchAccountCreateParameters.cs @@ -50,8 +50,12 @@ public BatchAccountCreateParameters() /// accessing Azure Batch account. /// The encryption configuration for the Batch /// account. + /// List of allowed + /// authentication modes for the Batch account that can be used to + /// authenticate with the data plane. This does not affect + /// authentication with the control plane. /// The identity of the Batch account. - public BatchAccountCreateParameters(string location, IDictionary tags = default(IDictionary), AutoStorageBaseProperties autoStorage = default(AutoStorageBaseProperties), PoolAllocationMode? poolAllocationMode = default(PoolAllocationMode?), KeyVaultReference keyVaultReference = default(KeyVaultReference), PublicNetworkAccessType? publicNetworkAccess = default(PublicNetworkAccessType?), EncryptionProperties encryption = default(EncryptionProperties), BatchAccountIdentity identity = default(BatchAccountIdentity)) + public BatchAccountCreateParameters(string location, IDictionary tags = default(IDictionary), AutoStorageBaseProperties autoStorage = default(AutoStorageBaseProperties), PoolAllocationMode? poolAllocationMode = default(PoolAllocationMode?), KeyVaultReference keyVaultReference = default(KeyVaultReference), PublicNetworkAccessType? publicNetworkAccess = default(PublicNetworkAccessType?), EncryptionProperties encryption = default(EncryptionProperties), IList allowedAuthenticationModes = default(IList), BatchAccountIdentity identity = default(BatchAccountIdentity)) { Location = location; Tags = tags; @@ -60,6 +64,7 @@ public BatchAccountCreateParameters() KeyVaultReference = keyVaultReference; PublicNetworkAccess = publicNetworkAccess; Encryption = encryption; + AllowedAuthenticationModes = allowedAuthenticationModes; Identity = identity; CustomInit(); } @@ -131,6 +136,14 @@ public BatchAccountCreateParameters() [JsonProperty(PropertyName = "properties.encryption")] public EncryptionProperties Encryption { get; set; } + /// + /// Gets or sets list of allowed authentication modes for the Batch + /// account that can be used to authenticate with the data plane. This + /// does not affect authentication with the control plane. + /// + [JsonProperty(PropertyName = "properties.allowedAuthenticationModes")] + public IList AllowedAuthenticationModes { get; set; } + /// /// Gets or sets the identity of the Batch account. /// diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/BatchAccountIdentity.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/BatchAccountIdentity.cs index ce247998c031..058e2b4daca0 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/BatchAccountIdentity.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/BatchAccountIdentity.cs @@ -16,9 +16,10 @@ namespace Microsoft.Azure.Management.Batch.Models using System.Linq; /// - /// The identity of the Batch account, if configured. This is only used - /// when the user specifies 'Microsoft.KeyVault' as their Batch account - /// encryption configuration. + /// The identity of the Batch account, if configured. This is used when the + /// user specifies 'Microsoft.KeyVault' as their Batch account encryption + /// configuration or when `ManagedIdentity` is selected as the auto-storage + /// authentication mode. /// public partial class BatchAccountIdentity { @@ -43,10 +44,8 @@ public BatchAccountIdentity() /// account. This property will only be provided for a system assigned /// identity. /// The list of user identities - /// associated with the Batch account. The user identity dictionary key - /// references will be ARM resource ids in the form: - /// '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. - public BatchAccountIdentity(ResourceIdentityType type, string principalId = default(string), string tenantId = default(string), IDictionary userAssignedIdentities = default(IDictionary)) + /// associated with the Batch account. + public BatchAccountIdentity(ResourceIdentityType type, string principalId = default(string), string tenantId = default(string), IDictionary userAssignedIdentities = default(IDictionary)) { PrincipalId = principalId; TenantId = tenantId; @@ -83,12 +82,10 @@ public BatchAccountIdentity() /// /// Gets or sets the list of user identities associated with the Batch - /// account. The user identity dictionary key references will be ARM - /// resource ids in the form: - /// '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. + /// account. /// [JsonProperty(PropertyName = "userAssignedIdentities")] - public IDictionary UserAssignedIdentities { get; set; } + public IDictionary UserAssignedIdentities { get; set; } /// /// Validate the object. diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/BatchAccountIdentityUserAssignedIdentitiesValue.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/BatchAccountIdentityUserAssignedIdentitiesValue.cs deleted file mode 100644 index e1072790153c..000000000000 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/BatchAccountIdentityUserAssignedIdentitiesValue.cs +++ /dev/null @@ -1,60 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Batch.Models -{ - using Newtonsoft.Json; - using System.Linq; - - public partial class BatchAccountIdentityUserAssignedIdentitiesValue - { - /// - /// Initializes a new instance of the - /// BatchAccountIdentityUserAssignedIdentitiesValue class. - /// - public BatchAccountIdentityUserAssignedIdentitiesValue() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the - /// BatchAccountIdentityUserAssignedIdentitiesValue class. - /// - /// The principal id of user assigned - /// identity. - /// The client id of user assigned - /// identity. - public BatchAccountIdentityUserAssignedIdentitiesValue(string principalId = default(string), string clientId = default(string)) - { - PrincipalId = principalId; - ClientId = clientId; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets the principal id of user assigned identity. - /// - [JsonProperty(PropertyName = "principalId")] - public string PrincipalId { get; private set; } - - /// - /// Gets the client id of user assigned identity. - /// - [JsonProperty(PropertyName = "clientId")] - public string ClientId { get; private set; } - - } -} diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/BatchAccountUpdateParameters.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/BatchAccountUpdateParameters.cs index 80214cc96c31..e66cb461308e 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/BatchAccountUpdateParameters.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/BatchAccountUpdateParameters.cs @@ -42,12 +42,17 @@ public BatchAccountUpdateParameters() /// auto-storage account. /// The encryption configuration for the Batch /// account. + /// List of allowed + /// authentication modes for the Batch account that can be used to + /// authenticate with the data plane. This does not affect + /// authentication with the control plane. /// The identity of the Batch account. - public BatchAccountUpdateParameters(IDictionary tags = default(IDictionary), AutoStorageBaseProperties autoStorage = default(AutoStorageBaseProperties), EncryptionProperties encryption = default(EncryptionProperties), BatchAccountIdentity identity = default(BatchAccountIdentity)) + public BatchAccountUpdateParameters(IDictionary tags = default(IDictionary), AutoStorageBaseProperties autoStorage = default(AutoStorageBaseProperties), EncryptionProperties encryption = default(EncryptionProperties), IList allowedAuthenticationModes = default(IList), BatchAccountIdentity identity = default(BatchAccountIdentity)) { Tags = tags; AutoStorage = autoStorage; Encryption = encryption; + AllowedAuthenticationModes = allowedAuthenticationModes; Identity = identity; CustomInit(); } @@ -80,6 +85,14 @@ public BatchAccountUpdateParameters() [JsonProperty(PropertyName = "properties.encryption")] public EncryptionProperties Encryption { get; set; } + /// + /// Gets or sets list of allowed authentication modes for the Batch + /// account that can be used to authenticate with the data plane. This + /// does not affect authentication with the control plane. + /// + [JsonProperty(PropertyName = "properties.allowedAuthenticationModes")] + public IList AllowedAuthenticationModes { get; set; } + /// /// Gets or sets the identity of the Batch account. /// diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/BatchPoolIdentity.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/BatchPoolIdentity.cs index 46345b4ed457..2ddf711faac5 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/BatchPoolIdentity.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/BatchPoolIdentity.cs @@ -36,10 +36,8 @@ public BatchPoolIdentity() /// The type of identity used for the Batch Pool. /// Possible values include: 'UserAssigned', 'None' /// The list of user identities - /// associated with the Batch pool. The user identity dictionary key - /// references will be ARM resource ids in the form: - /// '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. - public BatchPoolIdentity(PoolIdentityType type, IDictionary userAssignedIdentities = default(IDictionary)) + /// associated with the Batch pool. + public BatchPoolIdentity(PoolIdentityType type, IDictionary userAssignedIdentities = default(IDictionary)) { Type = type; UserAssignedIdentities = userAssignedIdentities; @@ -60,12 +58,10 @@ public BatchPoolIdentity() /// /// Gets or sets the list of user identities associated with the Batch - /// pool. The user identity dictionary key references will be ARM - /// resource ids in the form: - /// '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. + /// pool. /// [JsonProperty(PropertyName = "userAssignedIdentities")] - public IDictionary UserAssignedIdentities { get; set; } + public IDictionary UserAssignedIdentities { get; set; } /// /// Validate the object. diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/CertificateBaseProperties.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/CertificateBaseProperties.cs index 8d729e028dfa..71d73fc0baf7 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/CertificateBaseProperties.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/CertificateBaseProperties.cs @@ -13,6 +13,9 @@ namespace Microsoft.Azure.Management.Batch.Models using Newtonsoft.Json; using System.Linq; + /// + /// Base certificate properties. + /// public partial class CertificateBaseProperties { /// diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/ComputeNodeIdentityReference.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/ComputeNodeIdentityReference.cs new file mode 100644 index 000000000000..48a3b9dd05f2 --- /dev/null +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/ComputeNodeIdentityReference.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.Batch.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// The reference to a user assigned identity associated with the Batch + /// pool which a compute node will use. + /// + public partial class ComputeNodeIdentityReference + { + /// + /// Initializes a new instance of the ComputeNodeIdentityReference + /// class. + /// + public ComputeNodeIdentityReference() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ComputeNodeIdentityReference + /// class. + /// + /// The ARM resource id of the user assigned + /// identity. + public ComputeNodeIdentityReference(string resourceId = default(string)) + { + ResourceId = resourceId; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the ARM resource id of the user assigned identity. + /// + [JsonProperty(PropertyName = "resourceId")] + public string ResourceId { get; set; } + + } +} diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/ContainerRegistry.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/ContainerRegistry.cs index d02b35b6a391..4411d36f4792 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/ContainerRegistry.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/ContainerRegistry.cs @@ -10,7 +10,6 @@ namespace Microsoft.Azure.Management.Batch.Models { - using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; @@ -35,11 +34,15 @@ public ContainerRegistry() /// The password to log into the registry /// server. /// The registry URL. - public ContainerRegistry(string userName, string password, string registryServer = default(string)) + /// The reference to the user assigned + /// identity to use to access an Azure Container Registry instead of + /// username and password. + public ContainerRegistry(string userName = default(string), string password = default(string), string registryServer = default(string), ComputeNodeIdentityReference identityReference = default(ComputeNodeIdentityReference)) { - RegistryServer = registryServer; UserName = userName; Password = password; + RegistryServer = registryServer; + IdentityReference = identityReference; CustomInit(); } @@ -48,15 +51,6 @@ public ContainerRegistry() /// partial void CustomInit(); - /// - /// Gets or sets the registry URL. - /// - /// - /// If omitted, the default is "docker.io". - /// - [JsonProperty(PropertyName = "registryServer")] - public string RegistryServer { get; set; } - /// /// Gets or sets the user name to log into the registry server. /// @@ -70,21 +64,21 @@ public ContainerRegistry() public string Password { get; set; } /// - /// Validate the object. + /// Gets or sets the registry URL. /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (UserName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "UserName"); - } - if (Password == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Password"); - } - } + /// + /// If omitted, the default is "docker.io". + /// + [JsonProperty(PropertyName = "registryServer")] + public string RegistryServer { get; set; } + + /// + /// Gets or sets the reference to the user assigned identity to use to + /// access an Azure Container Registry instead of username and + /// password. + /// + [JsonProperty(PropertyName = "identityReference")] + public ComputeNodeIdentityReference IdentityReference { get; set; } + } } diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/DiffDiskPlacement.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/DiffDiskPlacement.cs new file mode 100644 index 000000000000..fbb99fa66c8e --- /dev/null +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/DiffDiskPlacement.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.Batch.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for DiffDiskPlacement. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum DiffDiskPlacement + { + /// + /// The Ephemeral OS Disk is stored on the VM cache. + /// + [EnumMember(Value = "CacheDisk")] + CacheDisk + } + internal static class DiffDiskPlacementEnumExtension + { + internal static string ToSerializedValue(this DiffDiskPlacement? value) + { + return value == null ? null : ((DiffDiskPlacement)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this DiffDiskPlacement value) + { + switch( value ) + { + case DiffDiskPlacement.CacheDisk: + return "CacheDisk"; + } + return null; + } + + internal static DiffDiskPlacement? ParseDiffDiskPlacement(this string value) + { + switch( value ) + { + case "CacheDisk": + return DiffDiskPlacement.CacheDisk; + } + return null; + } + } +} diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/DiffDiskSettings.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/DiffDiskSettings.cs new file mode 100644 index 000000000000..692f54d80273 --- /dev/null +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/DiffDiskSettings.cs @@ -0,0 +1,65 @@ +// +// 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.Batch.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Specifies the ephemeral Disk Settings for the operating system disk + /// used by the virtual machine. + /// + public partial class DiffDiskSettings + { + /// + /// Initializes a new instance of the DiffDiskSettings class. + /// + public DiffDiskSettings() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the DiffDiskSettings class. + /// + /// Specifies the ephemeral disk placement for + /// operating system disk for all VMs in the pool. + public DiffDiskSettings(DiffDiskPlacement? placement = default(DiffDiskPlacement?)) + { + Placement = placement; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets specifies the ephemeral disk placement for operating + /// system disk for all VMs in the pool. + /// + /// + /// This property can be used by user in the request to choose which + /// location the operating system should be in. e.g., cache disk space + /// for Ephemeral OS disk provisioning. For more information on + /// Ephemeral OS disk size requirements, please refer to Ephemeral OS + /// disk size requirements for Windows VMs at + /// https://docs.microsoft.com/en-us/azure/virtual-machines/windows/ephemeral-os-disks#size-requirements + /// and Linux VMs at + /// https://docs.microsoft.com/en-us/azure/virtual-machines/linux/ephemeral-os-disks#size-requirements. + /// Possible values include: 'CacheDisk' + /// + [JsonProperty(PropertyName = "placement")] + public DiffDiskPlacement? Placement { get; set; } + + } +} diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/EndpointDependency.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/EndpointDependency.cs new file mode 100644 index 000000000000..6d20231ce030 --- /dev/null +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/EndpointDependency.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.Batch.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// A domain name and connection details used to access a dependency. + /// + public partial class EndpointDependency + { + /// + /// Initializes a new instance of the EndpointDependency class. + /// + public EndpointDependency() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the EndpointDependency class. + /// + /// The domain name of the dependency. Domain + /// names may be fully qualified or may contain a * wildcard. + /// Human-readable supplemental information + /// about the dependency and when it is applicable. + /// The list of connection details for + /// this endpoint. + public EndpointDependency(string domainName = default(string), string description = default(string), IList endpointDetails = default(IList)) + { + DomainName = domainName; + Description = description; + EndpointDetails = endpointDetails; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the domain name of the dependency. Domain names may be fully + /// qualified or may contain a * wildcard. + /// + [JsonProperty(PropertyName = "domainName")] + public string DomainName { get; private set; } + + /// + /// Gets human-readable supplemental information about the dependency + /// and when it is applicable. + /// + [JsonProperty(PropertyName = "description")] + public string Description { get; private set; } + + /// + /// Gets the list of connection details for this endpoint. + /// + [JsonProperty(PropertyName = "endpointDetails")] + public IList EndpointDetails { get; private set; } + + } +} diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/EndpointDetail.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/EndpointDetail.cs new file mode 100644 index 000000000000..b5aa60a66dfa --- /dev/null +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/EndpointDetail.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.Batch.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Details about the connection between the Batch service and the + /// endpoint. + /// + public partial class EndpointDetail + { + /// + /// Initializes a new instance of the EndpointDetail class. + /// + public EndpointDetail() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the EndpointDetail class. + /// + /// The port an endpoint is connected to. + public EndpointDetail(int? port = default(int?)) + { + Port = port; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the port an endpoint is connected to. + /// + [JsonProperty(PropertyName = "port")] + public int? Port { get; private set; } + + } +} diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/FixedScaleSettings.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/FixedScaleSettings.cs index 419294256fa9..229fab3c66e7 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/FixedScaleSettings.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/FixedScaleSettings.cs @@ -33,8 +33,8 @@ public FixedScaleSettings() /// nodes to the pool. /// The desired number of dedicated /// compute nodes in the pool. - /// The desired number of low - /// priority compute nodes in the pool. + /// The desired number of + /// low-priority compute nodes in the pool. /// Determines what to do with a /// node and its running task(s) if the pool size is /// decreasing. @@ -78,7 +78,7 @@ public FixedScaleSettings() public int? TargetDedicatedNodes { get; set; } /// - /// Gets or sets the desired number of low priority compute nodes in + /// Gets or sets the desired number of low-priority compute nodes in /// the pool. /// /// diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/OSDisk.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/OSDisk.cs new file mode 100644 index 000000000000..31e41fb3c0eb --- /dev/null +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/OSDisk.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.Batch.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Settings for the operating system disk of the virtual machine. + /// + public partial class OSDisk + { + /// + /// Initializes a new instance of the OSDisk class. + /// + public OSDisk() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the OSDisk class. + /// + /// Specifies the ephemeral Disk + /// Settings for the operating system disk used by the virtual + /// machine. + public OSDisk(DiffDiskSettings ephemeralOSDiskSettings = default(DiffDiskSettings)) + { + EphemeralOSDiskSettings = ephemeralOSDiskSettings; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets specifies the ephemeral Disk Settings for the + /// operating system disk used by the virtual machine. + /// + [JsonProperty(PropertyName = "ephemeralOSDiskSettings")] + public DiffDiskSettings EphemeralOSDiskSettings { get; set; } + + } +} diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/Operation.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/Operation.cs index 9336782617af..54d5ef380ec2 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/Operation.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/Operation.cs @@ -30,14 +30,17 @@ public Operation() /// Initializes a new instance of the Operation class. /// /// The operation name. + /// Indicates whether the operation is a + /// data action /// The object that describes the /// operation. /// The intended executor of the /// operation. /// Properties of the operation. - public Operation(string name = default(string), OperationDisplay display = default(OperationDisplay), string origin = default(string), object properties = default(object)) + public Operation(string name = default(string), bool? isDataAction = default(bool?), OperationDisplay display = default(OperationDisplay), string origin = default(string), object properties = default(object)) { Name = name; + IsDataAction = isDataAction; Display = display; Origin = origin; Properties = properties; @@ -58,6 +61,12 @@ public Operation() [JsonProperty(PropertyName = "name")] public string Name { get; set; } + /// + /// Gets or sets indicates whether the operation is a data action + /// + [JsonProperty(PropertyName = "isDataAction")] + public bool? IsDataAction { get; set; } + /// /// Gets or sets the object that describes the operation. /// diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/OutboundEnvironmentEndpoint.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/OutboundEnvironmentEndpoint.cs new file mode 100644 index 000000000000..59d7abfeace7 --- /dev/null +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/OutboundEnvironmentEndpoint.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.Batch.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// A collection of related endpoints from the same service for which the + /// Batch service requires outbound access. + /// + public partial class OutboundEnvironmentEndpoint + { + /// + /// Initializes a new instance of the OutboundEnvironmentEndpoint + /// class. + /// + public OutboundEnvironmentEndpoint() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the OutboundEnvironmentEndpoint + /// class. + /// + /// The type of service that the Batch service + /// connects to. + /// The endpoints for this service to which the + /// Batch service makes outbound calls. + public OutboundEnvironmentEndpoint(string category = default(string), IList endpoints = default(IList)) + { + Category = category; + Endpoints = endpoints; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the type of service that the Batch service connects to. + /// + [JsonProperty(PropertyName = "category")] + public string Category { get; private set; } + + /// + /// Gets the endpoints for this service to which the Batch service + /// makes outbound calls. + /// + [JsonProperty(PropertyName = "endpoints")] + public IList Endpoints { get; private set; } + + } +} diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/Pool.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/Pool.cs index 823576f2f169..4c45359d688a 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/Pool.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/Pool.cs @@ -57,7 +57,7 @@ public Pool() /// Machines. /// The number of compute nodes /// currently in the pool. - /// The number of low priority + /// The number of low-priority /// compute nodes currently in the pool. /// Settings which configure the number of /// nodes in the pool. @@ -228,7 +228,7 @@ public Pool() public int? CurrentDedicatedNodes { get; private set; } /// - /// Gets the number of low priority compute nodes currently in the + /// Gets the number of low-priority compute nodes currently in the /// pool. /// [JsonProperty(PropertyName = "properties.currentLowPriorityNodes")] diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/ResizeOperationStatus.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/ResizeOperationStatus.cs index b7a9f8169cf2..1643c6a06e84 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/ResizeOperationStatus.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/ResizeOperationStatus.cs @@ -38,8 +38,8 @@ public ResizeOperationStatus() /// /// The desired number of dedicated /// compute nodes in the pool. - /// The desired number of low - /// priority compute nodes in the pool. + /// The desired number of + /// low-priority compute nodes in the pool. /// The timeout for allocation of compute /// nodes to the pool or removal of compute nodes from the /// pool. @@ -74,7 +74,7 @@ public ResizeOperationStatus() public int? TargetDedicatedNodes { get; set; } /// - /// Gets or sets the desired number of low priority compute nodes in + /// Gets or sets the desired number of low-priority compute nodes in /// the pool. /// [JsonProperty(PropertyName = "targetLowPriorityNodes")] diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/ResourceFile.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/ResourceFile.cs index 21fb9e800975..52f1750435e7 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/ResourceFile.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/ResourceFile.cs @@ -42,7 +42,10 @@ public ResourceFile() /// directory. /// The file permission mode attribute in octal /// format. - public ResourceFile(string autoStorageContainerName = default(string), string storageContainerUrl = default(string), string httpUrl = default(string), string blobPrefix = default(string), string filePath = default(string), string fileMode = default(string)) + /// The reference to the user assigned + /// identity to use to access Azure Blob Storage specified by + /// storageContainerUrl or httpUrl + public ResourceFile(string autoStorageContainerName = default(string), string storageContainerUrl = default(string), string httpUrl = default(string), string blobPrefix = default(string), string filePath = default(string), string fileMode = default(string), ComputeNodeIdentityReference identityReference = default(ComputeNodeIdentityReference)) { AutoStorageContainerName = autoStorageContainerName; StorageContainerUrl = storageContainerUrl; @@ -50,6 +53,7 @@ public ResourceFile() BlobPrefix = blobPrefix; FilePath = filePath; FileMode = fileMode; + IdentityReference = identityReference; CustomInit(); } @@ -77,12 +81,12 @@ public ResourceFile() /// /// The autoStorageContainerName, storageContainerUrl and httpUrl /// properties are mutually exclusive and one of them must be - /// specified. This URL must be readable and listable using anonymous - /// access; that is, the Batch service does not present any credentials - /// when downloading the blob. There are two ways to get such a URL for - /// a blob in Azure storage: include a Shared Access Signature (SAS) - /// granting read and list permissions on the blob, or set the ACL for - /// the blob or its container to allow public access. + /// specified. This URL must be readable and listable from compute + /// nodes. There are three ways to get such a URL for a container in + /// Azure storage: include a Shared Access Signature (SAS) granting + /// read and list permissions on the container, use a managed identity + /// with read and list permissions, or set the ACL for the container to + /// allow public access. /// [JsonProperty(PropertyName = "storageContainerUrl")] public string StorageContainerUrl { get; set; } @@ -93,12 +97,12 @@ public ResourceFile() /// /// The autoStorageContainerName, storageContainerUrl and httpUrl /// properties are mutually exclusive and one of them must be - /// specified. If the URL is Azure Blob Storage, it must be readable - /// using anonymous access; that is, the Batch service does not present - /// any credentials when downloading the blob. There are two ways to - /// get such a URL for a blob in Azure storage: include a Shared Access - /// Signature (SAS) granting read permissions on the blob, or set the - /// ACL for the blob or its container to allow public access. + /// specified. If the URL points to Azure Blob Storage, it must be + /// readable from compute nodes. There are three ways to get such a URL + /// for a blob in Azure storage: include a Shared Access Signature + /// (SAS) granting read permissions on the blob, use a managed identity + /// with read permission, or set the ACL for the blob or its container + /// to allow public access. /// [JsonProperty(PropertyName = "httpUrl")] public string HttpUrl { get; set; } @@ -149,5 +153,13 @@ public ResourceFile() [JsonProperty(PropertyName = "fileMode")] public string FileMode { get; set; } + /// + /// Gets or sets the reference to the user assigned identity to use to + /// access Azure Blob Storage specified by storageContainerUrl or + /// httpUrl + /// + [JsonProperty(PropertyName = "identityReference")] + public ComputeNodeIdentityReference IdentityReference { get; set; } + } } diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/SkuCapability.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/SkuCapability.cs new file mode 100644 index 000000000000..3b3381bb74a8 --- /dev/null +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/SkuCapability.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.Batch.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// A SKU capability, such as the number of cores. + /// + public partial class SkuCapability + { + /// + /// Initializes a new instance of the SkuCapability class. + /// + public SkuCapability() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SkuCapability class. + /// + /// The name of the feature. + /// The value of the feature. + public SkuCapability(string name = default(string), string value = default(string)) + { + Name = name; + Value = value; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the name of the feature. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets the value of the feature. + /// + [JsonProperty(PropertyName = "value")] + public string Value { get; private set; } + + } +} diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/SupportedSku.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/SupportedSku.cs new file mode 100644 index 000000000000..8c00cfef4838 --- /dev/null +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/SupportedSku.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.Batch.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Describes a Batch supported SKU. + /// + public partial class SupportedSku + { + /// + /// Initializes a new instance of the SupportedSku class. + /// + public SupportedSku() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SupportedSku class. + /// + /// The name of the SKU. + /// The family name of the SKU. + /// A collection of capabilities which this + /// SKU supports. + public SupportedSku(string name = default(string), string familyName = default(string), IList capabilities = default(IList)) + { + Name = name; + FamilyName = familyName; + Capabilities = capabilities; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets the name of the SKU. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets the family name of the SKU. + /// + [JsonProperty(PropertyName = "familyName")] + public string FamilyName { get; private set; } + + /// + /// Gets a collection of capabilities which this SKU supports. + /// + [JsonProperty(PropertyName = "capabilities")] + public IList Capabilities { get; private set; } + + } +} diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/TaskContainerSettings.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/TaskContainerSettings.cs index ad8c40e10289..cfa284c74260 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/TaskContainerSettings.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/TaskContainerSettings.cs @@ -110,10 +110,6 @@ public virtual void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "ImageName"); } - if (Registry != null) - { - Registry.Validate(); - } } } } diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/BatchPoolIdentityUserAssignedIdentitiesValue.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/UserAssignedIdentities.cs similarity index 75% rename from sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/BatchPoolIdentityUserAssignedIdentitiesValue.cs rename to sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/UserAssignedIdentities.cs index 2773c9eac2d2..2e967ef80603 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/BatchPoolIdentityUserAssignedIdentitiesValue.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/UserAssignedIdentities.cs @@ -13,26 +13,27 @@ namespace Microsoft.Azure.Management.Batch.Models using Newtonsoft.Json; using System.Linq; - public partial class BatchPoolIdentityUserAssignedIdentitiesValue + /// + /// The list of associated user identities. + /// + public partial class UserAssignedIdentities { /// - /// Initializes a new instance of the - /// BatchPoolIdentityUserAssignedIdentitiesValue class. + /// Initializes a new instance of the UserAssignedIdentities class. /// - public BatchPoolIdentityUserAssignedIdentitiesValue() + public UserAssignedIdentities() { CustomInit(); } /// - /// Initializes a new instance of the - /// BatchPoolIdentityUserAssignedIdentitiesValue class. + /// Initializes a new instance of the UserAssignedIdentities class. /// /// The principal id of user assigned /// identity. /// The client id of user assigned /// identity. - public BatchPoolIdentityUserAssignedIdentitiesValue(string principalId = default(string), string clientId = default(string)) + public UserAssignedIdentities(string principalId = default(string), string clientId = default(string)) { PrincipalId = principalId; ClientId = clientId; diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/VirtualMachineConfiguration.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/VirtualMachineConfiguration.cs index d59ae0e4d845..4429fee7c769 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/VirtualMachineConfiguration.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/VirtualMachineConfiguration.cs @@ -54,7 +54,9 @@ public VirtualMachineConfiguration() /// configuration for the pool. /// The virtual machine extension for the /// pool. - public VirtualMachineConfiguration(ImageReference imageReference, string nodeAgentSkuId, WindowsConfiguration windowsConfiguration = default(WindowsConfiguration), IList dataDisks = default(IList), string licenseType = default(string), ContainerConfiguration containerConfiguration = default(ContainerConfiguration), DiskEncryptionConfiguration diskEncryptionConfiguration = default(DiskEncryptionConfiguration), NodePlacementConfiguration nodePlacementConfiguration = default(NodePlacementConfiguration), IList extensions = default(IList)) + /// Settings for the operating system disk of the + /// Virtual Machine. + public VirtualMachineConfiguration(ImageReference imageReference, string nodeAgentSkuId, WindowsConfiguration windowsConfiguration = default(WindowsConfiguration), IList dataDisks = default(IList), string licenseType = default(string), ContainerConfiguration containerConfiguration = default(ContainerConfiguration), DiskEncryptionConfiguration diskEncryptionConfiguration = default(DiskEncryptionConfiguration), NodePlacementConfiguration nodePlacementConfiguration = default(NodePlacementConfiguration), IList extensions = default(IList), OSDisk osDisk = default(OSDisk)) { ImageReference = imageReference; NodeAgentSkuId = nodeAgentSkuId; @@ -65,6 +67,7 @@ public VirtualMachineConfiguration() DiskEncryptionConfiguration = diskEncryptionConfiguration; NodePlacementConfiguration = nodePlacementConfiguration; Extensions = extensions; + OsDisk = osDisk; CustomInit(); } @@ -178,6 +181,16 @@ public VirtualMachineConfiguration() [JsonProperty(PropertyName = "extensions")] public IList Extensions { get; set; } + /// + /// Gets or sets settings for the operating system disk of the Virtual + /// Machine. + /// + /// + /// Contains configuration for ephemeral OSDisk settings. + /// + [JsonProperty(PropertyName = "osDisk")] + public OSDisk OsDisk { get; set; } + /// /// Validate the object. /// diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/SdkInfo_BatchManagement.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/SdkInfo_BatchManagementClient.cs similarity index 81% rename from sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/SdkInfo_BatchManagement.cs rename to sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/SdkInfo_BatchManagementClient.cs index b7a2100e717d..daa0d4560591 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/SdkInfo_BatchManagement.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/SdkInfo_BatchManagementClient.cs @@ -13,31 +13,31 @@ namespace Microsoft.Azure.Management.Batch internal static partial class SdkInfo { - public static IEnumerable> ApiInfo_BatchManagement + public static IEnumerable> ApiInfo_BatchManagementClient { get { return new Tuple[] { - new Tuple("Batch", "Application", "2021-01-01"), - new Tuple("Batch", "ApplicationPackage", "2021-01-01"), - new Tuple("Batch", "BatchAccount", "2021-01-01"), - new Tuple("Batch", "Certificate", "2021-01-01"), - new Tuple("Batch", "Location", "2021-01-01"), - new Tuple("Batch", "Operations", "2021-01-01"), - new Tuple("Batch", "Pool", "2021-01-01"), - new Tuple("Batch", "PrivateEndpointConnection", "2021-01-01"), - new Tuple("Batch", "PrivateLinkResource", "2021-01-01"), + new Tuple("Batch", "Application", "2021-06-01"), + new Tuple("Batch", "ApplicationPackage", "2021-06-01"), + new Tuple("Batch", "BatchAccount", "2021-06-01"), + new Tuple("Batch", "Certificate", "2021-06-01"), + new Tuple("Batch", "Location", "2021-06-01"), + new Tuple("Batch", "Operations", "2021-06-01"), + new Tuple("Batch", "Pool", "2021-06-01"), + new Tuple("Batch", "PrivateEndpointConnection", "2021-06-01"), + new Tuple("Batch", "PrivateLinkResource", "2021-06-01"), }.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/batch/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=E:\\development\\microsoft\\public\\azure-sdk-for-net\\sdk"; + public static readonly String AutoRestBootStrapperVersion = "autorest@3.2.3"; + public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/batch/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=E:\\hpc\\azure-sdk-for-net\\sdk"; public static readonly String GithubForkName = "Azure"; public static readonly String GithubBranchName = "master"; - public static readonly String GithubCommidId = "d88bf131ab29975a4488e3d9f4527a7791b3e438"; + public static readonly String GithubCommidId = "d81e31601e4bcc061ac6436de40d97b7db5e4dd3"; public static readonly String CodeGenerationErrors = ""; public static readonly String GithubRepoName = "azure-rest-api-specs"; // END: Code Generation Metadata Section diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Microsoft.Azure.Management.Batch.csproj b/sdk/batch/Microsoft.Azure.Management.Batch/src/Microsoft.Azure.Management.Batch.csproj index 6c158b8f7043..abf8c8562216 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Microsoft.Azure.Management.Batch.csproj +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Microsoft.Azure.Management.Batch.csproj @@ -8,7 +8,7 @@ Provides management capabilities for Azure Batch service accounts. Microsoft Azure Batch Management Library Microsoft.Azure.Management.Batch - 13.0.0 + 14.0.0 Microsoft Azure batch management;batch; For detailed release notes, see: https://aka.ms/batch-net-management-changelog diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Models/BatchAccountIdentity.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Models/BatchAccountIdentity.cs new file mode 100644 index 000000000000..716377d0fcd7 --- /dev/null +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Models/BatchAccountIdentity.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Microsoft.Azure.Management.Batch.Models +{ + public partial class BatchAccountIdentity + { + public BatchAccountIdentity(ResourceIdentityType type, string principalId = default(string), string tenantId = default(string), IDictionary userAssignedIdentities = default(IDictionary)) + : this(type, principalId, tenantId, userAssignedIdentities as IDictionary) + { + } + } +} diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Models/BatchAccountIdentityUserAssignedIdentitiesValue.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Models/BatchAccountIdentityUserAssignedIdentitiesValue.cs new file mode 100644 index 000000000000..447b6d9fb225 --- /dev/null +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Models/BatchAccountIdentityUserAssignedIdentitiesValue.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Microsoft.Azure.Management.Batch.Models +{ + public class BatchAccountIdentityUserAssignedIdentitiesValue : UserAssignedIdentities + { + } +} diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Properties/AssemblyInfo.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Properties/AssemblyInfo.cs index fc9ee86b3599..f63ea0eb0643 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Properties/AssemblyInfo.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Properties/AssemblyInfo.cs @@ -8,8 +8,8 @@ [assembly: AssemblyTitle("Microsoft Azure Batch Management Library")] [assembly: AssemblyDescription("Provides management functions for Microsoft Azure Batch services.")] -[assembly: AssemblyVersion("13.0.0.0")] -[assembly: AssemblyFileVersion("13.0.0.0")] +[assembly: AssemblyVersion("14.0.0.0")] +[assembly: AssemblyFileVersion("14.0.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/tests/InMemoryTests/AccountTests.InMemory.cs b/sdk/batch/Microsoft.Azure.Management.Batch/tests/InMemoryTests/AccountTests.InMemory.cs index 9c7aea9668ca..6cac7ecd6b85 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/tests/InMemoryTests/AccountTests.InMemory.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/tests/InMemoryTests/AccountTests.InMemory.cs @@ -6,6 +6,7 @@ using Microsoft.Azure.Management.Batch.Models; using Microsoft.Rest; using Microsoft.Rest.Azure; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using System; using System.Collections.Generic; using System.Linq; @@ -102,6 +103,7 @@ public void CreateAccountWithAutoStorageAsyncValidateMessage() acceptedResponse.Headers.Add("x-ms-request-id", "1"); acceptedResponse.Headers.Add("Location", @"http://someLocationURL"); var utcNow = DateTime.UtcNow; + string resourceId = "abc123"; var okResponse = new HttpResponseMessage(HttpStatusCode.OK) { @@ -116,6 +118,8 @@ public void CreateAccountWithAutoStorageAsyncValidateMessage() 'autoStorage' :{ 'storageAccountId' : '//storageAccount1', 'lastKeySync': '" + utcNow.ToString("o") + @"', + 'authenticationMode': 'BatchAccountManagedIdentity', + 'NodeIdentityReference': { 'resourceId': '" + resourceId + @"' } } }, }") @@ -130,12 +134,16 @@ public void CreateAccountWithAutoStorageAsyncValidateMessage() Location = "South Central US", AutoStorage = new AutoStorageBaseProperties() { - StorageAccountId = "//storageAccount1" + StorageAccountId = "//storageAccount1", + AuthenticationMode = AutoStorageAuthenticationMode.BatchAccountManagedIdentity, + NodeIdentityReference = new ComputeNodeIdentityReference(resourceId) } - }); + });; // Validate result Assert.Equal("//storageAccount1", result.AutoStorage.StorageAccountId); + Assert.Equal(AutoStorageAuthenticationMode.BatchAccountManagedIdentity, result.AutoStorage.AuthenticationMode); + Assert.Equal(resourceId, result.AutoStorage.NodeIdentityReference.ResourceId); Assert.Equal(utcNow, result.AutoStorage.LastKeySync); } @@ -835,5 +843,78 @@ public void AccountKeysRegenerateThrowsExceptions() Assert.Throws(() => client.BatchAccount.RegenerateKey("foo", null, AccountKeyType.Primary)); Assert.Throws(() => client.BatchAccount.RegenerateKey("rg", "invalid%", AccountKeyType.Primary)); } + + [Fact] + public void ListOutboundNetworkDependenciesEndpointsValidateResponse() + { + var response = new HttpResponseMessage(HttpStatusCode.OK) + { + Content = new StringContent(@"{ + 'value': [ + { + 'category': 'Azure Batch', + 'endpoints': [ + { + 'domainName': 'japaneast.batch.azure.com', + 'description': 'Applicable to all Azure Batch pools.', + 'endpointDetails': [ + { + 'port': 443 + } + ] + } + ] + }, + { + 'category': 'Azure Storage', + 'endpoints': [ + { + 'domainName': 'sampleautostorageaccountname.blob.core.windows.net', + 'description': 'AutoStorage endpoint for this Batch account. Applicable to all Azure Batch pools under this account.', + 'endpointDetails': [ + { + 'port': 443 + } + ] + } + ] + } + ] + }") + }; + + response.Headers.Add("x-ms-request-id", "1"); + var handler = new RecordedDelegatingHandler(response) { StatusCodeToReturn = HttpStatusCode.OK }; + var client = BatchTestHelper.GetBatchManagementClient(handler); + + IPage result = client.BatchAccount.ListOutboundNetworkDependenciesEndpoints("default-azurebatch-japaneast", "sampleacct"); + + Assert.Equal(2, result.Count()); + + OutboundEnvironmentEndpoint endpoint = result.ElementAt(0); + Assert.Equal("Azure Batch", endpoint.Category); + Assert.Equal("japaneast.batch.azure.com", endpoint.Endpoints[0].DomainName); + Assert.Equal("Applicable to all Azure Batch pools.", endpoint.Endpoints[0].Description); + Assert.Equal(443, endpoint.Endpoints[0].EndpointDetails[0].Port); + + endpoint = result.ElementAt(1); + Assert.Equal("Azure Storage", endpoint.Category); + Assert.Equal("sampleautostorageaccountname.blob.core.windows.net", endpoint.Endpoints[0].DomainName); + Assert.Equal("AutoStorage endpoint for this Batch account. Applicable to all Azure Batch pools under this account.", endpoint.Endpoints[0].Description); + Assert.Equal(443, endpoint.Endpoints[0].EndpointDetails[0].Port); + } + + [Fact] + public void UserAssignedIdentitiesShouldSubstituteForBatchAccountIdentityUserAssignedIdentitiesValue() + { + string principalId = "TestPrincipal"; + string tenantId = "TestTenant"; + BatchAccountIdentityUserAssignedIdentitiesValue testIdentity = new BatchAccountIdentityUserAssignedIdentitiesValue(); + BatchAccountIdentity identity = new BatchAccountIdentity(ResourceIdentityType.UserAssigned, principalId, tenantId, new Dictionary { { "", testIdentity } }); + + Assert.True(testIdentity is UserAssignedIdentities); + Assert.Equal(principalId, identity.PrincipalId); + Assert.Equal(tenantId, identity.TenantId); + } } } diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/tests/InMemoryTests/LocationTests.InMemory.cs b/sdk/batch/Microsoft.Azure.Management.Batch/tests/InMemoryTests/LocationTests.InMemory.cs index aabf759d2007..d880322d9d2d 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/tests/InMemoryTests/LocationTests.InMemory.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/tests/InMemoryTests/LocationTests.InMemory.cs @@ -4,6 +4,7 @@ using Batch.Tests.Helpers; using Microsoft.Azure.Management.Batch; using Microsoft.Rest; +using System.Linq; using System.Net; using System.Net.Http; using Xunit; @@ -44,5 +45,63 @@ public void GetLocationQuotasValidateResponse() // Validate result Assert.Equal(5, result.AccountQuota); } + + [Fact] + public void ListSupportedCloudServiceSkusValidateResponse() + { + var response = new HttpResponseMessage(HttpStatusCode.OK) + { + Content = new StringContent(@"{ + 'value': [ + { + 'name': 'Small', + 'familyName': 'standardA0_A7Family', + 'capabilities': [ + { + 'name': 'MaxResourceVolumeMB', + 'value': '20480' + }, + { + 'name': 'vCPUs', + 'value': '1' + }, + { + 'name': 'HyperVGenerations', + 'value': 'V1' + }, + { + 'name': 'MemoryGB', + 'value': '0.75' + }, + { + 'name': 'LowPriorityCapable', + 'value': 'False' + }, + { + 'name': 'vCPUsAvailable', + 'value': '1' + }, + { + 'name': 'EphemeralOSDiskSupported', + 'value': 'False' + } + ] + } + ] + }") + }; + + response.Headers.Add("x-ms-request-id", "1"); + var handler = new RecordedDelegatingHandler(response) { StatusCodeToReturn = HttpStatusCode.OK }; + var client = BatchTestHelper.GetBatchManagementClient(handler); + + var result = client.Location.ListSupportedCloudServiceSkus("westus"); + + // Validate headers + Assert.Equal(HttpMethod.Get, handler.Method); + Assert.Equal("standardA0_A7Family", result.Single().FamilyName); + Assert.Equal("Small", result.Single().Name); + Assert.Equal(7, result.Single().Capabilities.Count()); + } } } diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/tests/ScenarioTests/AccountTests.ScenarioTests.cs b/sdk/batch/Microsoft.Azure.Management.Batch/tests/ScenarioTests/AccountTests.ScenarioTests.cs index 50a715b417d1..bc77593be8fb 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/tests/ScenarioTests/AccountTests.ScenarioTests.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/tests/ScenarioTests/AccountTests.ScenarioTests.cs @@ -21,48 +21,51 @@ public class AccountTests : BatchScenarioTestBase [Fact] public async Task BatchAccountEndToEndAsync() { - using (MockContext context = StartMockContextAndInitializeClients(this.GetType())) + using (MockContext context = StartMockContextAndInitializeClients(GetType())) { string resourceGroupName = TestUtilities.GenerateName(); string batchAccountName = TestUtilities.GenerateName(); - ResourceGroup group = new ResourceGroup(this.Location); - await this.ResourceManagementClient.ResourceGroups.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, group); + ResourceGroup group = new ResourceGroup(Location); + await ResourceManagementClient.ResourceGroups.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, group); try { // Check if the account exists - var checkAvailabilityResult = await this.BatchManagementClient.Location.CheckNameAvailabilityAsync(this.Location, batchAccountName); + var checkAvailabilityResult = await BatchManagementClient.Location.CheckNameAvailabilityAsync(Location, batchAccountName); Assert.True(checkAvailabilityResult.NameAvailable); // Create an account - BatchAccountCreateParameters createParams = new BatchAccountCreateParameters(this.Location); - await this.BatchManagementClient.BatchAccount.CreateAsync(resourceGroupName, batchAccountName, createParams); + BatchAccountCreateParameters createParams = new BatchAccountCreateParameters(Location); + AuthenticationMode authMode = AuthenticationMode.SharedKey; + createParams.AllowedAuthenticationModes = new List { authMode }; + await BatchManagementClient.BatchAccount.CreateAsync(resourceGroupName, batchAccountName, createParams); // Check if the account exists now - checkAvailabilityResult = await this.BatchManagementClient.Location.CheckNameAvailabilityAsync(this.Location, batchAccountName); + checkAvailabilityResult = await BatchManagementClient.Location.CheckNameAvailabilityAsync(Location, batchAccountName); Assert.False(checkAvailabilityResult.NameAvailable); Assert.NotNull(checkAvailabilityResult.Message); Assert.NotNull(checkAvailabilityResult.Reason); // Get the account and verify some properties - BatchAccount batchAccount = await this.BatchManagementClient.BatchAccount.GetAsync(resourceGroupName, batchAccountName); + BatchAccount batchAccount = await BatchManagementClient.BatchAccount.GetAsync(resourceGroupName, batchAccountName); Assert.Equal(batchAccountName, batchAccount.Name); Assert.True(batchAccount.DedicatedCoreQuota > 0); Assert.True(batchAccount.LowPriorityCoreQuota > 0); + Assert.True(batchAccount.AllowedAuthenticationModes.Single() == authMode); // Rotate a key - BatchAccountKeys originalKeys = await this.BatchManagementClient.BatchAccount.GetKeysAsync(resourceGroupName, batchAccountName); - BatchAccountKeys newKeys = await this.BatchManagementClient.BatchAccount.RegenerateKeyAsync(resourceGroupName, batchAccountName, AccountKeyType.Primary); + BatchAccountKeys originalKeys = await BatchManagementClient.BatchAccount.GetKeysAsync(resourceGroupName, batchAccountName); + BatchAccountKeys newKeys = await BatchManagementClient.BatchAccount.RegenerateKeyAsync(resourceGroupName, batchAccountName, AccountKeyType.Primary); Assert.NotEqual(originalKeys.Primary, newKeys.Primary); Assert.Equal(originalKeys.Secondary, newKeys.Secondary); // List accounts under the resource group - IPage listResponse = await this.BatchManagementClient.BatchAccount.ListByResourceGroupAsync(resourceGroupName); + IPage listResponse = await BatchManagementClient.BatchAccount.ListByResourceGroupAsync(resourceGroupName); List accounts = new List(listResponse); string nextLink = listResponse.NextPageLink; while (nextLink != null) { - listResponse = await this.BatchManagementClient.BatchAccount.ListByResourceGroupNextAsync(nextLink); + listResponse = await BatchManagementClient.BatchAccount.ListByResourceGroupNextAsync(nextLink); accounts.AddRange(listResponse); nextLink = listResponse.NextPageLink; } @@ -70,10 +73,24 @@ public async Task BatchAccountEndToEndAsync() Assert.Single(accounts); Assert.Equal(batchAccountName, accounts.First().Name); + IPage endpointsResponse = await BatchManagementClient.BatchAccount.ListOutboundNetworkDependenciesEndpointsAsync(resourceGroupName, batchAccount.Name); + List endpoints = new List(); + + do + { + endpointsResponse = await BatchManagementClient.BatchAccount.ListOutboundNetworkDependenciesEndpointsAsync(resourceGroupName, batchAccount.Name); + endpoints.AddRange(endpointsResponse); + nextLink = endpointsResponse.NextPageLink; + } + while (nextLink != null); + + Assert.NotEmpty(endpoints); + Assert.True(endpoints.First().Endpoints.Count() > 0); + // Delete the account try { - await this.BatchManagementClient.BatchAccount.DeleteAsync(resourceGroupName, batchAccountName); + await BatchManagementClient.BatchAccount.DeleteAsync(resourceGroupName, batchAccountName); } catch (CloudException ex) { @@ -90,7 +107,7 @@ public async Task BatchAccountEndToEndAsync() // Verify account was deleted. A GET operation will return a 404 error and result in an exception try { - await this.BatchManagementClient.BatchAccount.GetAsync(resourceGroupName, batchAccountName); + await BatchManagementClient.BatchAccount.GetAsync(resourceGroupName, batchAccountName); } catch (CloudException ex) { @@ -99,7 +116,7 @@ public async Task BatchAccountEndToEndAsync() } finally { - await this.ResourceManagementClient.ResourceGroups.DeleteWithHttpMessagesAsync(resourceGroupName); + await ResourceManagementClient.ResourceGroups.DeleteWithHttpMessagesAsync(resourceGroupName); } } } @@ -107,20 +124,20 @@ public async Task BatchAccountEndToEndAsync() [Fact] public async Task BatchAccountCanCreateWithBYOSEnabled() { - using (MockContext context = StartMockContextAndInitializeClients(this.GetType())) + using (MockContext context = StartMockContextAndInitializeClients(GetType())) { string resourceGroupName = TestUtilities.GenerateName(); string batchAccountName = TestUtilities.GenerateName(); string keyvaultName = TestUtilities.GenerateName(); - ResourceGroup group = new ResourceGroup(this.Location); - await this.ResourceManagementClient.ResourceGroups.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, group); + ResourceGroup group = new ResourceGroup(Location); + await ResourceManagementClient.ResourceGroups.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, group); try { //Register with keyvault just in case we haven't already - await this.ResourceManagementClient.Providers.RegisterWithHttpMessagesAsync("Microsoft.KeyVault"); + await ResourceManagementClient.Providers.RegisterWithHttpMessagesAsync("Microsoft.KeyVault"); - var result = await this.ResourceManagementClient.Resources.CreateOrUpdateWithHttpMessagesAsync( + var result = await ResourceManagementClient.Resources.CreateOrUpdateWithHttpMessagesAsync( resourceGroupName: resourceGroupName, resourceProviderNamespace: "Microsoft.KeyVault", parentResourcePath: "", @@ -129,7 +146,7 @@ public async Task BatchAccountCanCreateWithBYOSEnabled() apiVersion: "2016-10-01", parameters: new GenericResource() { - Location = this.Location, + Location = Location, Properties = new Dictionary { {"tenantId", "72f988bf-86f1-41af-91ab-2d7cd011db47"}, @@ -156,20 +173,20 @@ public async Task BatchAccountCanCreateWithBYOSEnabled() }); var keyVaultReferenceId = - $"/subscriptions/{this.BatchManagementClient.SubscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.KeyVault/vaults/{keyvaultName}"; + $"/subscriptions/{BatchManagementClient.SubscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.KeyVault/vaults/{keyvaultName}"; var keyVaultReferenceUrl = ((Newtonsoft.Json.Linq.JObject)result.Body.Properties)["vaultUri"].ToString(); // Create an account BatchAccountCreateParameters createParams = new BatchAccountCreateParameters( - this.Location, + Location, poolAllocationMode: PoolAllocationMode.UserSubscription, keyVaultReference: new KeyVaultReference( keyVaultReferenceId, keyVaultReferenceUrl)); - await this.BatchManagementClient.BatchAccount.CreateAsync(resourceGroupName, batchAccountName, createParams); + await BatchManagementClient.BatchAccount.CreateAsync(resourceGroupName, batchAccountName, createParams); // Get the account and verify some properties - BatchAccount batchAccount = await this.BatchManagementClient.BatchAccount.GetAsync(resourceGroupName, batchAccountName); + BatchAccount batchAccount = await BatchManagementClient.BatchAccount.GetAsync(resourceGroupName, batchAccountName); Assert.Equal(batchAccountName, batchAccount.Name); Assert.Null(batchAccount.DedicatedCoreQuota); Assert.Null(batchAccount.DedicatedCoreQuotaPerVMFamily); @@ -181,10 +198,9 @@ public async Task BatchAccountCanCreateWithBYOSEnabled() } finally { - await this.ResourceManagementClient.ResourceGroups.DeleteWithHttpMessagesAsync(resourceGroupName); + await ResourceManagementClient.ResourceGroups.DeleteWithHttpMessagesAsync(resourceGroupName); } } } - } } diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/tests/ScenarioTests/BatchScenarioTestBase.cs b/sdk/batch/Microsoft.Azure.Management.Batch/tests/ScenarioTests/BatchScenarioTestBase.cs index 8fafe3d4cc41..efd29f963ec6 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/tests/ScenarioTests/BatchScenarioTestBase.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/tests/ScenarioTests/BatchScenarioTestBase.cs @@ -28,10 +28,10 @@ protected MockContext StartMockContextAndInitializeClients( string methodName = "") { MockContext context = MockContext.Start(type, methodName); - this.Location = FindLocation(context); + Location = FindLocation(context); - this.ResourceManagementClient = context.GetServiceClient(); - this.BatchManagementClient = context.GetServiceClient(); + ResourceManagementClient = context.GetServiceClient(); + BatchManagementClient = context.GetServiceClient(); return context; } @@ -40,7 +40,7 @@ private static string FindLocation(MockContext context) var resourceManagementClient = context.GetServiceClient(); Provider provider = resourceManagementClient.Providers.Get("Microsoft.Batch"); IList locations = provider.ResourceTypes.First(resType => resType.ResourceType == "batchAccounts").Locations; - return locations.First(location => location == "West Central US"); + return locations.First(location => location == "East US"); } // Can be used to find a region to test against, but probably shouldn't record tests that use this as it will leave your subscription account details in the diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/tests/ScenarioTests/CertificateTests.ScenarioTests.cs b/sdk/batch/Microsoft.Azure.Management.Batch/tests/ScenarioTests/CertificateTests.ScenarioTests.cs index 95c6fc277218..0686fcdd5dc6 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/tests/ScenarioTests/CertificateTests.ScenarioTests.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/tests/ScenarioTests/CertificateTests.ScenarioTests.cs @@ -15,18 +15,18 @@ public class CertificateTests : BatchScenarioTestBase [Fact] public async Task BatchCertificateEndToEndAsync() { - using (MockContext context = StartMockContextAndInitializeClients(this.GetType())) + using (MockContext context = StartMockContextAndInitializeClients(GetType())) { string resourceGroupName = TestUtilities.GenerateName(); string batchAccountName = TestUtilities.GenerateName(); string batchCertName = "sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7"; - ResourceGroup group = new ResourceGroup(this.Location); - await this.ResourceManagementClient.ResourceGroups.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, group); + ResourceGroup group = new ResourceGroup(Location); + await ResourceManagementClient.ResourceGroups.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, group); // Create an account - BatchAccountCreateParameters createParams = new BatchAccountCreateParameters(this.Location); - await this.BatchManagementClient.BatchAccount.CreateAsync(resourceGroupName, batchAccountName, createParams); + BatchAccountCreateParameters createParams = new BatchAccountCreateParameters(Location); + await BatchManagementClient.BatchAccount.CreateAsync(resourceGroupName, batchAccountName, createParams); try { @@ -37,21 +37,21 @@ public async Task BatchCertificateEndToEndAsync() param.Thumbprint = "cff2ab63c8c955aaf71989efa641b906558d9fb7"; param.ThumbprintAlgorithm = "sha1"; - var certResponse = await this.BatchManagementClient.Certificate.CreateAsync(resourceGroupName, batchAccountName, batchCertName, param); + var certResponse = await BatchManagementClient.Certificate.CreateAsync(resourceGroupName, batchAccountName, batchCertName, param); Assert.Equal(param.Thumbprint, certResponse.Thumbprint); var referenceId = - $"/subscriptions/{this.BatchManagementClient.SubscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{batchAccountName}/certificates/{batchCertName}"; + $"/subscriptions/{BatchManagementClient.SubscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{batchAccountName}/certificates/{batchCertName}"; Assert.Equal(referenceId, certResponse.Id); Assert.Equal(CertificateProvisioningState.Succeeded, certResponse.ProvisioningState); Assert.Equal("sha1", certResponse.ThumbprintAlgorithm); Assert.Equal(CertificateFormat.Pfx, certResponse.Format); // List the certificates - var certs = await this.BatchManagementClient.Certificate.ListByBatchAccountAsync(resourceGroupName, batchAccountName); + var certs = await BatchManagementClient.Certificate.ListByBatchAccountAsync(resourceGroupName, batchAccountName); Assert.Single(certs); // Get the cert - var cert = await this.BatchManagementClient.Certificate.GetAsync(resourceGroupName, batchAccountName, batchCertName); + var cert = await BatchManagementClient.Certificate.GetAsync(resourceGroupName, batchAccountName, batchCertName); Assert.Equal(param.Thumbprint, cert.Thumbprint); Assert.Equal(referenceId, cert.Id); Assert.Equal(CertificateProvisioningState.Succeeded, cert.ProvisioningState); @@ -62,16 +62,16 @@ public async Task BatchCertificateEndToEndAsync() // Update the cert param = new CertificateCreateOrUpdateParameters("MIIGMQIBAzCCBe0GCSqGSIb3DQEHAaCCBd4EggXaMIIF1jCCA8AGCSqGSIb3DQEHAaCCA7EEggOtMIIDqTCCA6UGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAhyd3xCtln3iQICB9AEggKQhe5P10V9iV1BsDlwWT561Yu2hVq3JT8ae/ebx1ZR/gMApVereDKkS9Zg4vFyssusHebbK5pDpU8vfAqle0TM4m7wGsRj453ZorSPUfMpHvQnAOn+2pEpWdMThU7xvZ6DVpwhDOQk9166z+KnKdHGuJKh4haMT7Rw/6xZ1rsBt2423cwTrQVMQyACrEkianpuujubKltN99qRoFAxhQcnYE2KlYKw7lRcExq6mDSYAyk5xJZ1ZFdLj6MAryZroQit/0g5eyhoNEKwWbi8px5j71pRTf7yjN+deMGQKwbGl+3OgaL1UZ5fCjypbVL60kpIBxLZwIJ7p3jJ+q9pbq9zSdzshPYor5lxyUfXqaso/0/91ayNoBzg4hQGh618PhFI6RMGjwkzhB9xk74iweJ9HQyIHf8yx2RCSI22JuCMitPMWSGvOszhbNx3AEDLuiiAOHg391mprEtKZguOIr9LrJwem/YmcHbwyz5YAbZmiseKPkllfC7dafFfCFEkj6R2oegIsZo0pEKYisAXBqT0g+6/jGwuhlZcBo0f7UIZm88iA3MrJCjlXEgV5OcQdoWj+hq0lKEdnhtCKr03AIfukN6+4vjjarZeW1bs0swq0l3XFf5RHa11otshMS4mpewshB9iO9MuKWpRxuxeng4PlKZ/zuBqmPeUrjJ9454oK35Pq+dghfemt7AUpBH/KycDNIZgfdEWUZrRKBGnc519C+RTqxyt5hWL18nJk4LvSd3QKlJ1iyJxClhhb/NWEzPqNdyA5cxen+2T9bd/EqJ2KzRv5/BPVwTQkHH9W/TZElFyvFfOFIW2+03RKbVGw72Mr/0xKZ+awAnEfoU+SL/2Gj2m6PHkqFX2sOCi/tN9EA4xgdswEwYJKoZIhvcNAQkVMQYEBAEAAAAwXQYJKwYBBAGCNxEBMVAeTgBNAGkAYwByAG8AcwBvAGYAdAAgAFMAdAByAG8AbgBnACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjBlBgkqhkiG9w0BCRQxWB5WAFAAdgBrAFQAbQBwADoANABjAGUANgAwADQAZABhAC0AMAA2ADgAMQAtADQANAAxADUALQBhADIAYwBhAC0ANQA3ADcAMwAwADgAZQA2AGQAOQBhAGMwggIOBgkqhkiG9w0BBwGgggH/BIIB+zCCAfcwggHzBgsqhkiG9w0BDAoBA6CCAcswggHHBgoqhkiG9w0BCRYBoIIBtwSCAbMwggGvMIIBXaADAgECAhAdka3aTQsIsUphgIXGUmeRMAkGBSsOAwIdBQAwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3kwHhcNMTYwMTAxMDcwMDAwWhcNMTgwMTAxMDcwMDAwWjASMRAwDgYDVQQDEwdub2Rlc2RrMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC5fhcxbJHxxBEIDzVOMc56s04U6k4GPY7yMR1m+rBGVRiAyV4RjY6U936dqXHCVD36ps2Q0Z+OeEgyCInkIyVeB1EwXcToOcyeS2YcUb0vRWZDouC3tuFdHwiK1Ed5iW/LksmXDotyV7kpqzaPhOFiMtBuMEwNJcPge9k17hRgRQIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAHl2M97QbpzdnwO5HoRBsiEExOcLTNg+GKCr7HUsbzfvrUivw+JLL7qjHAIc5phnK+F5bQ8HKe0L9YXBSKl+fvwxFTATBgkqhkiG9w0BCRUxBgQEAQAAADA7MB8wBwYFKw4DAhoEFGVtyGMqiBd32fGpzlGZQoRM6UQwBBTI0YHFFqTS4Go8CoLgswn29EiuUQICB9A="); param.Password = "nodesdk"; - certResponse = await this.BatchManagementClient.Certificate.UpdateAsync(resourceGroupName, batchAccountName, batchCertName, param); + certResponse = await BatchManagementClient.Certificate.UpdateAsync(resourceGroupName, batchAccountName, batchCertName, param); Assert.Equal(referenceId, certResponse.Id); // Cancel the deletetion - await this.BatchManagementClient.Certificate.CancelDeletionAsync(resourceGroupName, batchAccountName, batchCertName); + await BatchManagementClient.Certificate.CancelDeletionAsync(resourceGroupName, batchAccountName, batchCertName); // Delete the certificate try { - await this.BatchManagementClient.Certificate.DeleteAsync(resourceGroupName, batchAccountName, batchCertName); + await BatchManagementClient.Certificate.DeleteAsync(resourceGroupName, batchAccountName, batchCertName); } catch (CloudException ex) { @@ -84,7 +84,7 @@ public async Task BatchCertificateEndToEndAsync() // Verify certificate was deleted. A GET operation will return a 404 error and result in an exception try { - await this.BatchManagementClient.Certificate.GetAsync(resourceGroupName, batchAccountName, batchCertName); + await BatchManagementClient.Certificate.GetAsync(resourceGroupName, batchAccountName, batchCertName); } catch (CloudException ex) { @@ -95,8 +95,8 @@ public async Task BatchCertificateEndToEndAsync() finally { // Clean up - await this.BatchManagementClient.BatchAccount.DeleteAsync(resourceGroupName, batchAccountName); - await this.ResourceManagementClient.ResourceGroups.DeleteWithHttpMessagesAsync(resourceGroupName); + await BatchManagementClient.BatchAccount.DeleteAsync(resourceGroupName, batchAccountName); + await ResourceManagementClient.ResourceGroups.DeleteWithHttpMessagesAsync(resourceGroupName); } } } diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/tests/ScenarioTests/LocationTests.ScenarioTests.cs b/sdk/batch/Microsoft.Azure.Management.Batch/tests/ScenarioTests/LocationTests.ScenarioTests.cs index 2675a7f2a574..0eeb38c08113 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/tests/ScenarioTests/LocationTests.ScenarioTests.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/tests/ScenarioTests/LocationTests.ScenarioTests.cs @@ -3,6 +3,7 @@ using Microsoft.Azure.Management.Batch; using Microsoft.Azure.Management.Batch.Models; +using Microsoft.Rest.Azure; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using System; using System.Collections.Generic; @@ -18,13 +19,73 @@ public class LocationTests : BatchScenarioTestBase [Fact] public async Task GetLocationQuotasAsync() { - using (MockContext context = StartMockContextAndInitializeClients(this.GetType())) + using (MockContext context = StartMockContextAndInitializeClients(GetType())) { - BatchLocationQuota quotas = await this.BatchManagementClient.Location.GetQuotasAsync(this.Location); + BatchLocationQuota quotas = await BatchManagementClient.Location.GetQuotasAsync(Location); Assert.NotNull(quotas.AccountQuota); Assert.True(quotas.AccountQuota.Value > 0); } } + + [Fact] + public async Task ListSupportedCloudServiceSkusAsync() + { + using (MockContext context = StartMockContextAndInitializeClients(GetType())) + { + IPage result; + + List skus = new List(); + string nextPageLink = null; + do + { + result = await BatchManagementClient.Location.ListSupportedCloudServiceSkusAsync(Location); + skus.AddRange(result.ToList()); + nextPageLink = result.NextPageLink; + } + while (nextPageLink != null); + + Assert.True(skus.Count() > 0); + } + } + + [Fact] + public async Task ListSupportedCloudServiceSkusMaxResultsAsync() + { + using (MockContext context = StartMockContextAndInitializeClients(GetType())) + { + int maxresult = 5; + IPage result = await BatchManagementClient.Location.ListSupportedCloudServiceSkusAsync(Location, maxresults: maxresult); + + int count = result.Count(); + Assert.True(count == maxresult); + } + } + + [Fact] + public async Task ListSupportedCloudServiceSkusFilterFamilyNameAsync() + { + using (MockContext context = StartMockContextAndInitializeClients(GetType())) + { + string filterValue = "basic"; + string filterExpression = $"startswith(familyName,'{filterValue}')"; // Select family names beginning with 'basic'. + IPage result; + + List skus = new List(); + string nextPageLink = null; + do + { + result = await BatchManagementClient.Location.ListSupportedCloudServiceSkusAsync(Location, filter: filterExpression); + skus.AddRange(result.ToList()); + nextPageLink = result.NextPageLink; + } + while (nextPageLink != null); + + var matched = skus.Where(s => s.FamilyName.StartsWith(filterValue)); + var unmatched = skus.Where(s => s.FamilyName.StartsWith(filterValue) == false); + Assert.True(matched.Count() > 0); + Assert.True(unmatched.Count() == 0); + } + } } } diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/tests/ScenarioTests/PoolTests.ScenarioTests.cs b/sdk/batch/Microsoft.Azure.Management.Batch/tests/ScenarioTests/PoolTests.ScenarioTests.cs index 05cf21bb2bec..f3939a217c59 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/tests/ScenarioTests/PoolTests.ScenarioTests.cs +++ b/sdk/batch/Microsoft.Azure.Management.Batch/tests/ScenarioTests/PoolTests.ScenarioTests.cs @@ -17,19 +17,19 @@ public class PoolTests : BatchScenarioTestBase [Fact] public async Task BatchPoolEndToEndAsync() { - using (MockContext context = StartMockContextAndInitializeClients(this.GetType())) + using (MockContext context = StartMockContextAndInitializeClients(GetType())) { string resourceGroupName = TestUtilities.GenerateName(); string batchAccountName = TestUtilities.GenerateName(); string paasPoolName = "test_paas_pool"; string iaasPoolName = "test_iaas_pool"; string displayName = "test_pool"; - ResourceGroup group = new ResourceGroup(this.Location); - await this.ResourceManagementClient.ResourceGroups.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, group); + ResourceGroup group = new ResourceGroup(Location); + await ResourceManagementClient.ResourceGroups.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, group); // Create an account - BatchAccountCreateParameters createParams = new BatchAccountCreateParameters(this.Location); - await this.BatchManagementClient.BatchAccount.CreateAsync(resourceGroupName, batchAccountName, createParams); + BatchAccountCreateParameters createParams = new BatchAccountCreateParameters(Location); + await BatchManagementClient.BatchAccount.CreateAsync(resourceGroupName, batchAccountName, createParams); try { @@ -44,8 +44,12 @@ public async Task BatchPoolEndToEndAsync() OsFamily = "5" } }; + + string userId = "refUserId123"; + ComputeNodeIdentityReference identity = new ComputeNodeIdentityReference(userId); + var resources = new List(); - resources.Add(new ResourceFile(httpUrl: "https://blobsource.com", filePath: "filename.txt")); + resources.Add(new ResourceFile(httpUrl: "https://blobsource.com", filePath: "filename.txt", identityReference: identity)); var environments = new List(); environments.Add(new EnvironmentSetting("ENV_VAR", "env_value")); paasPool.StartTask = new StartTask() @@ -73,10 +77,12 @@ public async Task BatchPoolEndToEndAsync() } }; - var paasPoolResponse = await this.BatchManagementClient.Pool.CreateAsync(resourceGroupName, batchAccountName, paasPoolName, paasPool); + var paasPoolResponse = await BatchManagementClient.Pool.CreateAsync(resourceGroupName, batchAccountName, paasPoolName, paasPool); Assert.NotNull(paasPoolResponse.StartTask); + Assert.Equal(userId, paasPoolResponse.StartTask.ResourceFiles.Single().IdentityReference.ResourceId); + var referenceId = - $"/subscriptions/{this.BatchManagementClient.SubscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{batchAccountName}/pools/{paasPoolName.ToLowerInvariant()}"; + $"/subscriptions/{BatchManagementClient.SubscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{batchAccountName}/pools/{paasPoolName.ToLowerInvariant()}"; Assert.Equal(referenceId, paasPoolResponse.Id); // Create IaaS pool @@ -94,7 +100,8 @@ public async Task BatchPoolEndToEndAsync() Sku = "2016-Datacenter-smalldisk" }, NodeAgentSkuId = "batch.node.windows amd64", - WindowsConfiguration = new WindowsConfiguration(true) + WindowsConfiguration = new WindowsConfiguration(true), + OsDisk = new OSDisk(new DiffDiskSettings(DiffDiskPlacement.CacheDisk)) } }; iaasPool.ScaleSettings = new ScaleSettings() @@ -106,33 +113,35 @@ public async Task BatchPoolEndToEndAsync() } }; - var iaasPoolResponse = await this.BatchManagementClient.Pool.CreateAsync(resourceGroupName, batchAccountName, iaasPoolName, iaasPool); + var iaasPoolResponse = await BatchManagementClient.Pool.CreateAsync(resourceGroupName, batchAccountName, iaasPoolName, iaasPool); Assert.Null(iaasPoolResponse.StartTask); referenceId = - $"/subscriptions/{this.BatchManagementClient.SubscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{batchAccountName}/pools/{iaasPoolName.ToLowerInvariant()}"; + $"/subscriptions/{BatchManagementClient.SubscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{batchAccountName}/pools/{iaasPoolName.ToLowerInvariant()}"; Assert.Equal(referenceId, iaasPoolResponse.Id); // Verify list operation - var pools = await this.BatchManagementClient.Pool.ListByBatchAccountAsync(resourceGroupName, batchAccountName); + var pools = await BatchManagementClient.Pool.ListByBatchAccountAsync(resourceGroupName, batchAccountName); Assert.Equal(2, pools.Count()); // Verify get operation - var pool = await this.BatchManagementClient.Pool.GetAsync(resourceGroupName, batchAccountName, iaasPoolName); + var pool = await BatchManagementClient.Pool.GetAsync(resourceGroupName, batchAccountName, iaasPoolName); Assert.Equal("STANDARD_A1", pool.VmSize); Assert.Equal(displayName, pool.DisplayName); Assert.Equal(AllocationState.Resizing, pool.AllocationState); Assert.Equal("batch.node.windows amd64", pool.DeploymentConfiguration.VirtualMachineConfiguration.NodeAgentSkuId); + Assert.NotNull(pool.DeploymentConfiguration.VirtualMachineConfiguration.OsDisk); + Assert.Equal(DiffDiskPlacement.CacheDisk, pool.DeploymentConfiguration.VirtualMachineConfiguration.OsDisk.EphemeralOSDiskSettings.Placement); // Verify stop resize operation - await this.BatchManagementClient.Pool.StopResizeAsync(resourceGroupName, batchAccountName, iaasPoolName); + await BatchManagementClient.Pool.StopResizeAsync(resourceGroupName, batchAccountName, iaasPoolName); // Verify disable auto scale operation - await this.BatchManagementClient.Pool.DisableAutoScaleAsync(resourceGroupName, batchAccountName, iaasPoolName); + await BatchManagementClient.Pool.DisableAutoScaleAsync(resourceGroupName, batchAccountName, iaasPoolName); // Delete the paas pool try { - await this.BatchManagementClient.Pool.DeleteAsync(resourceGroupName, batchAccountName, paasPoolName); + await BatchManagementClient.Pool.DeleteAsync(resourceGroupName, batchAccountName, paasPoolName); } catch (CloudException ex) { @@ -145,7 +154,7 @@ public async Task BatchPoolEndToEndAsync() // Delete iaaS pool try { - await this.BatchManagementClient.Pool.DeleteAsync(resourceGroupName, batchAccountName, iaasPoolName); + await BatchManagementClient.Pool.DeleteAsync(resourceGroupName, batchAccountName, iaasPoolName); } catch (CloudException ex) { @@ -158,7 +167,7 @@ public async Task BatchPoolEndToEndAsync() // Verify pool was deleted. A GET operation will return a 404 error and result in an exception try { - await this.BatchManagementClient.Pool.GetAsync(resourceGroupName, batchAccountName, paasPoolName); + await BatchManagementClient.Pool.GetAsync(resourceGroupName, batchAccountName, paasPoolName); } catch (CloudException ex) { @@ -168,8 +177,8 @@ public async Task BatchPoolEndToEndAsync() } finally { - await this.BatchManagementClient.BatchAccount.DeleteAsync(resourceGroupName, batchAccountName); - await this.ResourceManagementClient.ResourceGroups.DeleteWithHttpMessagesAsync(resourceGroupName); + await BatchManagementClient.BatchAccount.DeleteAsync(resourceGroupName, batchAccountName); + await ResourceManagementClient.ResourceGroups.DeleteWithHttpMessagesAsync(resourceGroupName); } } } diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/AccountTests/BatchAccountCanCreateWithBYOSEnabled.json b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/AccountTests/BatchAccountCanCreateWithBYOSEnabled.json index 7c217a27e43a..fd276f7da06c 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/AccountTests/BatchAccountCanCreateWithBYOSEnabled.json +++ b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/AccountTests/BatchAccountCanCreateWithBYOSEnabled.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15c8d537-b7a6-40a9-8cbd-088808b4c7c2" + "2de7e8ba-9b1a-4e75-bfed-49d64ad1902a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "eb28073a-62ac-4b69-8c47-8ee07c5a6890" + "18a8ab07-4734-4049-a3c3-1238ab538daa" ], "x-ms-correlation-request-id": [ - "eb28073a-62ac-4b69-8c47-8ee07c5a6890" + "18a8ab07-4734-4049-a3c3-1238ab538daa" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T165703Z:eb28073a-62ac-4b69-8c47-8ee07c5a6890" + "CENTRALUSEUAP:20210728T131521Z:18a8ab07-4734-4049-a3c3-1238ab538daa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Tue, 19 Jan 2021 16:57:03 GMT" + "Wed, 28 Jul 2021 13:15:21 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,35 +54,35 @@ "-1" ], "Content-Length": [ - "6417" + "7221" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/pools\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/certificates\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/pools\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/certificates\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourcegroups/azsmnet7620?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ3NjIwP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet275?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyNzU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "97f43f34-9456-42f1-9ac0-56f6256ca695" + "27fba40f-63db-4f5d-b0b0-b6aac6e1609e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "37" + "29" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "878486e7-d702-487d-a373-87235193e026" + "21de23bd-267a-40d4-a990-26660acc07a6" ], "x-ms-correlation-request-id": [ - "878486e7-d702-487d-a373-87235193e026" + "21de23bd-267a-40d4-a990-26660acc07a6" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T165705Z:878486e7-d702-487d-a373-87235193e026" + "CENTRALUSEUAP:20210728T131522Z:21de23bd-267a-40d4-a990-26660acc07a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,10 +111,10 @@ "nosniff" ], "Date": [ - "Tue, 19 Jan 2021 16:57:04 GMT" + "Wed, 28 Jul 2021 13:15:21 GMT" ], "Content-Length": [ - "182" + "173" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,25 +123,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet7620\",\r\n \"name\": \"azsmnet7620\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet275\",\r\n \"name\": \"azsmnet275\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.KeyVault/register?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.KeyVault/register?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvcmVnaXN0ZXI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c89aa95e-34c8-47cb-b779-fd71ffe2d847" + "f3d424f5-740f-4681-82ae-16093e6e7048" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -156,13 +156,13 @@ "1199" ], "x-ms-request-id": [ - "84fcc499-c571-402f-a3cf-468d0874555d" + "591f1d76-357b-4ae7-a655-a708fe45a276" ], "x-ms-correlation-request-id": [ - "84fcc499-c571-402f-a3cf-468d0874555d" + "591f1d76-357b-4ae7-a655-a708fe45a276" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T165706Z:84fcc499-c571-402f-a3cf-468d0874555d" + "CENTRALUSEUAP:20210728T131523Z:591f1d76-357b-4ae7-a655-a708fe45a276" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,10 +171,10 @@ "nosniff" ], "Date": [ - "Tue, 19 Jan 2021 16:57:05 GMT" + "Wed, 28 Jul 2021 13:15:22 GMT" ], "Content-Length": [ - "7615" + "10616" ], "Content-Type": [ "application/json; charset=utf-8" @@ -183,32 +183,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n },\r\n {\r\n \"applicationId\": \"589d5083-6f11-4d30-a62a-a4b316a14abf\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/eventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedHSMs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Switzerland North\",\r\n \"South Africa North\",\r\n \"UK South\",\r\n \"SouthEast Asia\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n },\r\n {\r\n \"applicationId\": \"589d5083-6f11-4d30-a62a-a4b316a14abf\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2019-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/eventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedHSMs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Switzerland North\",\r\n \"South Africa North\",\r\n \"UK South\",\r\n \"SouthEast Asia\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"deletedManagedHSMs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Switzerland North\",\r\n \"South Africa North\",\r\n \"UK South\",\r\n \"SouthEast Asia\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedManagedHSMs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Switzerland North\",\r\n \"South Africa North\",\r\n \"UK South\",\r\n \"SouthEast Asia\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"Australia Central\",\r\n \"West US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/keys\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/keys/versions\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-04-01-preview\",\r\n \"2020-04-01-preview\",\r\n \"2019-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourcegroups/azsmnet7620/providers/Microsoft.KeyVault//vaults/azsmnet1834?api-version=2016-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ3NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvL3ZhdWx0cy9henNtbmV0MTgzND9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet275/providers/Microsoft.KeyVault//vaults/azsmnet2822?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC8vdmF1bHRzL2F6c21uZXQyODIyP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"objectId\": \"f520d84c-3fd3-4cc8-88d4-2ed25b00d27a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"All\"\r\n ],\r\n \"keys\": [\r\n \"All\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enabledForDiskEncryption\": true\r\n },\r\n \"location\": \"West Central US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"objectId\": \"f520d84c-3fd3-4cc8-88d4-2ed25b00d27a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"All\"\r\n ],\r\n \"keys\": [\r\n \"All\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enabledForDiskEncryption\": true\r\n },\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "73c0c36f-3067-4881-8f11-7ddb6b29f8db" + "7769620e-8e6d-4472-bdc0-c8d071ec7fda" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "625" + "617" ] }, "ResponseHeaders": { @@ -218,11 +218,14 @@ "Pragma": [ "no-cache" ], + "x-ms-client-request-id": [ + "7769620e-8e6d-4472-bdc0-c8d071ec7fda" + ], "x-ms-keyvault-service-version": [ - "1.1.190.0" + "1.5.61.0" ], "x-ms-request-id": [ - "ddba993e-e8aa-4ff1-9be3-8bf989fecdca" + "74d27a7c-5e34-4ee5-bd44-03ee8f956355" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -243,16 +246,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "fb8d85eb-c6e6-4ec1-bcee-9ef00596d9c8" + "7b33fc1a-780f-410c-94c1-54eafd837e7d" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T165710Z:fb8d85eb-c6e6-4ec1-bcee-9ef00596d9c8" + "CENTRALUSEUAP:20210728T131525Z:7b33fc1a-780f-410c-94c1-54eafd837e7d" ], "Date": [ - "Tue, 19 Jan 2021 16:57:10 GMT" + "Wed, 28 Jul 2021 13:15:25 GMT" ], "Content-Length": [ - "686" + "677" ], "Content-Type": [ "application/json; charset=utf-8" @@ -261,19 +264,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet7620/providers/Microsoft.KeyVault/vaults/azsmnet1834\",\r\n \"name\": \"azsmnet1834\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"f520d84c-3fd3-4cc8-88d4-2ed25b00d27a\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"All\"\r\n ],\r\n \"keys\": [\r\n \"All\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://azsmnet1834.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet275/providers/Microsoft.KeyVault/vaults/azsmnet2822\",\r\n \"name\": \"azsmnet2822\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"f520d84c-3fd3-4cc8-88d4-2ed25b00d27a\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"All\"\r\n ],\r\n \"keys\": [\r\n \"All\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://azsmnet2822.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourcegroups/azsmnet7620/providers/Microsoft.KeyVault//vaults/azsmnet1834?api-version=2016-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ3NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvL3ZhdWx0cy9henNtbmV0MTgzND9hcGktdmVyc2lvbj0yMDE2LTEwLTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet275/providers/Microsoft.KeyVault//vaults/azsmnet2822?api-version=2016-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC8vdmF1bHRzL2F6c21uZXQyODIyP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -284,11 +287,14 @@ "Pragma": [ "no-cache" ], + "x-ms-client-request-id": [ + "1728b0a4-413b-46bb-b5a4-756aa5ed6ce3" + ], "x-ms-keyvault-service-version": [ - "1.1.190.0" + "1.5.61.0" ], "x-ms-request-id": [ - "03137dd1-c81e-4cfe-8b3d-cd5d68b79376" + "d7e7dff1-7a4a-4756-9bed-1eff780b4b7e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -309,16 +315,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "d0a32b1b-e9e0-40bc-a2c1-32ca1517299c" + "043b5fdd-e983-4c80-ab95-cd6345289328" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T165740Z:d0a32b1b-e9e0-40bc-a2c1-32ca1517299c" + "CENTRALUSEUAP:20210728T131556Z:043b5fdd-e983-4c80-ab95-cd6345289328" ], "Date": [ - "Tue, 19 Jan 2021 16:57:40 GMT" + "Wed, 28 Jul 2021 13:15:55 GMT" ], "Content-Length": [ - "682" + "673" ], "Content-Type": [ "application/json; charset=utf-8" @@ -327,32 +333,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet7620/providers/Microsoft.KeyVault/vaults/azsmnet1834\",\r\n \"name\": \"azsmnet1834\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"f520d84c-3fd3-4cc8-88d4-2ed25b00d27a\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"All\"\r\n ],\r\n \"keys\": [\r\n \"All\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://azsmnet1834.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet275/providers/Microsoft.KeyVault/vaults/azsmnet2822\",\r\n \"name\": \"azsmnet2822\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"f520d84c-3fd3-4cc8-88d4-2ed25b00d27a\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"All\"\r\n ],\r\n \"keys\": [\r\n \"All\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://azsmnet2822.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet7620/providers/Microsoft.Batch/batchAccounts/azsmnet8707?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODcwNz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet275/providers/Microsoft.Batch/batchAccounts/azsmnet2845?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQyODQ1P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West Central US\",\r\n \"properties\": {\r\n \"poolAllocationMode\": \"UserSubscription\",\r\n \"keyVaultReference\": {\r\n \"id\": \"/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet7620/providers/Microsoft.KeyVault/vaults/azsmnet1834\",\r\n \"url\": \"https://azsmnet1834.vault.azure.net/\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"poolAllocationMode\": \"UserSubscription\",\r\n \"keyVaultReference\": {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet275/providers/Microsoft.KeyVault/vaults/azsmnet2822\",\r\n \"url\": \"https://azsmnet2822.vault.azure.net/\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "18f292b7-5d00-4285-b640-54cbcc1823f7" + "2771659f-3297-4f1a-92f2-d298a20c9eea" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "340" + "331" ] }, "ResponseHeaders": { @@ -363,13 +369,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet7620/providers/Microsoft.Batch/batchAccounts/azsmnet8707/operationResults/e38f7f5a-574b-4537-a6ee-9468fdbcad02?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet275/providers/Microsoft.Batch/batchAccounts/azsmnet2845/operationResults/5b751307-fdda-4ac3-abe4-2f8d33d4a224?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "e38f7f5a-574b-4537-a6ee-9468fdbcad02" + "5b751307-fdda-4ac3-abe4-2f8d33d4a224" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -381,16 +387,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "7717e6ea-d9aa-4da2-b4da-db943c663530" + "a0b88c3b-f514-4de3-9d40-af8ffb79a265" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T165745Z:7717e6ea-d9aa-4da2-b4da-db943c663530" + "CENTRALUSEUAP:20210728T131558Z:a0b88c3b-f514-4de3-9d40-af8ffb79a265" ], "Date": [ - "Tue, 19 Jan 2021 16:57:44 GMT" + "Wed, 28 Jul 2021 13:15:58 GMT" ], "Expires": [ "-1" @@ -403,16 +409,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet7620/providers/Microsoft.Batch/batchAccounts/azsmnet8707/operationResults/e38f7f5a-574b-4537-a6ee-9468fdbcad02?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODcwNy9vcGVyYXRpb25SZXN1bHRzL2UzOGY3ZjVhLTU3NGItNDUzNy1hNmVlLTk0NjhmZGJjYWQwMj9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet275/providers/Microsoft.Batch/batchAccounts/azsmnet2845/operationResults/5b751307-fdda-4ac3-abe4-2f8d33d4a224?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQyODQ1L29wZXJhdGlvblJlc3VsdHMvNWI3NTEzMDctZmRkYS00YWMzLWFiZTQtMmY4ZDMzZDRhMjI0P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -423,13 +429,13 @@ "no-cache" ], "ETag": [ - "\"0x8D8BC9B60FA6BBB\"" + "\"0x8D951C9DFFFA867\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "869cb42b-7456-4bc1-8520-ff7fbe012b4b" + "eafe321d-4ddc-41ed-a50e-2175679e5786" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -441,16 +447,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "5b981f08-26fd-4ca7-877a-24363faa66a5" + "0c4d8d0f-b261-415f-97ea-c1107da7400d" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T165800Z:5b981f08-26fd-4ca7-877a-24363faa66a5" + "CENTRALUSEUAP:20210728T131613Z:0c4d8d0f-b261-415f-97ea-c1107da7400d" ], "Date": [ - "Tue, 19 Jan 2021 16:57:59 GMT" + "Wed, 28 Jul 2021 13:16:13 GMT" ], "Content-Length": [ - "776" + "834" ], "Content-Type": [ "application/json; charset=utf-8" @@ -459,29 +465,29 @@ "-1" ], "Last-Modified": [ - "Tue, 19 Jan 2021 16:58:00 GMT" + "Wed, 28 Jul 2021 13:16:13 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet7620/providers/Microsoft.Batch/batchAccounts/azsmnet8707\",\r\n \"name\": \"azsmnet8707\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet8707.westcentralus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": true,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"UserSubscription\",\r\n \"keyVaultReference\": {\r\n \"id\": \"/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet7620/providers/Microsoft.KeyVault/vaults/azsmnet1834\",\r\n \"url\": \"https://azsmnet1834.vault.azure.net/\"\r\n },\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet275/providers/Microsoft.Batch/batchAccounts/azsmnet2845\",\r\n \"name\": \"azsmnet2845\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet2845.pilotprod2.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": true,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"UserSubscription\",\r\n \"keyVaultReference\": {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet275/providers/Microsoft.KeyVault/vaults/azsmnet2822\",\r\n \"url\": \"https://azsmnet2822.vault.azure.net/\"\r\n },\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n },\r\n \"allowedAuthenticationModes\": [\r\n \"AAD\",\r\n \"TaskAuthenticationToken\"\r\n ]\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet7620/providers/Microsoft.Batch/batchAccounts/azsmnet8707?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ3NjIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODcwNz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet275/providers/Microsoft.Batch/batchAccounts/azsmnet2845?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQyNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQyODQ1P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ccf9cffe-f228-41de-80b3-f2aab91900e2" + "dde6e7d9-2ca4-4a29-a1ca-1886e6fbe492" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -492,13 +498,13 @@ "no-cache" ], "ETag": [ - "\"0x8D8BC9B5A04495D\"" + "\"0x8D951C9D9755942\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-request-id": [ - "73a1221f-16a4-482f-85a6-6b11e6b72331" + "45fbce03-ec8b-4288-8327-17d7598dfd2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -510,16 +516,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "2a86352d-eab0-484f-83ef-c024811d6c6a" + "43830969-6409-4c77-80aa-73193a2ec8d7" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T165800Z:2a86352d-eab0-484f-83ef-c024811d6c6a" + "CENTRALUSEUAP:20210728T131613Z:43830969-6409-4c77-80aa-73193a2ec8d7" ], "Date": [ - "Tue, 19 Jan 2021 16:58:00 GMT" + "Wed, 28 Jul 2021 13:16:13 GMT" ], "Content-Length": [ - "776" + "834" ], "Content-Type": [ "application/json; charset=utf-8" @@ -528,28 +534,28 @@ "-1" ], "Last-Modified": [ - "Tue, 19 Jan 2021 16:57:48 GMT" + "Wed, 28 Jul 2021 13:16:02 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet7620/providers/Microsoft.Batch/batchAccounts/azsmnet8707\",\r\n \"name\": \"azsmnet8707\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet8707.westcentralus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": true,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"UserSubscription\",\r\n \"keyVaultReference\": {\r\n \"id\": \"/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet7620/providers/Microsoft.KeyVault/vaults/azsmnet1834\",\r\n \"url\": \"https://azsmnet1834.vault.azure.net/\"\r\n },\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet275/providers/Microsoft.Batch/batchAccounts/azsmnet2845\",\r\n \"name\": \"azsmnet2845\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet2845.pilotprod2.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": true,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"UserSubscription\",\r\n \"keyVaultReference\": {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet275/providers/Microsoft.KeyVault/vaults/azsmnet2822\",\r\n \"url\": \"https://azsmnet2822.vault.azure.net/\"\r\n },\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n },\r\n \"allowedAuthenticationModes\": [\r\n \"AAD\",\r\n \"TaskAuthenticationToken\"\r\n ]\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourcegroups/azsmnet7620?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ3NjIwP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet275?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyNzU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18841d20-4fa6-4f8d-9e06-46378d190c00" + "05362a10-e796-45d7-9c0d-806f08810921" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -561,7 +567,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNzYyMC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" @@ -570,13 +576,13 @@ "14999" ], "x-ms-request-id": [ - "549f946f-54ac-4636-954f-a163d34cc4b0" + "1e2f8cc3-4a19-4f9b-8ca2-ab5792f55d74" ], "x-ms-correlation-request-id": [ - "549f946f-54ac-4636-954f-a163d34cc4b0" + "1e2f8cc3-4a19-4f9b-8ca2-ab5792f55d74" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T165802Z:549f946f-54ac-4636-954f-a163d34cc4b0" + "CENTRALUSEUAP:20210728T131614Z:1e2f8cc3-4a19-4f9b-8ca2-ab5792f55d74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -585,7 +591,7 @@ "nosniff" ], "Date": [ - "Tue, 19 Jan 2021 16:58:01 GMT" + "Wed, 28 Jul 2021 13:16:14 GMT" ], "Expires": [ "-1" @@ -598,15 +604,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNzYyMC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOell5TUMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNamMxTFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -618,22 +624,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNzYyMC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11996" ], "x-ms-request-id": [ - "b30a07d0-f47b-45d6-b047-0ee25833aaa2" + "ac09fb6e-7a28-4c96-ab10-fc69f854416c" ], "x-ms-correlation-request-id": [ - "b30a07d0-f47b-45d6-b047-0ee25833aaa2" + "ac09fb6e-7a28-4c96-ab10-fc69f854416c" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T165817Z:b30a07d0-f47b-45d6-b047-0ee25833aaa2" + "CENTRALUSEUAP:20210728T131629Z:ac09fb6e-7a28-4c96-ab10-fc69f854416c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -642,7 +648,7 @@ "nosniff" ], "Date": [ - "Tue, 19 Jan 2021 16:58:16 GMT" + "Wed, 28 Jul 2021 13:16:29 GMT" ], "Expires": [ "-1" @@ -655,15 +661,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNzYyMC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOell5TUMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNamMxTFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -675,22 +681,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNzYyMC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11995" ], "x-ms-request-id": [ - "1e57cdfa-bd12-4b23-92e9-3b10bd103ebf" + "1a233fbf-2511-4cff-bb11-5ee0e60b396e" ], "x-ms-correlation-request-id": [ - "1e57cdfa-bd12-4b23-92e9-3b10bd103ebf" + "1a233fbf-2511-4cff-bb11-5ee0e60b396e" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T165832Z:1e57cdfa-bd12-4b23-92e9-3b10bd103ebf" + "CENTRALUSEUAP:20210728T131645Z:1a233fbf-2511-4cff-bb11-5ee0e60b396e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -699,7 +705,7 @@ "nosniff" ], "Date": [ - "Tue, 19 Jan 2021 16:58:31 GMT" + "Wed, 28 Jul 2021 13:16:44 GMT" ], "Expires": [ "-1" @@ -712,15 +718,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNzYyMC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOell5TUMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNamMxTFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -732,22 +738,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNzYyMC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11994" ], "x-ms-request-id": [ - "c5bcad63-fc18-4cf3-9140-f8d0bd050ff0" + "c9d540ef-33b8-4c8a-953d-fd95f06c0b17" ], "x-ms-correlation-request-id": [ - "c5bcad63-fc18-4cf3-9140-f8d0bd050ff0" + "c9d540ef-33b8-4c8a-953d-fd95f06c0b17" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T165847Z:c5bcad63-fc18-4cf3-9140-f8d0bd050ff0" + "CENTRALUSEUAP:20210728T131700Z:c9d540ef-33b8-4c8a-953d-fd95f06c0b17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -756,7 +762,7 @@ "nosniff" ], "Date": [ - "Tue, 19 Jan 2021 16:58:47 GMT" + "Wed, 28 Jul 2021 13:17:00 GMT" ], "Expires": [ "-1" @@ -769,15 +775,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNzYyMC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOell5TUMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNamMxTFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -789,22 +795,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNzYyMC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11993" ], "x-ms-request-id": [ - "4bdf0316-9a4f-4e04-b326-89ef6e815033" + "c668d548-f919-42d2-84dc-12e5804c2d74" ], "x-ms-correlation-request-id": [ - "4bdf0316-9a4f-4e04-b326-89ef6e815033" + "c668d548-f919-42d2-84dc-12e5804c2d74" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T165902Z:4bdf0316-9a4f-4e04-b326-89ef6e815033" + "CENTRALUSEUAP:20210728T131715Z:c668d548-f919-42d2-84dc-12e5804c2d74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -813,7 +819,7 @@ "nosniff" ], "Date": [ - "Tue, 19 Jan 2021 16:59:02 GMT" + "Wed, 28 Jul 2021 13:17:15 GMT" ], "Expires": [ "-1" @@ -826,15 +832,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNzYyMC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOell5TUMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNamMxTFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -846,22 +852,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNzYyMC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11992" ], "x-ms-request-id": [ - "04bd80dd-3f31-45f6-bb7d-c4a837633759" + "4da06518-26e2-46ea-a0cc-55794f8ab0e7" ], "x-ms-correlation-request-id": [ - "04bd80dd-3f31-45f6-bb7d-c4a837633759" + "4da06518-26e2-46ea-a0cc-55794f8ab0e7" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T165917Z:04bd80dd-3f31-45f6-bb7d-c4a837633759" + "CENTRALUSEUAP:20210728T131730Z:4da06518-26e2-46ea-a0cc-55794f8ab0e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -870,7 +876,7 @@ "nosniff" ], "Date": [ - "Tue, 19 Jan 2021 16:59:17 GMT" + "Wed, 28 Jul 2021 13:17:30 GMT" ], "Expires": [ "-1" @@ -883,15 +889,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNzYyMC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOell5TUMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNamMxTFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -903,22 +909,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNzYyMC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11991" ], "x-ms-request-id": [ - "d4c736ee-b7c8-46e0-bd72-76c13a92635e" + "376f4b59-3708-4021-a70b-1f94f7a9f3c9" ], "x-ms-correlation-request-id": [ - "d4c736ee-b7c8-46e0-bd72-76c13a92635e" + "376f4b59-3708-4021-a70b-1f94f7a9f3c9" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T165932Z:d4c736ee-b7c8-46e0-bd72-76c13a92635e" + "CENTRALUSEUAP:20210728T131745Z:376f4b59-3708-4021-a70b-1f94f7a9f3c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -927,7 +933,7 @@ "nosniff" ], "Date": [ - "Tue, 19 Jan 2021 16:59:32 GMT" + "Wed, 28 Jul 2021 13:17:45 GMT" ], "Expires": [ "-1" @@ -940,15 +946,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNzYyMC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOell5TUMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNamMxTFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -960,16 +966,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11990" ], "x-ms-request-id": [ - "8d59d626-eab0-421e-b003-d43b2e70be9d" + "f5ad12b8-b990-4a17-ace4-a051d17a2947" ], "x-ms-correlation-request-id": [ - "8d59d626-eab0-421e-b003-d43b2e70be9d" + "f5ad12b8-b990-4a17-ace4-a051d17a2947" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T165948Z:8d59d626-eab0-421e-b003-d43b2e70be9d" + "CENTRALUSEUAP:20210728T131800Z:f5ad12b8-b990-4a17-ace4-a051d17a2947" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -978,7 +984,7 @@ "nosniff" ], "Date": [ - "Tue, 19 Jan 2021 16:59:47 GMT" + "Wed, 28 Jul 2021 13:18:00 GMT" ], "Expires": [ "-1" @@ -991,15 +997,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNzYyMC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOell5TUMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjc1LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNamMxTFVWQlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2laV0Z6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -1011,16 +1017,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11989" ], "x-ms-request-id": [ - "8909a488-a684-407a-b913-1688acc677e1" + "ebcd6b8e-23e0-4439-80bd-4eaafddbc318" ], "x-ms-correlation-request-id": [ - "8909a488-a684-407a-b913-1688acc677e1" + "ebcd6b8e-23e0-4439-80bd-4eaafddbc318" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T165948Z:8909a488-a684-407a-b913-1688acc677e1" + "CENTRALUSEUAP:20210728T131800Z:ebcd6b8e-23e0-4439-80bd-4eaafddbc318" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1029,7 +1035,7 @@ "nosniff" ], "Date": [ - "Tue, 19 Jan 2021 16:59:48 GMT" + "Wed, 28 Jul 2021 13:18:00 GMT" ], "Expires": [ "-1" @@ -1044,12 +1050,12 @@ ], "Names": { "BatchAccountCanCreateWithBYOSEnabled": [ - "azsmnet7620", - "azsmnet8707", - "azsmnet1834" + "azsmnet275", + "azsmnet2845", + "azsmnet2822" ] }, "Variables": { - "SubscriptionId": "9bf34af1-b860-4584-a6d1-26c1e6ad713a" + "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f" } } \ No newline at end of file diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/AccountTests/BatchAccountEndToEndAsync.json b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/AccountTests/BatchAccountEndToEndAsync.json index ed7fe57b6689..414afebb1bb7 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/AccountTests/BatchAccountEndToEndAsync.json +++ b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/AccountTests/BatchAccountEndToEndAsync.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb693a34-e151-4245-819b-ca58117d7a5f" + "b190a92a-ad1c-414e-bde3-4b9d75b0c943" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "53186183-c925-4a3a-8af6-5437a4a06cb8" + "d806a838-91dd-4bb1-b1ea-6915842e001d" ], "x-ms-correlation-request-id": [ - "53186183-c925-4a3a-8af6-5437a4a06cb8" + "d806a838-91dd-4bb1-b1ea-6915842e001d" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T164458Z:53186183-c925-4a3a-8af6-5437a4a06cb8" + "CENTRALUSEUAP:20210728T131801Z:d806a838-91dd-4bb1-b1ea-6915842e001d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Tue, 19 Jan 2021 16:44:58 GMT" + "Wed, 28 Jul 2021 13:18:01 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,35 +54,35 @@ "-1" ], "Content-Length": [ - "6417" + "7221" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/pools\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/certificates\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/pools\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/certificates\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourcegroups/azsmnet630?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2MzA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet9461?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5NDYxP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "45f7dbc2-c202-4b2f-b33f-abd2e947e7a0" + "87e1e9b9-8c92-4386-b7bd-d986ff115699" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "37" + "29" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "1b01d123-2822-4586-a657-5f9c152daed9" + "5eb9851c-b6b0-485a-b0d9-292e2cae3bf6" ], "x-ms-correlation-request-id": [ - "1b01d123-2822-4586-a657-5f9c152daed9" + "5eb9851c-b6b0-485a-b0d9-292e2cae3bf6" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T164501Z:1b01d123-2822-4586-a657-5f9c152daed9" + "CENTRALUSEUAP:20210728T131802Z:5eb9851c-b6b0-485a-b0d9-292e2cae3bf6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,10 +111,10 @@ "nosniff" ], "Date": [ - "Tue, 19 Jan 2021 16:45:00 GMT" + "Wed, 28 Jul 2021 13:18:01 GMT" ], "Content-Length": [ - "180" + "175" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,32 +123,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet630\",\r\n \"name\": \"azsmnet630\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9461\",\r\n \"name\": \"azsmnet9461\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/West%20Central%20US/checkNameAvailability?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL1dlc3QlMjBDZW50cmFsJTIwVVMvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/East%20US/checkNameAvailability?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL0Vhc3QlMjBVUy9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet2826\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet385\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4f17d0ee-4d73-4d0d-8362-5b1578fd2123" + "5cf8d1f1-342c-4b22-b472-77f8d84e51bd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "73" + "72" ] }, "ResponseHeaders": { @@ -162,7 +162,7 @@ "1199" ], "x-ms-request-id": [ - "c89d5f1b-0b81-4993-b4fa-991dc56f08c7" + "f1fd6689-3bba-4b81-a343-317f036e4e05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -174,13 +174,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "c0d0bb0e-71be-4620-9c85-cc56c35af7ff" + "ff60e84d-fa11-4377-a0f2-2e09731ea4f8" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T164501Z:c0d0bb0e-71be-4620-9c85-cc56c35af7ff" + "CENTRALUSEUAP:20210728T131803Z:ff60e84d-fa11-4377-a0f2-2e09731ea4f8" ], "Date": [ - "Tue, 19 Jan 2021 16:45:00 GMT" + "Wed, 28 Jul 2021 13:18:02 GMT" ], "Content-Length": [ "22" @@ -196,28 +196,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/West%20Central%20US/checkNameAvailability?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL1dlc3QlMjBDZW50cmFsJTIwVVMvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/East%20US/checkNameAvailability?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL0Vhc3QlMjBVUy9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"azsmnet2826\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", + "RequestBody": "{\r\n \"name\": \"azsmnet385\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "07c1761e-98d4-4cc0-88b4-f660bb78e948" + "e9166e0b-ee9a-451d-ac66-2739157617a6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "73" + "72" ] }, "ResponseHeaders": { @@ -231,7 +231,7 @@ "1198" ], "x-ms-request-id": [ - "aa3e8f34-ded4-4fd8-b26c-256e514562c2" + "54b335cd-ad18-4b00-93c4-41cadd9ec283" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -243,16 +243,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "c9abf09d-9246-4f7d-a72e-175a6e135e2e" + "914386d3-9612-49c8-b697-70186c823f69" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T164520Z:c9abf09d-9246-4f7d-a72e-175a6e135e2e" + "CENTRALUSEUAP:20210728T131820Z:914386d3-9612-49c8-b697-70186c823f69" ], "Date": [ - "Tue, 19 Jan 2021 16:45:19 GMT" + "Wed, 28 Jul 2021 13:18:20 GMT" ], "Content-Length": [ - "110" + "109" ], "Content-Type": [ "application/json; charset=utf-8" @@ -261,32 +261,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"nameAvailable\": false,\r\n \"reason\": \"AlreadyExists\",\r\n \"message\": \"An account named 'azsmnet2826' is already in use.\"\r\n}", + "ResponseBody": "{\r\n \"nameAvailable\": false,\r\n \"reason\": \"AlreadyExists\",\r\n \"message\": \"An account named 'azsmnet385' is already in use.\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet630/providers/Microsoft.Batch/batchAccounts/azsmnet2826?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQyODI2P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9461/providers/Microsoft.Batch/batchAccounts/azsmnet385?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0Mzg1P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"allowedAuthenticationModes\": [\r\n \"SharedKey\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "972a47ed-4510-4616-9085-d1e08c37ee0a" + "a4cdc6fc-af13-470f-90db-4b174d7ccb93" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "37" + "117" ] }, "ResponseHeaders": { @@ -297,13 +297,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet630/providers/Microsoft.Batch/batchAccounts/azsmnet2826/operationResults/9527acdc-a1e7-43a8-8471-26c44f3762ab?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9461/providers/Microsoft.Batch/batchAccounts/azsmnet385/operationResults/e43570b1-a3ec-40db-994d-7cc94c78ad8a?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "9527acdc-a1e7-43a8-8471-26c44f3762ab" + "e43570b1-a3ec-40db-994d-7cc94c78ad8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -318,13 +318,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "ca03619d-c6ca-41ac-b426-8540aaea3f1b" + "d79f0917-77cc-415a-a55c-1fb718dac547" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T164505Z:ca03619d-c6ca-41ac-b426-8540aaea3f1b" + "CENTRALUSEUAP:20210728T131805Z:d79f0917-77cc-415a-a55c-1fb718dac547" ], "Date": [ - "Tue, 19 Jan 2021 16:45:04 GMT" + "Wed, 28 Jul 2021 13:18:04 GMT" ], "Expires": [ "-1" @@ -337,16 +337,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet630/providers/Microsoft.Batch/batchAccounts/azsmnet2826/operationResults/9527acdc-a1e7-43a8-8471-26c44f3762ab?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQyODI2L29wZXJhdGlvblJlc3VsdHMvOTUyN2FjZGMtYTFlNy00M2E4LTg0NzEtMjZjNDRmMzc2MmFiP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9461/providers/Microsoft.Batch/batchAccounts/azsmnet385/operationResults/e43570b1-a3ec-40db-994d-7cc94c78ad8a?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0Mzg1L29wZXJhdGlvblJlc3VsdHMvZTQzNTcwYjEtYTNlYy00MGRiLTk5NGQtN2NjOTRjNzhhZDhhP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -357,13 +357,13 @@ "no-cache" ], "ETag": [ - "\"0x8D8BC999BFAA427\"" + "\"0x8D951CA2B7263A8\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "218acb70-261b-4229-abfb-0bc10f35f86a" + "4b007a80-6ed6-433e-adca-d2739d6a1648" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -375,16 +375,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "ec517219-44bc-490d-abc4-44ee07dc9b48" + "a1be9b45-71c7-4296-a93e-716a117f6a53" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T164520Z:ec517219-44bc-490d-abc4-44ee07dc9b48" + "CENTRALUSEUAP:20210728T131820Z:a1be9b45-71c7-4296-a93e-716a117f6a53" ], "Date": [ - "Tue, 19 Jan 2021 16:45:19 GMT" + "Wed, 28 Jul 2021 13:18:20 GMT" ], "Content-Length": [ - "2635" + "2921" ], "Content-Type": [ "application/json; charset=utf-8" @@ -393,29 +393,29 @@ "-1" ], "Last-Modified": [ - "Tue, 19 Jan 2021 16:45:20 GMT" + "Wed, 28 Jul 2021 13:18:20 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet630/providers/Microsoft.Batch/batchAccounts/azsmnet2826\",\r\n \"name\": \"azsmnet2826\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet2826.westcentralus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 700,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDDv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDDSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEIv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardXEIDSv4Family\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": true,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9461/providers/Microsoft.Batch/batchAccounts/azsmnet385\",\r\n \"name\": \"azsmnet385\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet385.pilotprod2.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 500,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardDDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEIv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NCASv3_T4 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardXEIDSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NDASv4_A100 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNPSFamily\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": true,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n },\r\n \"allowedAuthenticationModes\": [\r\n \"SharedKey\"\r\n ]\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet630/providers/Microsoft.Batch/batchAccounts/azsmnet2826?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQyODI2P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9461/providers/Microsoft.Batch/batchAccounts/azsmnet385?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0Mzg1P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "90980bae-7829-49ab-b164-149a469037b2" + "f37ebfe3-8dfd-427c-bf8a-94b71e677080" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -426,13 +426,13 @@ "no-cache" ], "ETag": [ - "\"0x8D8BC999537CFBD\"" + "\"0x8D951CA247F855B\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-request-id": [ - "494b777d-d04c-44d1-a380-596562c57900" + "13a49583-2ba7-4bc5-86e6-4a51a0cf6bbd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -444,16 +444,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "5a34f070-cbb3-4c86-9321-5c88274692c9" + "630de931-1756-44c3-ad5d-9049be85c535" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T164520Z:5a34f070-cbb3-4c86-9321-5c88274692c9" + "CENTRALUSEUAP:20210728T131820Z:630de931-1756-44c3-ad5d-9049be85c535" ], "Date": [ - "Tue, 19 Jan 2021 16:45:19 GMT" + "Wed, 28 Jul 2021 13:18:20 GMT" ], "Content-Length": [ - "2635" + "2921" ], "Content-Type": [ "application/json; charset=utf-8" @@ -462,29 +462,29 @@ "-1" ], "Last-Modified": [ - "Tue, 19 Jan 2021 16:45:09 GMT" + "Wed, 28 Jul 2021 13:18:08 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet630/providers/Microsoft.Batch/batchAccounts/azsmnet2826\",\r\n \"name\": \"azsmnet2826\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet2826.westcentralus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 700,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDDv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDDSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEIv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardXEIDSv4Family\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": true,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9461/providers/Microsoft.Batch/batchAccounts/azsmnet385\",\r\n \"name\": \"azsmnet385\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet385.pilotprod2.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 500,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardDDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEIv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NCASv3_T4 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardXEIDSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NDASv4_A100 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNPSFamily\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": true,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n },\r\n \"allowedAuthenticationModes\": [\r\n \"SharedKey\"\r\n ]\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet630/providers/Microsoft.Batch/batchAccounts/azsmnet2826?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQyODI2P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9461/providers/Microsoft.Batch/batchAccounts/azsmnet385?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0Mzg1P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a5debfb-7892-416a-8eb2-70bc4275fe0b" + "31fb1b70-6ffc-4a2b-bad7-1072ba00a8fc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -495,10 +495,10 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11991" ], "x-ms-request-id": [ - "1913eb39-f48e-4e93-9721-5cad8f4f0827" + "703f8548-bfac-49c9-ab21-05b4505e8635" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -510,13 +510,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "8eee4f6d-838d-4b80-a3fc-d60cbb91b080" + "8b9d0cc1-deeb-455d-bf6a-6507a9a9e846" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T164537Z:8eee4f6d-838d-4b80-a3fc-d60cbb91b080" + "CENTRALUSEUAP:20210728T131837Z:8b9d0cc1-deeb-455d-bf6a-6507a9a9e846" ], "Date": [ - "Tue, 19 Jan 2021 16:45:36 GMT" + "Wed, 28 Jul 2021 13:18:37 GMT" ], "Content-Length": [ "193" @@ -528,26 +528,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"AccountNotFound\",\r\n \"message\": \"The specified account does not exist.\\nRequestId:1913eb39-f48e-4e93-9721-5cad8f4f0827\\nTime:2021-01-19T16:45:36.8799024Z\",\r\n \"target\": \"BatchAccount\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"AccountNotFound\",\r\n \"message\": \"The specified account does not exist.\\nRequestId:703f8548-bfac-49c9-ab21-05b4505e8635\\nTime:2021-07-28T13:18:37.1553388Z\",\r\n \"target\": \"BatchAccount\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet630/providers/Microsoft.Batch/batchAccounts/azsmnet2826/listKeys?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQyODI2L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9461/providers/Microsoft.Batch/batchAccounts/azsmnet385/listKeys?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0Mzg1L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "227ad628-6b15-4389-9e06-7e4aeefaf5dc" + "22bc62c4-77b1-469f-ae62-3545ec48a8cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -561,7 +561,7 @@ "1197" ], "x-ms-request-id": [ - "ac14ada6-54ae-4c18-9986-84159f2dbe02" + "4589fa8c-7453-4431-905e-1de283065bd7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -573,16 +573,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "420ca627-ee04-4122-a5e5-a18741043c7c" + "1a423e71-2947-4cb2-b547-f568c81a0318" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T164521Z:420ca627-ee04-4122-a5e5-a18741043c7c" + "CENTRALUSEUAP:20210728T131820Z:1a423e71-2947-4cb2-b547-f568c81a0318" ], "Date": [ - "Tue, 19 Jan 2021 16:45:20 GMT" + "Wed, 28 Jul 2021 13:18:20 GMT" ], "Content-Length": [ - "233" + "232" ], "Content-Type": [ "application/json; charset=utf-8" @@ -591,26 +591,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"accountName\": \"azsmnet2826\",\r\n \"primary\": \"jruao4Bp3s35a2uNm0p/fk8MCDODmWDAXDTowHAD+klpOVnw/Gv20Xt8/W7dV4koeKnvsWPwbXVO2fl2Mx7nHQ==\",\r\n \"secondary\": \"2oQ1WUM3QAAHl2zev+BrUvX80fEh58mURIrZAJRtpezb7K7wuAcphbmR8xG7cEsJLqFbLl4iChjbbLJhAv9HKA==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"azsmnet385\",\r\n \"primary\": \"uI4vPVKEZ0eyN9aVuf8PxzZ9eC7k+heYNnraZJDAG82XnQv0R/t9bvHX+oRwc7T+n+x5gTYLeMbF4oQoE+rj0w==\",\r\n \"secondary\": \"cdQoYzs4TMKlz5yuZFYIZ+uwyP62TPtRZyHKEXx0yQ626GtesnJ1PQNOmiCgYN8cw8cLt06nv6WjVd1oYlj0QQ==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet630/providers/Microsoft.Batch/batchAccounts/azsmnet2826/regenerateKeys?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQyODI2L3JlZ2VuZXJhdGVLZXlzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9461/providers/Microsoft.Batch/batchAccounts/azsmnet385/regenerateKeys?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0Mzg1L3JlZ2VuZXJhdGVLZXlzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyName\": \"Primary\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "67d69f03-9b29-4f0e-81e5-963199c8c306" + "16ef3ef4-e4c3-45a0-9918-6d496acc5330" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -630,7 +630,7 @@ "1196" ], "x-ms-request-id": [ - "c5d956f0-cbc1-49e7-9243-c11ccd95b14b" + "2208f729-0f6e-4652-a4f9-a2b6a067be64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -642,16 +642,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "58885895-c345-4df1-9c18-f230e5e531b3" + "68bc2204-2e10-42cc-90bf-3cab3a213b64" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T164521Z:58885895-c345-4df1-9c18-f230e5e531b3" + "CENTRALUSEUAP:20210728T131821Z:68bc2204-2e10-42cc-90bf-3cab3a213b64" ], "Date": [ - "Tue, 19 Jan 2021 16:45:20 GMT" + "Wed, 28 Jul 2021 13:18:20 GMT" ], "Content-Length": [ - "233" + "232" ], "Content-Type": [ "application/json; charset=utf-8" @@ -660,26 +660,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"accountName\": \"azsmnet2826\",\r\n \"primary\": \"ixnTKs1lrKneBs9QCz3noDsk+1X4iIUJMPo98iZpHLET2DK/1kUP5o5C3o+uvIzx/64c9m68jSdQGS5D0ljpcA==\",\r\n \"secondary\": \"2oQ1WUM3QAAHl2zev+BrUvX80fEh58mURIrZAJRtpezb7K7wuAcphbmR8xG7cEsJLqFbLl4iChjbbLJhAv9HKA==\"\r\n}", + "ResponseBody": "{\r\n \"accountName\": \"azsmnet385\",\r\n \"primary\": \"EZyw9eYl8VHYiLP6lJUJIzCowxX2w694ce3QRPVQVB3I+5ttUxIyTvH5rMsnMWD8zpgG0CUxkG5HsNoELmlF5A==\",\r\n \"secondary\": \"cdQoYzs4TMKlz5yuZFYIZ+uwyP62TPtRZyHKEXx0yQ626GtesnJ1PQNOmiCgYN8cw8cLt06nv6WjVd1oYlj0QQ==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet630/providers/Microsoft.Batch/batchAccounts?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9461/providers/Microsoft.Batch/batchAccounts?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f072d2a-908a-4f26-90b8-079fa6fa3a01" + "2dc9d4fc-a441-4022-b3f7-9788d0c01403" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -690,10 +690,10 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-request-id": [ - "ea5d666c-e4d7-4329-a332-1061cf84eb3c" + "6e002b70-8f29-4d0d-b243-6ea999bc7065" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -705,16 +705,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "25cc95be-d7ed-437b-acb6-82a66e361af1" + "2e7e80ab-4006-400e-b089-9dfe2247cd25" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T164521Z:25cc95be-d7ed-437b-acb6-82a66e361af1" + "CENTRALUSEUAP:20210728T131821Z:2e7e80ab-4006-400e-b089-9dfe2247cd25" ], "Date": [ - "Tue, 19 Jan 2021 16:45:20 GMT" + "Wed, 28 Jul 2021 13:18:20 GMT" ], "Content-Length": [ - "2647" + "2933" ], "Content-Type": [ "application/json; charset=utf-8" @@ -723,26 +723,152 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet630/providers/Microsoft.Batch/batchAccounts/azsmnet2826\",\r\n \"name\": \"azsmnet2826\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet2826.westcentralus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 700,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDDv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDDSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEIv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardXEIDSv4Family\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": true,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9461/providers/Microsoft.Batch/batchAccounts/azsmnet385\",\r\n \"name\": \"azsmnet385\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet385.pilotprod2.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 500,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardDDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEIv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NCASv3_T4 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardXEIDSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NDASv4_A100 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNPSFamily\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": true,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n },\r\n \"allowedAuthenticationModes\": [\r\n \"SharedKey\"\r\n ]\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet630/providers/Microsoft.Batch/batchAccounts/azsmnet2826?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzAvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQyODI2P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9461/providers/Microsoft.Batch/batchAccounts/azsmnet385/outboundNetworkDependenciesEndpoints?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0Mzg1L291dGJvdW5kTmV0d29ya0RlcGVuZGVuY2llc0VuZHBvaW50cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a7eeca1-34b7-4569-99ce-4036b85d1086" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "60ed54dc-c662-4c36-9a47-a9cfc8782596" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "95f36fc2-a822-481b-ba13-868fdbc1d3e1" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210728T131821Z:95f36fc2-a822-481b-ba13-868fdbc1d3e1" + ], + "Date": [ + "Wed, 28 Jul 2021 13:18:20 GMT" + ], + "Content-Length": [ + "1737" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"category\": \"Azure Batch\",\r\n \"endpoints\": [\r\n {\r\n \"domainName\": \"azsmnet385.pilotprod2.eastus.batch.azure.com\",\r\n \"description\": \"Applicable to job manager tasks, tasks that use job scoped authentication, or any task that makes calls to Batch.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n },\r\n {\r\n \"domainName\": \"pilotprod2.service.batch.azure.com\",\r\n \"description\": \"Applicable to all Azure Batch pools.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"category\": \"Azure Storage\",\r\n \"endpoints\": [\r\n {\r\n \"domainName\": \"*.blob.core.windows.net\",\r\n \"description\": \"Applicable to all Azure Batch pools.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n },\r\n {\r\n \"domainName\": \"*.table.core.windows.net\",\r\n \"description\": \"Applicable to all Azure Batch pools.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n },\r\n {\r\n \"domainName\": \"*.queue.core.windows.net\",\r\n \"description\": \"Applicable to all Azure Batch pools.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"category\": \"Microsoft Package Repository\",\r\n \"endpoints\": [\r\n {\r\n \"domainName\": \"packages.microsoft.com\",\r\n \"description\": \"Only applicable to pools containing a Mount Configuration. Learn about Mount Configurations in Batch at https://docs.microsoft.com/en-us/azure/batch/virtual-file-mount.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"category\": \"Azure Key Vault\",\r\n \"endpoints\": [\r\n {\r\n \"domainName\": \"*.vault.azure.net\",\r\n \"description\": \"Only applicable to pools that have a Disk Encryption Configuration containing Temporary Disk as an encryption target and which use a VM size that does not support encryption at host. Learn more about disk encryption in Batch at https://docs.microsoft.com/en-us/azure/batch/disk-encryption. Learn more about encryption at host and supported VM sizes at https://docs.microsoft.com/en-us/azure/virtual-machines/disks-enable-host-based-encryption-portal.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9461/providers/Microsoft.Batch/batchAccounts/azsmnet385/outboundNetworkDependenciesEndpoints?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0Mzg1L291dGJvdW5kTmV0d29ya0RlcGVuZGVuY2llc0VuZHBvaW50cz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3ebcd5c8-0aef-43e3-a642-4bbe8ee14ac2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "366842b9-7290-4f87-a0be-44a4b3445ab0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "76c5a9e1-48e9-44cc-aac7-be3cb631b659" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210728T131821Z:76c5a9e1-48e9-44cc-aac7-be3cb631b659" + ], + "Date": [ + "Wed, 28 Jul 2021 13:18:21 GMT" + ], + "Content-Length": [ + "1737" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"category\": \"Azure Batch\",\r\n \"endpoints\": [\r\n {\r\n \"domainName\": \"azsmnet385.pilotprod2.eastus.batch.azure.com\",\r\n \"description\": \"Applicable to job manager tasks, tasks that use job scoped authentication, or any task that makes calls to Batch.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n },\r\n {\r\n \"domainName\": \"pilotprod2.service.batch.azure.com\",\r\n \"description\": \"Applicable to all Azure Batch pools.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"category\": \"Azure Storage\",\r\n \"endpoints\": [\r\n {\r\n \"domainName\": \"*.blob.core.windows.net\",\r\n \"description\": \"Applicable to all Azure Batch pools.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n },\r\n {\r\n \"domainName\": \"*.table.core.windows.net\",\r\n \"description\": \"Applicable to all Azure Batch pools.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n },\r\n {\r\n \"domainName\": \"*.queue.core.windows.net\",\r\n \"description\": \"Applicable to all Azure Batch pools.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"category\": \"Microsoft Package Repository\",\r\n \"endpoints\": [\r\n {\r\n \"domainName\": \"packages.microsoft.com\",\r\n \"description\": \"Only applicable to pools containing a Mount Configuration. Learn about Mount Configurations in Batch at https://docs.microsoft.com/en-us/azure/batch/virtual-file-mount.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"category\": \"Azure Key Vault\",\r\n \"endpoints\": [\r\n {\r\n \"domainName\": \"*.vault.azure.net\",\r\n \"description\": \"Only applicable to pools that have a Disk Encryption Configuration containing Temporary Disk as an encryption target and which use a VM size that does not support encryption at host. Learn more about disk encryption in Batch at https://docs.microsoft.com/en-us/azure/batch/disk-encryption. Learn more about encryption at host and supported VM sizes at https://docs.microsoft.com/en-us/azure/virtual-machines/disks-enable-host-based-encryption-portal.\",\r\n \"endpointDetails\": [\r\n {\r\n \"port\": 443\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9461/providers/Microsoft.Batch/batchAccounts/azsmnet385?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NDYxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0Mzg1P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e97fcbbb-8ed5-4ec3-8139-fe4accfb410a" + "ad384fb2-b540-453b-ace4-c2f1e2bdf8e5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -753,13 +879,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet2826-aface87f-3078-4c5f-a6d3-c1844838da29?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet385-423ca052-cba1-4eb1-a4c8-f035763edbc8?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "aface87f-3078-4c5f-a6d3-c1844838da29" + "423ca052-cba1-4eb1-a4c8-f035763edbc8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -774,13 +900,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "b4d92f55-94bd-47fc-96c6-71c7412c5c5a" + "630badae-7a9d-4c61-bf70-1c6ac2556b5a" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T164521Z:b4d92f55-94bd-47fc-96c6-71c7412c5c5a" + "CENTRALUSEUAP:20210728T131821Z:630badae-7a9d-4c61-bf70-1c6ac2556b5a" ], "Date": [ - "Tue, 19 Jan 2021 16:45:20 GMT" + "Wed, 28 Jul 2021 13:18:21 GMT" ], "Expires": [ "-1" @@ -793,16 +919,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet2826-aface87f-3078-4c5f-a6d3-c1844838da29?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDI4MjYtYWZhY2U4N2YtMzA3OC00YzVmLWE2ZDMtYzE4NDQ4MzhkYTI5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet385-423ca052-cba1-4eb1-a4c8-f035763edbc8?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0Mzg1LTQyM2NhMDUyLWNiYTEtNGViMS1hNGM4LWYwMzU3NjNlZGJjOD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -813,7 +939,7 @@ "no-cache" ], "x-ms-request-id": [ - "65fe38de-d058-4e2b-924a-190813f0a3ed" + "7a82da0a-db65-4789-90a2-803f52deaa0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -825,16 +951,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11993" ], "x-ms-correlation-request-id": [ - "f3048577-8d06-471f-b67b-f212d2af5d1e" + "c297a595-207a-4764-8279-c137974fb8a2" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T164536Z:f3048577-8d06-471f-b67b-f212d2af5d1e" + "CENTRALUSEUAP:20210728T131836Z:c297a595-207a-4764-8279-c137974fb8a2" ], "Date": [ - "Tue, 19 Jan 2021 16:45:35 GMT" + "Wed, 28 Jul 2021 13:18:36 GMT" ], "Expires": [ "-1" @@ -847,16 +973,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet2826-aface87f-3078-4c5f-a6d3-c1844838da29?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDI4MjYtYWZhY2U4N2YtMzA3OC00YzVmLWE2ZDMtYzE4NDQ4MzhkYTI5P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet385-423ca052-cba1-4eb1-a4c8-f035763edbc8?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0Mzg1LTQyM2NhMDUyLWNiYTEtNGViMS1hNGM4LWYwMzU3NjNlZGJjOD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -867,7 +993,7 @@ "no-cache" ], "x-ms-request-id": [ - "cc40880b-c06b-4f92-a3ea-6e6037b08dad" + "deeb6348-6e72-4ef3-b8f1-85effa10d6e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -879,16 +1005,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11992" ], "x-ms-correlation-request-id": [ - "3eeb8f0a-b647-4976-a532-4d82ceeff34f" + "1d8af312-6d12-44ed-99a0-83ff9b413f67" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T164536Z:3eeb8f0a-b647-4976-a532-4d82ceeff34f" + "CENTRALUSEUAP:20210728T131837Z:1d8af312-6d12-44ed-99a0-83ff9b413f67" ], "Date": [ - "Tue, 19 Jan 2021 16:45:35 GMT" + "Wed, 28 Jul 2021 13:18:36 GMT" ], "Expires": [ "-1" @@ -901,21 +1027,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourcegroups/azsmnet630?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2MzA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet9461?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5NDYxP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b23fc6b-54be-4b25-9316-63197436362b" + "1cf123e3-4155-4052-b676-fd9f23060dd9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -927,7 +1053,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjMwLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2017-05-10" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTQ2MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" ], "Retry-After": [ "15" @@ -936,13 +1062,13 @@ "14999" ], "x-ms-request-id": [ - "a5725464-b931-4709-9d34-8a687c78670f" + "36ba7acc-31d2-40da-8f4d-4c48e1817faf" ], "x-ms-correlation-request-id": [ - "a5725464-b931-4709-9d34-8a687c78670f" + "36ba7acc-31d2-40da-8f4d-4c48e1817faf" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T164538Z:a5725464-b931-4709-9d34-8a687c78670f" + "CENTRALUSEUAP:20210728T131837Z:36ba7acc-31d2-40da-8f4d-4c48e1817faf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -951,7 +1077,7 @@ "nosniff" ], "Date": [ - "Tue, 19 Jan 2021 16:45:37 GMT" + "Wed, 28 Jul 2021 13:18:37 GMT" ], "Expires": [ "-1" @@ -964,15 +1090,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjMwLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOak13TFZkRlUxUkRSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1JqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTQ2MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVFEyTVMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -984,7 +1110,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjMwLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2017-05-10" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTQ2MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" ], "Retry-After": [ "15" @@ -993,13 +1119,13 @@ "11999" ], "x-ms-request-id": [ - "9a19ae20-9480-4ba3-bcf0-340de0b60db0" + "b52e43c0-0114-40e8-a292-f0094c0a5f39" ], "x-ms-correlation-request-id": [ - "9a19ae20-9480-4ba3-bcf0-340de0b60db0" + "b52e43c0-0114-40e8-a292-f0094c0a5f39" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T164553Z:9a19ae20-9480-4ba3-bcf0-340de0b60db0" + "CENTRALUSEUAP:20210728T131853Z:b52e43c0-0114-40e8-a292-f0094c0a5f39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1008,7 +1134,7 @@ "nosniff" ], "Date": [ - "Tue, 19 Jan 2021 16:45:52 GMT" + "Wed, 28 Jul 2021 13:18:52 GMT" ], "Expires": [ "-1" @@ -1021,15 +1147,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjMwLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOak13TFZkRlUxUkRSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1JqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTQ2MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVFEyTVMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -1041,7 +1167,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjMwLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2017-05-10" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTQ2MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" ], "Retry-After": [ "15" @@ -1050,13 +1176,13 @@ "11998" ], "x-ms-request-id": [ - "b8dc2883-e391-40ed-8f8e-2e9631c8f38e" + "3a4aa937-4cfe-4afe-8446-c92b0a9600c1" ], "x-ms-correlation-request-id": [ - "b8dc2883-e391-40ed-8f8e-2e9631c8f38e" + "3a4aa937-4cfe-4afe-8446-c92b0a9600c1" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T164608Z:b8dc2883-e391-40ed-8f8e-2e9631c8f38e" + "CENTRALUSEUAP:20210728T131908Z:3a4aa937-4cfe-4afe-8446-c92b0a9600c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1065,7 +1191,7 @@ "nosniff" ], "Date": [ - "Tue, 19 Jan 2021 16:46:08 GMT" + "Wed, 28 Jul 2021 13:19:07 GMT" ], "Expires": [ "-1" @@ -1078,15 +1204,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjMwLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOak13TFZkRlUxUkRSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1JqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTQ2MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVFEyTVMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -1101,13 +1227,13 @@ "11997" ], "x-ms-request-id": [ - "bb564521-c308-44e8-a044-4b3d48064f81" + "518e3ecc-e437-47af-8e82-b1c0f3a90dc1" ], "x-ms-correlation-request-id": [ - "bb564521-c308-44e8-a044-4b3d48064f81" + "518e3ecc-e437-47af-8e82-b1c0f3a90dc1" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T164623Z:bb564521-c308-44e8-a044-4b3d48064f81" + "CENTRALUSEUAP:20210728T131923Z:518e3ecc-e437-47af-8e82-b1c0f3a90dc1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1116,7 +1242,7 @@ "nosniff" ], "Date": [ - "Tue, 19 Jan 2021 16:46:23 GMT" + "Wed, 28 Jul 2021 13:19:23 GMT" ], "Expires": [ "-1" @@ -1129,15 +1255,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjMwLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOak13TFZkRlUxUkRSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1JqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTQ2MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVFEyTVMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -1152,13 +1278,13 @@ "11996" ], "x-ms-request-id": [ - "03b466eb-a300-4a56-8977-917f7a83cb9b" + "d62a2280-a5f1-4c29-8e97-18181c541fe6" ], "x-ms-correlation-request-id": [ - "03b466eb-a300-4a56-8977-917f7a83cb9b" + "d62a2280-a5f1-4c29-8e97-18181c541fe6" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T164623Z:03b466eb-a300-4a56-8977-917f7a83cb9b" + "CENTRALUSEUAP:20210728T131923Z:d62a2280-a5f1-4c29-8e97-18181c541fe6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1167,7 +1293,7 @@ "nosniff" ], "Date": [ - "Tue, 19 Jan 2021 16:46:23 GMT" + "Wed, 28 Jul 2021 13:19:23 GMT" ], "Expires": [ "-1" @@ -1182,11 +1308,11 @@ ], "Names": { "BatchAccountEndToEndAsync": [ - "azsmnet630", - "azsmnet2826" + "azsmnet9461", + "azsmnet385" ] }, "Variables": { - "SubscriptionId": "9bf34af1-b860-4584-a6d1-26c1e6ad713a" + "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f" } } \ No newline at end of file diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/CertificateTests/BatchCertificateEndToEndAsync.json b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/CertificateTests/BatchCertificateEndToEndAsync.json index 0092857c0921..24b660aaeabf 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/CertificateTests/BatchCertificateEndToEndAsync.json +++ b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/CertificateTests/BatchCertificateEndToEndAsync.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97547c10-dcaa-475a-ba17-ea147d8fdba9" + "16169436-dadf-4da0-8adc-8a8332a9cac0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11986" ], "x-ms-request-id": [ - "07d4e393-5171-4cc5-8b8f-d7ddb4b6e59a" + "5be0dd64-5576-41fb-880b-f19c4714d98a" ], "x-ms-correlation-request-id": [ - "07d4e393-5171-4cc5-8b8f-d7ddb4b6e59a" + "5be0dd64-5576-41fb-880b-f19c4714d98a" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T170708Z:07d4e393-5171-4cc5-8b8f-d7ddb4b6e59a" + "CENTRALUSEUAP:20210728T132811Z:5be0dd64-5576-41fb-880b-f19c4714d98a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Tue, 19 Jan 2021 17:07:07 GMT" + "Wed, 28 Jul 2021 13:28:11 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,35 +54,35 @@ "-1" ], "Content-Length": [ - "6417" + "7221" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/pools\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/certificates\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/pools\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/certificates\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourcegroups/azsmnet992?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5OTI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet4816?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0ODE2P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "452bd87e-9f8c-49d2-bf4f-f0b5ed6e1789" + "d6f6a305-5ee7-4e1b-80db-7e05ea8767b1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "37" + "29" ] }, "ResponseHeaders": { @@ -93,16 +93,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-request-id": [ - "d0aed17a-cac1-4ecf-9c99-033c9f761c39" + "287fc3e6-62c4-4e76-a999-6375291f6f85" ], "x-ms-correlation-request-id": [ - "d0aed17a-cac1-4ecf-9c99-033c9f761c39" + "287fc3e6-62c4-4e76-a999-6375291f6f85" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T170713Z:d0aed17a-cac1-4ecf-9c99-033c9f761c39" + "CENTRALUSEUAP:20210728T132812Z:287fc3e6-62c4-4e76-a999-6375291f6f85" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,10 +111,10 @@ "nosniff" ], "Date": [ - "Tue, 19 Jan 2021 17:07:12 GMT" + "Wed, 28 Jul 2021 13:28:12 GMT" ], "Content-Length": [ - "180" + "175" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,32 +123,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet992\",\r\n \"name\": \"azsmnet992\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816\",\r\n \"name\": \"azsmnet4816\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet992/providers/Microsoft.Batch/batchAccounts/azsmnet6955?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ2OTU1P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjI1Nj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4649200e-7615-4768-a3b5-d888fb3204ae" + "fe3a5eec-c909-447f-9e69-1e00183a047e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "37" + "29" ] }, "ResponseHeaders": { @@ -159,13 +159,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet992/providers/Microsoft.Batch/batchAccounts/azsmnet6955/operationResults/5e5a7e49-9596-4071-8109-3f5bfd530821?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/operationResults/56a17c90-878d-4ed4-9485-9607aa636f37?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "5e5a7e49-9596-4071-8109-3f5bfd530821" + "56a17c90-878d-4ed4-9485-9607aa636f37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,16 +177,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "7571f9ac-34eb-4530-9b71-003de2445e5c" + "00f603de-37af-4027-9653-c2287c3cb4c3" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T170717Z:7571f9ac-34eb-4530-9b71-003de2445e5c" + "CENTRALUSEUAP:20210728T132813Z:00f603de-37af-4027-9653-c2287c3cb4c3" ], "Date": [ - "Tue, 19 Jan 2021 17:07:16 GMT" + "Wed, 28 Jul 2021 13:28:13 GMT" ], "Expires": [ "-1" @@ -199,16 +199,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet992/providers/Microsoft.Batch/batchAccounts/azsmnet6955/operationResults/5e5a7e49-9596-4071-8109-3f5bfd530821?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ2OTU1L29wZXJhdGlvblJlc3VsdHMvNWU1YTdlNDktOTU5Ni00MDcxLTgxMDktM2Y1YmZkNTMwODIxP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/operationResults/56a17c90-878d-4ed4-9485-9607aa636f37?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjI1Ni9vcGVyYXRpb25SZXN1bHRzLzU2YTE3YzkwLTg3OGQtNGVkNC05NDg1LTk2MDdhYTYzNmYzNz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -219,13 +219,13 @@ "no-cache" ], "ETag": [ - "\"0x8D8BC9CB6040AA6\"" + "\"0x8D951CB964325F1\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11983" ], "x-ms-request-id": [ - "9feec93b-2839-4ae8-b5c9-682132c71cd2" + "8e924b4c-9d36-4ce6-98ab-008ff68fb968" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,16 +237,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "f3cfb061-7ea9-420b-8aae-6ea3750aab2b" + "79c943e5-d260-4bbb-9130-9da73c1ef891" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T170732Z:f3cfb061-7ea9-420b-8aae-6ea3750aab2b" + "CENTRALUSEUAP:20210728T132829Z:79c943e5-d260-4bbb-9130-9da73c1ef891" ], "Date": [ - "Tue, 19 Jan 2021 17:07:32 GMT" + "Wed, 28 Jul 2021 13:28:28 GMT" ], "Content-Length": [ - "2635" + "2956" ], "Content-Type": [ "application/json; charset=utf-8" @@ -255,29 +255,29 @@ "-1" ], "Last-Modified": [ - "Tue, 19 Jan 2021 17:07:32 GMT" + "Wed, 28 Jul 2021 13:28:29 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet992/providers/Microsoft.Batch/batchAccounts/azsmnet6955\",\r\n \"name\": \"azsmnet6955\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet6955.westcentralus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 700,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDDv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDDSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEIv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardXEIDSv4Family\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": true,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256\",\r\n \"name\": \"azsmnet2256\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet2256.pilotprod2.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 500,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardDDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEIv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NCASv3_T4 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardXEIDSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NDASv4_A100 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNPSFamily\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": true,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n },\r\n \"allowedAuthenticationModes\": [\r\n \"SharedKey\",\r\n \"AAD\",\r\n \"TaskAuthenticationToken\"\r\n ]\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet992/providers/Microsoft.Batch/batchAccounts/azsmnet6955/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ2OTU1L2NlcnRpZmljYXRlcy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjc/YXBpLXZlcnNpb249MjAyMS0wMS0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjI1Ni9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"format\": \"Pfx\",\r\n \"data\": \"MIIGMQIBAzCCBe0GCSqGSIb3DQEHAaCCBd4EggXaMIIF1jCCA8AGCSqGSIb3DQEHAaCCA7EEggOtMIIDqTCCA6UGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAhyd3xCtln3iQICB9AEggKQhe5P10V9iV1BsDlwWT561Yu2hVq3JT8ae/ebx1ZR/gMApVereDKkS9Zg4vFyssusHebbK5pDpU8vfAqle0TM4m7wGsRj453ZorSPUfMpHvQnAOn+2pEpWdMThU7xvZ6DVpwhDOQk9166z+KnKdHGuJKh4haMT7Rw/6xZ1rsBt2423cwTrQVMQyACrEkianpuujubKltN99qRoFAxhQcnYE2KlYKw7lRcExq6mDSYAyk5xJZ1ZFdLj6MAryZroQit/0g5eyhoNEKwWbi8px5j71pRTf7yjN+deMGQKwbGl+3OgaL1UZ5fCjypbVL60kpIBxLZwIJ7p3jJ+q9pbq9zSdzshPYor5lxyUfXqaso/0/91ayNoBzg4hQGh618PhFI6RMGjwkzhB9xk74iweJ9HQyIHf8yx2RCSI22JuCMitPMWSGvOszhbNx3AEDLuiiAOHg391mprEtKZguOIr9LrJwem/YmcHbwyz5YAbZmiseKPkllfC7dafFfCFEkj6R2oegIsZo0pEKYisAXBqT0g+6/jGwuhlZcBo0f7UIZm88iA3MrJCjlXEgV5OcQdoWj+hq0lKEdnhtCKr03AIfukN6+4vjjarZeW1bs0swq0l3XFf5RHa11otshMS4mpewshB9iO9MuKWpRxuxeng4PlKZ/zuBqmPeUrjJ9454oK35Pq+dghfemt7AUpBH/KycDNIZgfdEWUZrRKBGnc519C+RTqxyt5hWL18nJk4LvSd3QKlJ1iyJxClhhb/NWEzPqNdyA5cxen+2T9bd/EqJ2KzRv5/BPVwTQkHH9W/TZElFyvFfOFIW2+03RKbVGw72Mr/0xKZ+awAnEfoU+SL/2Gj2m6PHkqFX2sOCi/tN9EA4xgdswEwYJKoZIhvcNAQkVMQYEBAEAAAAwXQYJKwYBBAGCNxEBMVAeTgBNAGkAYwByAG8AcwBvAGYAdAAgAFMAdAByAG8AbgBnACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjBlBgkqhkiG9w0BCRQxWB5WAFAAdgBrAFQAbQBwADoANABjAGUANgAwADQAZABhAC0AMAA2ADgAMQAtADQANAAxADUALQBhADIAYwBhAC0ANQA3ADcAMwAwADgAZQA2AGQAOQBhAGMwggIOBgkqhkiG9w0BBwGgggH/BIIB+zCCAfcwggHzBgsqhkiG9w0BDAoBA6CCAcswggHHBgoqhkiG9w0BCRYBoIIBtwSCAbMwggGvMIIBXaADAgECAhAdka3aTQsIsUphgIXGUmeRMAkGBSsOAwIdBQAwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3kwHhcNMTYwMTAxMDcwMDAwWhcNMTgwMTAxMDcwMDAwWjASMRAwDgYDVQQDEwdub2Rlc2RrMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC5fhcxbJHxxBEIDzVOMc56s04U6k4GPY7yMR1m+rBGVRiAyV4RjY6U936dqXHCVD36ps2Q0Z+OeEgyCInkIyVeB1EwXcToOcyeS2YcUb0vRWZDouC3tuFdHwiK1Ed5iW/LksmXDotyV7kpqzaPhOFiMtBuMEwNJcPge9k17hRgRQIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAHl2M97QbpzdnwO5HoRBsiEExOcLTNg+GKCr7HUsbzfvrUivw+JLL7qjHAIc5phnK+F5bQ8HKe0L9YXBSKl+fvwxFTATBgkqhkiG9w0BCRUxBgQEAQAAADA7MB8wBwYFKw4DAhoEFGVtyGMqiBd32fGpzlGZQoRM6UQwBBTI0YHFFqTS4Go8CoLgswn29EiuUQICB9A=\",\r\n \"password\": \"nodesdk\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "80a74e8c-badc-4680-bdb1-a0646246d8b4" + "2d822bf5-c5e2-488d-a1f2-cf1478c61e4c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -294,13 +294,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D8BC9CB6380BD1\"" + "W/\"0x8D951CB9668BDB8\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-request-id": [ - "e954027d-1636-4156-b112-3cf03464c428" + "f5138fff-8552-431e-ae8f-258a7beadb1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -312,16 +312,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "a976080e-bb47-4e46-ba4f-d56d78f1cbca" + "abddd057-859f-4cec-a8c6-23cf0b722928" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T170733Z:a976080e-bb47-4e46-ba4f-d56d78f1cbca" + "CENTRALUSEUAP:20210728T132829Z:abddd057-859f-4cec-a8c6-23cf0b722928" ], "Date": [ - "Tue, 19 Jan 2021 17:07:33 GMT" + "Wed, 28 Jul 2021 13:28:29 GMT" ], "Content-Length": [ - "1145" + "1146" ], "Content-Type": [ "application/json; charset=utf-8" @@ -330,29 +330,29 @@ "-1" ], "Last-Modified": [ - "Tue, 19 Jan 2021 17:07:33 GMT" + "Wed, 28 Jul 2021 13:28:29 GMT" ] }, - "ResponseBody": "{\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet992/providers/Microsoft.Batch/batchAccounts/azsmnet6955/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D8BC9CB6380BD1\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-01-19T17:07:33.0927674Z\",\r\n \"format\": \"Pfx\",\r\n \"publicData\": \"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D951CB9668BDB8\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-07-28T13:28:29.3268045Z\",\r\n \"format\": \"Pfx\",\r\n \"publicData\": \"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet992/providers/Microsoft.Batch/batchAccounts/azsmnet6955/certificates?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ2OTU1L2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificates?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjI1Ni9jZXJ0aWZpY2F0ZXM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0c4c6252-c465-4eab-b0b4-b969a7775b82" + "7134884e-e772-4e77-b5f9-978023868360" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -363,10 +363,10 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11982" ], "x-ms-request-id": [ - "dcc41696-68ab-432b-b491-2f0ac0409848" + "48add223-57e8-4243-a295-00bf1ef28761" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -378,16 +378,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "f777cba2-3d75-4a03-b092-5be68542bba0" + "06a00acc-1508-4dd6-8958-3439579ea626" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T170733Z:f777cba2-3d75-4a03-b092-5be68542bba0" + "CENTRALUSEUAP:20210728T132829Z:06a00acc-1508-4dd6-8958-3439579ea626" ], "Date": [ - "Tue, 19 Jan 2021 17:07:33 GMT" + "Wed, 28 Jul 2021 13:28:29 GMT" ], "Content-Length": [ - "1157" + "1158" ], "Content-Type": [ "application/json; charset=utf-8" @@ -396,26 +396,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet992/providers/Microsoft.Batch/batchAccounts/azsmnet6955/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D8BC9CB6380BD1\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-01-19T17:07:33.0927674Z\",\r\n \"format\": \"Pfx\",\r\n \"publicData\": \"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D951CB9668BDB8\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-07-28T13:28:29.3268045Z\",\r\n \"format\": \"Pfx\",\r\n \"publicData\": \"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet992/providers/Microsoft.Batch/batchAccounts/azsmnet6955/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ2OTU1L2NlcnRpZmljYXRlcy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjc/YXBpLXZlcnNpb249MjAyMS0wMS0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjI1Ni9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68f0006c-216e-4f0d-a086-fe8e5ef1b7b0" + "5686303b-9b8e-499f-b648-00683a28431a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -426,13 +426,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D8BC9CB6380BD1\"" + "W/\"0x8D951CB9668BDB8\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11981" ], "x-ms-request-id": [ - "1f5db568-2382-4afe-95ce-fcc59f98a294" + "0238560e-b8bc-4d85-8e87-1066115c8cf9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -444,16 +444,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "ebf09e6f-46c0-4a1f-aba3-c42af072bb68" + "f753fcc4-7858-49d5-93ed-0561dbdf7a60" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T170733Z:ebf09e6f-46c0-4a1f-aba3-c42af072bb68" + "CENTRALUSEUAP:20210728T132829Z:f753fcc4-7858-49d5-93ed-0561dbdf7a60" ], "Date": [ - "Tue, 19 Jan 2021 17:07:33 GMT" + "Wed, 28 Jul 2021 13:28:29 GMT" ], "Content-Length": [ - "1145" + "1146" ], "Content-Type": [ "application/json; charset=utf-8" @@ -462,29 +462,29 @@ "-1" ], "Last-Modified": [ - "Tue, 19 Jan 2021 17:07:33 GMT" + "Wed, 28 Jul 2021 13:28:29 GMT" ] }, - "ResponseBody": "{\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet992/providers/Microsoft.Batch/batchAccounts/azsmnet6955/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D8BC9CB6380BD1\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-01-19T17:07:33.0927674Z\",\r\n \"format\": \"Pfx\",\r\n \"publicData\": \"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D951CB9668BDB8\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-07-28T13:28:29.3268045Z\",\r\n \"format\": \"Pfx\",\r\n \"publicData\": \"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet992/providers/Microsoft.Batch/batchAccounts/azsmnet6955/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ2OTU1L2NlcnRpZmljYXRlcy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjc/YXBpLXZlcnNpb249MjAyMS0wMS0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjI1Ni9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dca12b6f-0590-4914-a1e4-8b44cc5da630" + "33fde381-27ae-4dbf-87d4-f6cc99f9222f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -495,10 +495,10 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11974" ], "x-ms-request-id": [ - "32d6cb19-6d98-445c-9f4a-386706ae6c82" + "958798a2-8f34-4a4f-af27-a497c24b35e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -510,13 +510,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "b7a69a21-9406-486a-9788-ce48743bec51" + "0c7651ea-cd2c-40b9-abe9-05d7fdd86bda" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T170849Z:b7a69a21-9406-486a-9788-ce48743bec51" + "CENTRALUSEUAP:20210728T132946Z:0c7651ea-cd2c-40b9-abe9-05d7fdd86bda" ], "Date": [ - "Tue, 19 Jan 2021 17:08:49 GMT" + "Wed, 28 Jul 2021 13:29:45 GMT" ], "Content-Length": [ "201" @@ -528,26 +528,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"CertificateNotFound\",\r\n \"message\": \"The specified certificate does not exist.\\nRequestId:32d6cb19-6d98-445c-9f4a-386706ae6c82\\nTime:2021-01-19T17:08:49.9422531Z\",\r\n \"target\": \"BatchAccount\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"CertificateNotFound\",\r\n \"message\": \"The specified certificate does not exist.\\nRequestId:958798a2-8f34-4a4f-af27-a497c24b35e0\\nTime:2021-07-28T13:29:46.2303815Z\",\r\n \"target\": \"BatchAccount\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet992/providers/Microsoft.Batch/batchAccounts/azsmnet6955/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ2OTU1L2NlcnRpZmljYXRlcy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjc/YXBpLXZlcnNpb249MjAyMS0wMS0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjI1Ni9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"format\": \"Pfx\",\r\n \"data\": \"MIIGMQIBAzCCBe0GCSqGSIb3DQEHAaCCBd4EggXaMIIF1jCCA8AGCSqGSIb3DQEHAaCCA7EEggOtMIIDqTCCA6UGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAhyd3xCtln3iQICB9AEggKQhe5P10V9iV1BsDlwWT561Yu2hVq3JT8ae/ebx1ZR/gMApVereDKkS9Zg4vFyssusHebbK5pDpU8vfAqle0TM4m7wGsRj453ZorSPUfMpHvQnAOn+2pEpWdMThU7xvZ6DVpwhDOQk9166z+KnKdHGuJKh4haMT7Rw/6xZ1rsBt2423cwTrQVMQyACrEkianpuujubKltN99qRoFAxhQcnYE2KlYKw7lRcExq6mDSYAyk5xJZ1ZFdLj6MAryZroQit/0g5eyhoNEKwWbi8px5j71pRTf7yjN+deMGQKwbGl+3OgaL1UZ5fCjypbVL60kpIBxLZwIJ7p3jJ+q9pbq9zSdzshPYor5lxyUfXqaso/0/91ayNoBzg4hQGh618PhFI6RMGjwkzhB9xk74iweJ9HQyIHf8yx2RCSI22JuCMitPMWSGvOszhbNx3AEDLuiiAOHg391mprEtKZguOIr9LrJwem/YmcHbwyz5YAbZmiseKPkllfC7dafFfCFEkj6R2oegIsZo0pEKYisAXBqT0g+6/jGwuhlZcBo0f7UIZm88iA3MrJCjlXEgV5OcQdoWj+hq0lKEdnhtCKr03AIfukN6+4vjjarZeW1bs0swq0l3XFf5RHa11otshMS4mpewshB9iO9MuKWpRxuxeng4PlKZ/zuBqmPeUrjJ9454oK35Pq+dghfemt7AUpBH/KycDNIZgfdEWUZrRKBGnc519C+RTqxyt5hWL18nJk4LvSd3QKlJ1iyJxClhhb/NWEzPqNdyA5cxen+2T9bd/EqJ2KzRv5/BPVwTQkHH9W/TZElFyvFfOFIW2+03RKbVGw72Mr/0xKZ+awAnEfoU+SL/2Gj2m6PHkqFX2sOCi/tN9EA4xgdswEwYJKoZIhvcNAQkVMQYEBAEAAAAwXQYJKwYBBAGCNxEBMVAeTgBNAGkAYwByAG8AcwBvAGYAdAAgAFMAdAByAG8AbgBnACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjBlBgkqhkiG9w0BCRQxWB5WAFAAdgBrAFQAbQBwADoANABjAGUANgAwADQAZABhAC0AMAA2ADgAMQAtADQANAAxADUALQBhADIAYwBhAC0ANQA3ADcAMwAwADgAZQA2AGQAOQBhAGMwggIOBgkqhkiG9w0BBwGgggH/BIIB+zCCAfcwggHzBgsqhkiG9w0BDAoBA6CCAcswggHHBgoqhkiG9w0BCRYBoIIBtwSCAbMwggGvMIIBXaADAgECAhAdka3aTQsIsUphgIXGUmeRMAkGBSsOAwIdBQAwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3kwHhcNMTYwMTAxMDcwMDAwWhcNMTgwMTAxMDcwMDAwWjASMRAwDgYDVQQDEwdub2Rlc2RrMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC5fhcxbJHxxBEIDzVOMc56s04U6k4GPY7yMR1m+rBGVRiAyV4RjY6U936dqXHCVD36ps2Q0Z+OeEgyCInkIyVeB1EwXcToOcyeS2YcUb0vRWZDouC3tuFdHwiK1Ed5iW/LksmXDotyV7kpqzaPhOFiMtBuMEwNJcPge9k17hRgRQIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAHl2M97QbpzdnwO5HoRBsiEExOcLTNg+GKCr7HUsbzfvrUivw+JLL7qjHAIc5phnK+F5bQ8HKe0L9YXBSKl+fvwxFTATBgkqhkiG9w0BCRUxBgQEAQAAADA7MB8wBwYFKw4DAhoEFGVtyGMqiBd32fGpzlGZQoRM6UQwBBTI0YHFFqTS4Go8CoLgswn29EiuUQICB9A=\",\r\n \"password\": \"nodesdk\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9bb7ca85-77c1-4269-a5be-8535ec429703" + "cea99121-17f7-4945-ab0f-3b9229cdafd0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -564,13 +564,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D8BC9CB6380BD1\"" + "W/\"0x8D951CB9668BDB8\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-request-id": [ - "50de6554-d97c-40b7-86ef-1dda7e8ed049" + "87091246-97b2-4095-a055-c5bd51ee29ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -582,16 +582,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "8e9e0a85-77c5-4dd0-b83f-9bef1120f05e" + "4025186c-54ad-420e-bdf2-9e191204afc1" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T170733Z:8e9e0a85-77c5-4dd0-b83f-9bef1120f05e" + "CENTRALUSEUAP:20210728T132830Z:4025186c-54ad-420e-bdf2-9e191204afc1" ], "Date": [ - "Tue, 19 Jan 2021 17:07:33 GMT" + "Wed, 28 Jul 2021 13:28:29 GMT" ], "Content-Length": [ - "1145" + "1146" ], "Content-Type": [ "application/json; charset=utf-8" @@ -600,29 +600,29 @@ "-1" ], "Last-Modified": [ - "Tue, 19 Jan 2021 17:07:33 GMT" + "Wed, 28 Jul 2021 13:28:29 GMT" ] }, - "ResponseBody": "{\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet992/providers/Microsoft.Batch/batchAccounts/azsmnet6955/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D8BC9CB6380BD1\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-01-19T17:07:33.0927674Z\",\r\n \"format\": \"Pfx\",\r\n \"publicData\": \"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D951CB9668BDB8\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-07-28T13:28:29.3268045Z\",\r\n \"format\": \"Pfx\",\r\n \"publicData\": \"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet992/providers/Microsoft.Batch/batchAccounts/azsmnet6955/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7/cancelDelete?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ2OTU1L2NlcnRpZmljYXRlcy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjcvY2FuY2VsRGVsZXRlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7/cancelDelete?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjI1Ni9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3L2NhbmNlbERlbGV0ZT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7c9e9df-e13d-477f-90ba-62abf7dde094" + "096b41b2-4b5d-454e-b089-a09ca8365028" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -633,13 +633,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D8BC9CB6380BD1\"" + "W/\"0x8D951CB9668BDB8\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-request-id": [ - "ac0ebf38-8f3f-416f-bde7-38b862a7f6be" + "5f691c88-d8b7-4439-a806-2e5c3fadc902" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -651,16 +651,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "2ac54c00-2400-4164-8c69-77f227dba64c" + "3100152d-a2e4-4d24-aa02-10ccc4ae78df" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T170733Z:2ac54c00-2400-4164-8c69-77f227dba64c" + "CENTRALUSEUAP:20210728T132830Z:3100152d-a2e4-4d24-aa02-10ccc4ae78df" ], "Date": [ - "Tue, 19 Jan 2021 17:07:33 GMT" + "Wed, 28 Jul 2021 13:28:29 GMT" ], "Content-Length": [ - "1145" + "1146" ], "Content-Type": [ "application/json; charset=utf-8" @@ -669,29 +669,29 @@ "-1" ], "Last-Modified": [ - "Tue, 19 Jan 2021 17:07:33 GMT" + "Wed, 28 Jul 2021 13:28:29 GMT" ] }, - "ResponseBody": "{\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet992/providers/Microsoft.Batch/batchAccounts/azsmnet6955/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D8BC9CB6380BD1\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-01-19T17:07:33.0927674Z\",\r\n \"format\": \"Pfx\",\r\n \"publicData\": \"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D951CB9668BDB8\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-07-28T13:28:29.3268045Z\",\r\n \"format\": \"Pfx\",\r\n \"publicData\": \"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet992/providers/Microsoft.Batch/batchAccounts/azsmnet6955/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ2OTU1L2NlcnRpZmljYXRlcy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjc/YXBpLXZlcnNpb249MjAyMS0wMS0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjI1Ni9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe29a3ad-f88c-4403-ad56-297642e6ed70" + "65012c53-e86b-4f3a-8952-fc9b05dd9577" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -702,13 +702,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet992/providers/Microsoft.Batch/batchAccounts/azsmnet6955/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8D8BC9CB6CF09DC?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8D951CB970A97B2?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "ee959c76-436d-4822-b1cc-7797065e1481" + "f0d95b26-54d5-4db8-a956-4a8e9e184cfb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -720,16 +720,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14996" ], "x-ms-correlation-request-id": [ - "673db711-c50b-4bae-8a4c-8588887cbb0f" + "1304a867-154a-4058-abb0-3ee8609b824f" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T170734Z:673db711-c50b-4bae-8a4c-8588887cbb0f" + "CENTRALUSEUAP:20210728T132830Z:1304a867-154a-4058-abb0-3ee8609b824f" ], "Date": [ - "Tue, 19 Jan 2021 17:07:34 GMT" + "Wed, 28 Jul 2021 13:28:30 GMT" ], "Expires": [ "-1" @@ -742,16 +742,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet992/providers/Microsoft.Batch/batchAccounts/azsmnet6955/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8D8BC9CB6CF09DC?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ2OTU1L2NlcnRpZmljYXRlT3BlcmF0aW9uUmVzdWx0cy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjctOEQ4QkM5Q0I2Q0YwOURDP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8D951CB970A97B2?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjI1Ni9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThEOTUxQ0I5NzBBOTdCMj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -762,13 +762,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet992/providers/Microsoft.Batch/batchAccounts/azsmnet6955/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d8bc9cb6cf09dc?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d951cb970a97b2?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "c522628a-3ef1-4c8c-acd0-44575b70ec5c" + "2bdd5906-b6b6-4bf5-a322-1d13097ec254" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -780,16 +780,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11980" ], "x-ms-correlation-request-id": [ - "aeec4fab-6a02-4393-99a7-a1978892030c" + "6e14f3e1-ac02-4d8a-9991-4f550e46794c" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T170749Z:aeec4fab-6a02-4393-99a7-a1978892030c" + "CENTRALUSEUAP:20210728T132845Z:6e14f3e1-ac02-4d8a-9991-4f550e46794c" ], "Date": [ - "Tue, 19 Jan 2021 17:07:49 GMT" + "Wed, 28 Jul 2021 13:28:44 GMT" ], "Expires": [ "-1" @@ -802,16 +802,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet992/providers/Microsoft.Batch/batchAccounts/azsmnet6955/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d8bc9cb6cf09dc?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ2OTU1L2NlcnRpZmljYXRlT3BlcmF0aW9uUmVzdWx0cy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjctOGQ4YmM5Y2I2Y2YwOWRjP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d951cb970a97b2?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjI1Ni9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThkOTUxY2I5NzBhOTdiMj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -822,13 +822,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet992/providers/Microsoft.Batch/batchAccounts/azsmnet6955/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d8bc9cb6cf09dc?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d951cb970a97b2?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "ddea3e37-64c7-49b1-8f97-1a7e383d478d" + "7fd1defa-c904-4512-bf2c-b7744378f34e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -840,16 +840,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11979" ], "x-ms-correlation-request-id": [ - "bfdfcff9-2dcf-4830-acb6-863a4f123727" + "a535bb76-5f72-425f-9d48-ab28318f1829" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T170804Z:bfdfcff9-2dcf-4830-acb6-863a4f123727" + "CENTRALUSEUAP:20210728T132900Z:a535bb76-5f72-425f-9d48-ab28318f1829" ], "Date": [ - "Tue, 19 Jan 2021 17:08:04 GMT" + "Wed, 28 Jul 2021 13:29:00 GMT" ], "Expires": [ "-1" @@ -862,16 +862,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet992/providers/Microsoft.Batch/batchAccounts/azsmnet6955/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d8bc9cb6cf09dc?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ2OTU1L2NlcnRpZmljYXRlT3BlcmF0aW9uUmVzdWx0cy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjctOGQ4YmM5Y2I2Y2YwOWRjP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d951cb970a97b2?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjI1Ni9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThkOTUxY2I5NzBhOTdiMj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -882,13 +882,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet992/providers/Microsoft.Batch/batchAccounts/azsmnet6955/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d8bc9cb6cf09dc?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d951cb970a97b2?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "e019409b-12f2-4c8e-b90e-0bd9676463b9" + "bd3ada2e-0072-4ab5-8a48-48fe3ebabf87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -900,16 +900,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11978" ], "x-ms-correlation-request-id": [ - "ddf1ff5f-4270-44cb-aaa0-04e065410ffb" + "0c6685d5-dc52-4ac2-ad16-08c618043dbc" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T170819Z:ddf1ff5f-4270-44cb-aaa0-04e065410ffb" + "CENTRALUSEUAP:20210728T132915Z:0c6685d5-dc52-4ac2-ad16-08c618043dbc" ], "Date": [ - "Tue, 19 Jan 2021 17:08:19 GMT" + "Wed, 28 Jul 2021 13:29:15 GMT" ], "Expires": [ "-1" @@ -922,16 +922,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet992/providers/Microsoft.Batch/batchAccounts/azsmnet6955/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d8bc9cb6cf09dc?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ2OTU1L2NlcnRpZmljYXRlT3BlcmF0aW9uUmVzdWx0cy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjctOGQ4YmM5Y2I2Y2YwOWRjP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d951cb970a97b2?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjI1Ni9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThkOTUxY2I5NzBhOTdiMj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -942,13 +942,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet992/providers/Microsoft.Batch/batchAccounts/azsmnet6955/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d8bc9cb6cf09dc?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d951cb970a97b2?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "7c0b562d-eb6f-4e0f-85f1-a007035abe3c" + "b17e328a-64ea-434f-b9e1-36aea29f53f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -960,16 +960,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11977" ], "x-ms-correlation-request-id": [ - "7ca58d5f-d21b-45ec-885a-6200ae8cbba3" + "abfb9637-c73b-49a4-a57b-a9e1edda8f02" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T170834Z:7ca58d5f-d21b-45ec-885a-6200ae8cbba3" + "CENTRALUSEUAP:20210728T132930Z:abfb9637-c73b-49a4-a57b-a9e1edda8f02" ], "Date": [ - "Tue, 19 Jan 2021 17:08:34 GMT" + "Wed, 28 Jul 2021 13:29:30 GMT" ], "Expires": [ "-1" @@ -982,16 +982,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet992/providers/Microsoft.Batch/batchAccounts/azsmnet6955/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d8bc9cb6cf09dc?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ2OTU1L2NlcnRpZmljYXRlT3BlcmF0aW9uUmVzdWx0cy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjctOGQ4YmM5Y2I2Y2YwOWRjP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d951cb970a97b2?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjI1Ni9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThkOTUxY2I5NzBhOTdiMj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -1002,7 +1002,7 @@ "no-cache" ], "x-ms-request-id": [ - "f464759b-b40e-414e-8e00-6aa31129aac4" + "4b9fd26b-0652-4105-82c8-e393fb9b51d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1014,16 +1014,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11976" ], "x-ms-correlation-request-id": [ - "deaf70df-ab2d-4fba-9971-003b6430de1e" + "ee6cfcc5-4657-405f-85e6-21bb8df83f10" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T170849Z:deaf70df-ab2d-4fba-9971-003b6430de1e" + "CENTRALUSEUAP:20210728T132946Z:ee6cfcc5-4657-405f-85e6-21bb8df83f10" ], "Date": [ - "Tue, 19 Jan 2021 17:08:49 GMT" + "Wed, 28 Jul 2021 13:29:45 GMT" ], "Expires": [ "-1" @@ -1036,16 +1036,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet992/providers/Microsoft.Batch/batchAccounts/azsmnet6955/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d8bc9cb6cf09dc?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ2OTU1L2NlcnRpZmljYXRlT3BlcmF0aW9uUmVzdWx0cy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjctOGQ4YmM5Y2I2Y2YwOWRjP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d951cb970a97b2?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjI1Ni9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThkOTUxY2I5NzBhOTdiMj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -1056,7 +1056,7 @@ "no-cache" ], "x-ms-request-id": [ - "52305d62-c2eb-4f35-814a-f19d90c0b68f" + "1802ccfd-8409-40a8-95eb-d1d1001f708d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1068,16 +1068,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11975" ], "x-ms-correlation-request-id": [ - "899d003b-e8a3-4ba1-8c03-165692dfeb1e" + "3e5ceea5-3b28-4796-b874-341838c068ba" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T170849Z:899d003b-e8a3-4ba1-8c03-165692dfeb1e" + "CENTRALUSEUAP:20210728T132946Z:3e5ceea5-3b28-4796-b874-341838c068ba" ], "Date": [ - "Tue, 19 Jan 2021 17:08:49 GMT" + "Wed, 28 Jul 2021 13:29:45 GMT" ], "Expires": [ "-1" @@ -1090,22 +1090,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet992/providers/Microsoft.Batch/batchAccounts/azsmnet6955?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5OTIvcHJvdmlkZXJzL01pY3Jvc29mdC5CYXRjaC9iYXRjaEFjY291bnRzL2F6c21uZXQ2OTU1P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4816/providers/Microsoft.Batch/batchAccounts/azsmnet2256?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjI1Nj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a6b6ddb-990d-4530-af0a-5d2140a77e2e" + "f11f01fc-22f3-444a-969a-afbdf5de1a57" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -1116,13 +1116,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "76976cb9-8558-4bf9-9c59-31d0fc573eb4" + "f156754e-eb96-4efe-9e7a-aff911d36002" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1134,16 +1134,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14995" ], "x-ms-correlation-request-id": [ - "eba762b3-338b-4d4d-9337-b72b9e188402" + "62e815ea-0496-4071-8faa-4a2164a3d478" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T170850Z:eba762b3-338b-4d4d-9337-b72b9e188402" + "CENTRALUSEUAP:20210728T132946Z:62e815ea-0496-4071-8faa-4a2164a3d478" ], "Date": [ - "Tue, 19 Jan 2021 17:08:50 GMT" + "Wed, 28 Jul 2021 13:29:46 GMT" ], "Expires": [ "-1" @@ -1156,16 +1156,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDY5NTUtNzY5NzZjYjktODU1OC00YmY5LTljNTktMzFkMGZjNTczZWI0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -1176,13 +1176,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "f1d5a44b-704f-4bbf-8790-8ad0b4b93a03" + "92de92e2-f1d6-40a3-bdbb-eb079bf53c2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1194,16 +1194,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11973" ], "x-ms-correlation-request-id": [ - "330cabe3-e5d3-4255-a289-856d41c504cb" + "f4ce2329-bead-44a7-b31c-5fb5ee3dbf7e" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T170905Z:330cabe3-e5d3-4255-a289-856d41c504cb" + "CENTRALUSEUAP:20210728T133001Z:f4ce2329-bead-44a7-b31c-5fb5ee3dbf7e" ], "Date": [ - "Tue, 19 Jan 2021 17:09:05 GMT" + "Wed, 28 Jul 2021 13:30:01 GMT" ], "Expires": [ "-1" @@ -1216,16 +1216,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDY5NTUtNzY5NzZjYjktODU1OC00YmY5LTljNTktMzFkMGZjNTczZWI0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -1236,13 +1236,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "cc4ad52d-fad3-414d-a988-5405590a8b26" + "4e461198-4b5f-4d3d-b086-1284159fe0cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1254,16 +1254,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11972" ], "x-ms-correlation-request-id": [ - "7afb02b8-39b6-4fca-a743-ce3e197a33fc" + "ad086f28-212e-424d-8801-544a55117d9f" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T170920Z:7afb02b8-39b6-4fca-a743-ce3e197a33fc" + "CENTRALUSEUAP:20210728T133016Z:ad086f28-212e-424d-8801-544a55117d9f" ], "Date": [ - "Tue, 19 Jan 2021 17:09:20 GMT" + "Wed, 28 Jul 2021 13:30:16 GMT" ], "Expires": [ "-1" @@ -1276,16 +1276,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDY5NTUtNzY5NzZjYjktODU1OC00YmY5LTljNTktMzFkMGZjNTczZWI0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -1296,13 +1296,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "a1a006b9-8d8d-4cdf-b36c-a3e629947371" + "bd299855-7882-41e0-a4fd-34a1d8fd0ee9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1314,16 +1314,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11971" ], "x-ms-correlation-request-id": [ - "3a875ae4-d1e3-46ea-8de1-6eaa657a91ef" + "bc1d31fe-0678-49a2-b732-e442a2222635" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T170935Z:3a875ae4-d1e3-46ea-8de1-6eaa657a91ef" + "CENTRALUSEUAP:20210728T133032Z:bc1d31fe-0678-49a2-b732-e442a2222635" ], "Date": [ - "Tue, 19 Jan 2021 17:09:35 GMT" + "Wed, 28 Jul 2021 13:30:31 GMT" ], "Expires": [ "-1" @@ -1336,16 +1336,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDY5NTUtNzY5NzZjYjktODU1OC00YmY5LTljNTktMzFkMGZjNTczZWI0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -1356,13 +1356,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "12470930-df92-4fbe-8fb1-e177003c5ad3" + "defa9376-3f09-4714-bb92-b6e3cd50a497" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1374,16 +1374,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11970" ], "x-ms-correlation-request-id": [ - "f83c1b23-ebcd-43b1-ad1c-55103a95c94d" + "92da2810-6fb1-41c8-9ff0-df13c4451e2a" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T170950Z:f83c1b23-ebcd-43b1-ad1c-55103a95c94d" + "CENTRALUSEUAP:20210728T133047Z:92da2810-6fb1-41c8-9ff0-df13c4451e2a" ], "Date": [ - "Tue, 19 Jan 2021 17:09:50 GMT" + "Wed, 28 Jul 2021 13:30:46 GMT" ], "Expires": [ "-1" @@ -1396,16 +1396,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDY5NTUtNzY5NzZjYjktODU1OC00YmY5LTljNTktMzFkMGZjNTczZWI0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -1416,13 +1416,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "3822c28c-a326-4b6f-917d-7b47b3c05b22" + "bd0c93a3-436d-45a6-83f4-7e58b22a909a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1434,16 +1434,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11969" ], "x-ms-correlation-request-id": [ - "5757074e-e320-473a-bcf5-922175362ae2" + "acab868d-0596-41d9-9414-1262429e7ad9" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171005Z:5757074e-e320-473a-bcf5-922175362ae2" + "CENTRALUSEUAP:20210728T133102Z:acab868d-0596-41d9-9414-1262429e7ad9" ], "Date": [ - "Tue, 19 Jan 2021 17:10:05 GMT" + "Wed, 28 Jul 2021 13:31:01 GMT" ], "Expires": [ "-1" @@ -1456,16 +1456,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDY5NTUtNzY5NzZjYjktODU1OC00YmY5LTljNTktMzFkMGZjNTczZWI0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -1476,13 +1476,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "8d3a20f4-c4c1-4bca-b3ef-a2858226ee9e" + "4fb60bf5-60c3-4e55-9c34-cafd0e30adea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1494,16 +1494,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11968" ], "x-ms-correlation-request-id": [ - "aa1d8a05-0951-4aee-a146-e8808cf0e45e" + "f3e14629-a932-496a-9768-959f55f7f37b" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171021Z:aa1d8a05-0951-4aee-a146-e8808cf0e45e" + "CENTRALUSEUAP:20210728T133117Z:f3e14629-a932-496a-9768-959f55f7f37b" ], "Date": [ - "Tue, 19 Jan 2021 17:10:20 GMT" + "Wed, 28 Jul 2021 13:31:16 GMT" ], "Expires": [ "-1" @@ -1516,16 +1516,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDY5NTUtNzY5NzZjYjktODU1OC00YmY5LTljNTktMzFkMGZjNTczZWI0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -1536,13 +1536,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "0c9312e5-eb44-4ed8-a66b-8dcc34b1d0aa" + "efc9d440-7e74-4b32-8973-20482b5b6eba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1554,16 +1554,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11967" ], "x-ms-correlation-request-id": [ - "1bdb9415-c74a-4453-9e33-9b1935b4f71f" + "1a9eb1cf-42ad-4c9b-a9fe-984b15a47d6c" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171036Z:1bdb9415-c74a-4453-9e33-9b1935b4f71f" + "CENTRALUSEUAP:20210728T133132Z:1a9eb1cf-42ad-4c9b-a9fe-984b15a47d6c" ], "Date": [ - "Tue, 19 Jan 2021 17:10:35 GMT" + "Wed, 28 Jul 2021 13:31:31 GMT" ], "Expires": [ "-1" @@ -1576,16 +1576,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDY5NTUtNzY5NzZjYjktODU1OC00YmY5LTljNTktMzFkMGZjNTczZWI0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -1596,13 +1596,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "a344bde8-5922-4895-b697-1dbefa4c26e8" + "f486f47b-99e2-4d79-95f3-4235672ed879" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1614,16 +1614,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11966" ], "x-ms-correlation-request-id": [ - "60e616ae-e500-4707-acfd-b71d24f85200" + "a9494745-9141-47a5-8947-3aa931c3a57e" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171051Z:60e616ae-e500-4707-acfd-b71d24f85200" + "CENTRALUSEUAP:20210728T133147Z:a9494745-9141-47a5-8947-3aa931c3a57e" ], "Date": [ - "Tue, 19 Jan 2021 17:10:50 GMT" + "Wed, 28 Jul 2021 13:31:46 GMT" ], "Expires": [ "-1" @@ -1636,16 +1636,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDY5NTUtNzY5NzZjYjktODU1OC00YmY5LTljNTktMzFkMGZjNTczZWI0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -1656,13 +1656,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "8649e4a7-75b6-4bb1-bcfb-a27db303d845" + "ae87cb29-84b9-4671-a94a-feb87b11b417" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1674,16 +1674,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11965" ], "x-ms-correlation-request-id": [ - "e38d1d82-05ce-4e60-96b4-eae7e33375a7" + "d726ffee-5038-4130-80f5-0522ec080560" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171106Z:e38d1d82-05ce-4e60-96b4-eae7e33375a7" + "CENTRALUSEUAP:20210728T133202Z:d726ffee-5038-4130-80f5-0522ec080560" ], "Date": [ - "Tue, 19 Jan 2021 17:11:05 GMT" + "Wed, 28 Jul 2021 13:32:02 GMT" ], "Expires": [ "-1" @@ -1696,16 +1696,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDY5NTUtNzY5NzZjYjktODU1OC00YmY5LTljNTktMzFkMGZjNTczZWI0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -1716,13 +1716,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "e7610fa0-970c-46b7-a5dd-9d621fe9e902" + "c413b20e-4049-45c5-9d52-0939561bde86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1734,16 +1734,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11964" ], "x-ms-correlation-request-id": [ - "a2e905d8-dc2b-4c3b-96c3-d60b41c0e29c" + "8499eafb-46e2-4e7c-88a6-4a145d6fb871" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171121Z:a2e905d8-dc2b-4c3b-96c3-d60b41c0e29c" + "CENTRALUSEUAP:20210728T133217Z:8499eafb-46e2-4e7c-88a6-4a145d6fb871" ], "Date": [ - "Tue, 19 Jan 2021 17:11:20 GMT" + "Wed, 28 Jul 2021 13:32:17 GMT" ], "Expires": [ "-1" @@ -1756,16 +1756,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDY5NTUtNzY5NzZjYjktODU1OC00YmY5LTljNTktMzFkMGZjNTczZWI0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -1776,13 +1776,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "2aaad96a-aa49-4cd1-bab4-0d95a1af94f6" + "9d17588e-5d48-4c7a-acae-d213d182fc6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1794,16 +1794,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11963" ], "x-ms-correlation-request-id": [ - "4e2096da-8d0a-42a8-b75a-0d639e6ec22f" + "129d9aac-e53d-489e-873a-7979aabf0166" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171136Z:4e2096da-8d0a-42a8-b75a-0d639e6ec22f" + "CENTRALUSEUAP:20210728T133232Z:129d9aac-e53d-489e-873a-7979aabf0166" ], "Date": [ - "Tue, 19 Jan 2021 17:11:35 GMT" + "Wed, 28 Jul 2021 13:32:32 GMT" ], "Expires": [ "-1" @@ -1816,16 +1816,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDY5NTUtNzY5NzZjYjktODU1OC00YmY5LTljNTktMzFkMGZjNTczZWI0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -1836,13 +1836,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "616f7e2c-a351-4465-a43c-9c02862b124c" + "4fbfa616-dd12-4ec9-9db1-cb11879a9011" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1850,20 +1850,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], "x-ms-correlation-request-id": [ - "ce6d5e1e-b827-4dd1-b31b-9b1c27554392" + "481c79a2-6ab5-4742-9eb8-d9616db379a9" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171151Z:ce6d5e1e-b827-4dd1-b31b-9b1c27554392" + "CENTRALUSEUAP:20210728T133247Z:481c79a2-6ab5-4742-9eb8-d9616db379a9" ], "Date": [ - "Tue, 19 Jan 2021 17:11:50 GMT" + "Wed, 28 Jul 2021 13:32:47 GMT" ], "Expires": [ "-1" @@ -1876,16 +1876,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDY5NTUtNzY5NzZjYjktODU1OC00YmY5LTljNTktMzFkMGZjNTczZWI0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -1896,13 +1896,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "5cb22e1b-cfda-4eff-95dc-3b712c092d49" + "c9df3e98-70b2-4f7a-a11d-f9a15a4141a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1914,16 +1914,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11961" ], "x-ms-correlation-request-id": [ - "639298d1-3b54-43b6-93b9-f13527ff2752" + "6e68f7c0-200b-44be-8899-3a6d18326463" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171206Z:639298d1-3b54-43b6-93b9-f13527ff2752" + "CENTRALUSEUAP:20210728T133303Z:6e68f7c0-200b-44be-8899-3a6d18326463" ], "Date": [ - "Tue, 19 Jan 2021 17:12:05 GMT" + "Wed, 28 Jul 2021 13:33:02 GMT" ], "Expires": [ "-1" @@ -1936,16 +1936,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDY5NTUtNzY5NzZjYjktODU1OC00YmY5LTljNTktMzFkMGZjNTczZWI0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -1956,13 +1956,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "a2d89cda-bfa9-4aed-9d38-847a36f05209" + "8f0822b4-b0ad-448f-9488-a9030f6773da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1974,16 +1974,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11960" ], "x-ms-correlation-request-id": [ - "127785b1-30d3-486b-8ef6-86efeaf60fa1" + "87cbd900-b3da-4ee1-8288-1ef778d32147" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171221Z:127785b1-30d3-486b-8ef6-86efeaf60fa1" + "CENTRALUSEUAP:20210728T133318Z:87cbd900-b3da-4ee1-8288-1ef778d32147" ], "Date": [ - "Tue, 19 Jan 2021 17:12:21 GMT" + "Wed, 28 Jul 2021 13:33:17 GMT" ], "Expires": [ "-1" @@ -1996,16 +1996,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDY5NTUtNzY5NzZjYjktODU1OC00YmY5LTljNTktMzFkMGZjNTczZWI0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -2016,13 +2016,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "fabe6a81-69b5-4079-b350-e295d822146b" + "86ebc44a-d415-4f4c-b109-f3c16f09925f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2034,16 +2034,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11959" ], "x-ms-correlation-request-id": [ - "bb0a18ff-0f7e-41b8-a188-199814b53532" + "d20a0033-5856-47ad-9f8a-d7a27da071c1" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171236Z:bb0a18ff-0f7e-41b8-a188-199814b53532" + "CENTRALUSEUAP:20210728T133333Z:d20a0033-5856-47ad-9f8a-d7a27da071c1" ], "Date": [ - "Tue, 19 Jan 2021 17:12:36 GMT" + "Wed, 28 Jul 2021 13:33:33 GMT" ], "Expires": [ "-1" @@ -2056,16 +2056,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDY5NTUtNzY5NzZjYjktODU1OC00YmY5LTljNTktMzFkMGZjNTczZWI0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -2076,13 +2076,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "b9b64bbf-f4e0-404a-9d06-2522f62ae9c5" + "5aa1c430-e629-476e-869e-be72a983da35" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2094,16 +2094,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11958" ], "x-ms-correlation-request-id": [ - "be8eaad7-fb72-4ccc-b790-0a69a2635198" + "f5c37442-b289-47d6-87ea-f7065afe592c" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171252Z:be8eaad7-fb72-4ccc-b790-0a69a2635198" + "CENTRALUSEUAP:20210728T133348Z:f5c37442-b289-47d6-87ea-f7065afe592c" ], "Date": [ - "Tue, 19 Jan 2021 17:12:51 GMT" + "Wed, 28 Jul 2021 13:33:47 GMT" ], "Expires": [ "-1" @@ -2116,16 +2116,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDY5NTUtNzY5NzZjYjktODU1OC00YmY5LTljNTktMzFkMGZjNTczZWI0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -2136,13 +2136,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "25feafc1-26a9-431e-949a-4ee850c2856d" + "ac4c5c1b-4648-4cc0-bd94-cb4b3f5406ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2150,20 +2150,20 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], "x-ms-correlation-request-id": [ - "6d28b79a-320d-46af-be9f-5af86898b4d5" + "c433a4f0-3bde-4ff7-9a41-ee4552673cb1" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171307Z:6d28b79a-320d-46af-be9f-5af86898b4d5" + "CENTRALUSEUAP:20210728T133403Z:c433a4f0-3bde-4ff7-9a41-ee4552673cb1" ], "Date": [ - "Tue, 19 Jan 2021 17:13:06 GMT" + "Wed, 28 Jul 2021 13:34:03 GMT" ], "Expires": [ "-1" @@ -2176,16 +2176,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDY5NTUtNzY5NzZjYjktODU1OC00YmY5LTljNTktMzFkMGZjNTczZWI0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -2196,13 +2196,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "df729472-3b6d-4888-9f65-b127f442c2f3" + "018262ba-d27c-4aec-aaa0-0d206fe3388a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2214,16 +2214,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11956" ], "x-ms-correlation-request-id": [ - "092ae8e1-6699-4c65-9272-e203ea37814c" + "673eed9b-5ac1-44ef-89f6-68e19363a8da" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171322Z:092ae8e1-6699-4c65-9272-e203ea37814c" + "CENTRALUSEUAP:20210728T133418Z:673eed9b-5ac1-44ef-89f6-68e19363a8da" ], "Date": [ - "Tue, 19 Jan 2021 17:13:22 GMT" + "Wed, 28 Jul 2021 13:34:17 GMT" ], "Expires": [ "-1" @@ -2236,16 +2236,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDY5NTUtNzY5NzZjYjktODU1OC00YmY5LTljNTktMzFkMGZjNTczZWI0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -2256,13 +2256,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "2c647e7d-5a7d-44f0-8fbe-d64328e4ded5" + "cc7e843f-b787-4c9e-8828-04c102386235" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2274,16 +2274,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11955" ], "x-ms-correlation-request-id": [ - "bc707f4f-3984-4df8-a609-0b631260e7dc" + "da36c451-5350-44ac-b497-b6674a698067" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171337Z:bc707f4f-3984-4df8-a609-0b631260e7dc" + "CENTRALUSEUAP:20210728T133433Z:da36c451-5350-44ac-b497-b6674a698067" ], "Date": [ - "Tue, 19 Jan 2021 17:13:37 GMT" + "Wed, 28 Jul 2021 13:34:33 GMT" ], "Expires": [ "-1" @@ -2296,16 +2296,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDY5NTUtNzY5NzZjYjktODU1OC00YmY5LTljNTktMzFkMGZjNTczZWI0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -2316,13 +2316,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "45ece47e-2bee-4e22-9009-67bef4552c1b" + "0ec0b2fb-bb8b-4c03-8833-8db798d21596" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2334,16 +2334,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11954" ], "x-ms-correlation-request-id": [ - "38e3ca10-587a-4932-97ef-79c44699f8da" + "d5143583-2e47-4227-9a71-49b91faa8703" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171352Z:38e3ca10-587a-4932-97ef-79c44699f8da" + "CENTRALUSEUAP:20210728T133448Z:d5143583-2e47-4227-9a71-49b91faa8703" ], "Date": [ - "Tue, 19 Jan 2021 17:13:52 GMT" + "Wed, 28 Jul 2021 13:34:48 GMT" ], "Expires": [ "-1" @@ -2356,16 +2356,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDY5NTUtNzY5NzZjYjktODU1OC00YmY5LTljNTktMzFkMGZjNTczZWI0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -2376,13 +2376,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "eaf38eb7-0ea0-4530-ae4b-1b3e38bfa2c4" + "e6fa7e6e-ed7f-46b2-ab93-db95653e61d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2394,16 +2394,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11953" ], "x-ms-correlation-request-id": [ - "4ff3a286-0829-44ac-81ab-372c3b46d587" + "aa522b6d-40c0-4733-bd24-aad6f62eca16" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171407Z:4ff3a286-0829-44ac-81ab-372c3b46d587" + "CENTRALUSEUAP:20210728T133503Z:aa522b6d-40c0-4733-bd24-aad6f62eca16" ], "Date": [ - "Tue, 19 Jan 2021 17:14:07 GMT" + "Wed, 28 Jul 2021 13:35:03 GMT" ], "Expires": [ "-1" @@ -2416,16 +2416,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDY5NTUtNzY5NzZjYjktODU1OC00YmY5LTljNTktMzFkMGZjNTczZWI0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -2436,7 +2436,7 @@ "no-cache" ], "x-ms-request-id": [ - "a86e32c1-2628-4091-a2ba-51e0a8a01b79" + "72546f12-bf67-4891-a4f6-e67b2fd03f1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2448,16 +2448,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11952" ], "x-ms-correlation-request-id": [ - "8e180f01-e607-43e8-b4a0-d8bd2ae40a15" + "2112dddc-30e6-4dd7-b54b-5de9ffa67547" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171422Z:8e180f01-e607-43e8-b4a0-d8bd2ae40a15" + "CENTRALUSEUAP:20210728T133518Z:2112dddc-30e6-4dd7-b54b-5de9ffa67547" ], "Date": [ - "Tue, 19 Jan 2021 17:14:22 GMT" + "Wed, 28 Jul 2021 13:35:18 GMT" ], "Expires": [ "-1" @@ -2470,16 +2470,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet6955-76976cb9-8558-4bf9-9c59-31d0fc573eb4?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDY5NTUtNzY5NzZjYjktODU1OC00YmY5LTljNTktMzFkMGZjNTczZWI0P2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet2256-f156754e-eb96-4efe-9e7a-aff911d36002?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjI1Ni1mMTU2NzU0ZS1lYjk2LTRlZmUtOWU3YS1hZmY5MTFkMzYwMDI/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -2490,7 +2490,7 @@ "no-cache" ], "x-ms-request-id": [ - "a850c0f8-914f-44bc-a65e-b5e3465379fa" + "59395a12-38e8-47c3-beb7-d373f73ae440" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2502,16 +2502,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11951" ], "x-ms-correlation-request-id": [ - "e512d88d-d80e-45a0-8641-bf949affa9fe" + "296b491b-3a15-4393-b608-f4f2093a4fc0" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171423Z:e512d88d-d80e-45a0-8641-bf949affa9fe" + "CENTRALUSEUAP:20210728T133518Z:296b491b-3a15-4393-b608-f4f2093a4fc0" ], "Date": [ - "Tue, 19 Jan 2021 17:14:22 GMT" + "Wed, 28 Jul 2021 13:35:18 GMT" ], "Expires": [ "-1" @@ -2524,21 +2524,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourcegroups/azsmnet992?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5OTI/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet4816?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0ODE2P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "abe99127-68d9-407d-a3e9-92874b041917" + "776d75b1-a6a2-4501-829f-8e08fcf80a1a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -2550,22 +2550,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTkyLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2017-05-10" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDgxNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14994" ], "x-ms-request-id": [ - "1243a414-ce59-4cb6-8f2f-7e55c3473cea" + "f08d0eb6-47b5-4790-a9dd-9b0399dc44a5" ], "x-ms-correlation-request-id": [ - "1243a414-ce59-4cb6-8f2f-7e55c3473cea" + "f08d0eb6-47b5-4790-a9dd-9b0399dc44a5" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171425Z:1243a414-ce59-4cb6-8f2f-7e55c3473cea" + "CENTRALUSEUAP:20210728T133519Z:f08d0eb6-47b5-4790-a9dd-9b0399dc44a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2574,7 +2574,7 @@ "nosniff" ], "Date": [ - "Tue, 19 Jan 2021 17:14:25 GMT" + "Wed, 28 Jul 2021 13:35:19 GMT" ], "Expires": [ "-1" @@ -2587,15 +2587,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTkyLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVGt5TFZkRlUxUkRSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1JqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDgxNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVORGd4TmkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -2607,22 +2607,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTkyLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2017-05-10" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDgxNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11950" ], "x-ms-request-id": [ - "63da2b80-c1fb-4c83-8bce-3dfcfaf0b0db" + "3bf0d760-304e-40b1-98d6-da73ebe30052" ], "x-ms-correlation-request-id": [ - "63da2b80-c1fb-4c83-8bce-3dfcfaf0b0db" + "3bf0d760-304e-40b1-98d6-da73ebe30052" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171440Z:63da2b80-c1fb-4c83-8bce-3dfcfaf0b0db" + "CENTRALUSEUAP:20210728T133534Z:3bf0d760-304e-40b1-98d6-da73ebe30052" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2631,7 +2631,7 @@ "nosniff" ], "Date": [ - "Tue, 19 Jan 2021 17:14:40 GMT" + "Wed, 28 Jul 2021 13:35:34 GMT" ], "Expires": [ "-1" @@ -2644,15 +2644,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTkyLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVGt5TFZkRlUxUkRSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1JqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDgxNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVORGd4TmkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -2664,22 +2664,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTkyLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2017-05-10" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDgxNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11949" ], "x-ms-request-id": [ - "79f0fc8f-ef15-4ab2-a02f-8cda0725946e" + "6ea69e5f-d82b-4685-8dc5-c98ec0d358ef" ], "x-ms-correlation-request-id": [ - "79f0fc8f-ef15-4ab2-a02f-8cda0725946e" + "6ea69e5f-d82b-4685-8dc5-c98ec0d358ef" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171455Z:79f0fc8f-ef15-4ab2-a02f-8cda0725946e" + "CENTRALUSEUAP:20210728T133550Z:6ea69e5f-d82b-4685-8dc5-c98ec0d358ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2688,7 +2688,7 @@ "nosniff" ], "Date": [ - "Tue, 19 Jan 2021 17:14:55 GMT" + "Wed, 28 Jul 2021 13:35:49 GMT" ], "Expires": [ "-1" @@ -2701,15 +2701,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTkyLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVGt5TFZkRlUxUkRSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1JqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDgxNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVORGd4TmkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -2721,16 +2721,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11948" ], "x-ms-request-id": [ - "54568c64-2c55-4dfe-9618-67eeded60b1c" + "56509bbb-8284-486c-84d3-0ffedaec901f" ], "x-ms-correlation-request-id": [ - "54568c64-2c55-4dfe-9618-67eeded60b1c" + "56509bbb-8284-486c-84d3-0ffedaec901f" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171510Z:54568c64-2c55-4dfe-9618-67eeded60b1c" + "CENTRALUSEUAP:20210728T133605Z:56509bbb-8284-486c-84d3-0ffedaec901f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2739,7 +2739,7 @@ "nosniff" ], "Date": [ - "Tue, 19 Jan 2021 17:15:10 GMT" + "Wed, 28 Jul 2021 13:36:04 GMT" ], "Expires": [ "-1" @@ -2752,15 +2752,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTkyLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVGt5TFZkRlUxUkRSVTVVVWtGTVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkluZGxjM1JqWlc1MGNtRnNkWE1pZlE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDgxNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVORGd4TmkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -2772,16 +2772,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11947" ], "x-ms-request-id": [ - "97f16945-e31a-473a-93fb-09b8a3e897ac" + "b44fcebb-e2f4-4b85-b683-405ca00889ac" ], "x-ms-correlation-request-id": [ - "97f16945-e31a-473a-93fb-09b8a3e897ac" + "b44fcebb-e2f4-4b85-b683-405ca00889ac" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171510Z:97f16945-e31a-473a-93fb-09b8a3e897ac" + "CENTRALUSEUAP:20210728T133605Z:b44fcebb-e2f4-4b85-b683-405ca00889ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2790,7 +2790,7 @@ "nosniff" ], "Date": [ - "Tue, 19 Jan 2021 17:15:10 GMT" + "Wed, 28 Jul 2021 13:36:04 GMT" ], "Expires": [ "-1" @@ -2805,11 +2805,11 @@ ], "Names": { "BatchCertificateEndToEndAsync": [ - "azsmnet992", - "azsmnet6955" + "azsmnet4816", + "azsmnet2256" ] }, "Variables": { - "SubscriptionId": "9bf34af1-b860-4584-a6d1-26c1e6ad713a" + "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f" } } \ No newline at end of file diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/LocationTests/GetLocationQuotasAsync.json b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/LocationTests/GetLocationQuotasAsync.json index d09ab7f56ac0..106e1b8b3e5d 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/LocationTests/GetLocationQuotasAsync.json +++ b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/LocationTests/GetLocationQuotasAsync.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "41e9d366-7312-4551-9ed0-4b9d25dbe3a2" + "d4bdcfad-3945-40ad-bd09-f50a4e1287cb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "ff7662a5-c202-4add-a08a-d81d2f50fb64" + "6ee64f92-77da-465e-8cd6-588470b896f8" ], "x-ms-correlation-request-id": [ - "ff7662a5-c202-4add-a08a-d81d2f50fb64" + "6ee64f92-77da-465e-8cd6-588470b896f8" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171618Z:ff7662a5-c202-4add-a08a-d81d2f50fb64" + "CENTRALUSEUAP:20210728T131925Z:6ee64f92-77da-465e-8cd6-588470b896f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Tue, 19 Jan 2021 17:16:18 GMT" + "Wed, 28 Jul 2021 13:19:25 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,29 +54,29 @@ "-1" ], "Content-Length": [ - "6417" + "7221" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/pools\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/certificates\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/pools\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/certificates\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/West%20Central%20US/quotas?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL1dlc3QlMjBDZW50cmFsJTIwVVMvcXVvdGFzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/East%20US/quotas?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL0Vhc3QlMjBVUy9xdW90YXM/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3102e863-02e8-474e-ae61-c2db0a4c9acc" + "ca53eedf-f99d-450a-8027-13b04a4ce469" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -87,10 +87,10 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11989" ], "x-ms-request-id": [ - "cf30c604-4c36-4e1e-8767-44107f71f434" + "230eab10-865e-4376-9534-a71cb585d061" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -102,16 +102,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "1a11cc71-084a-4ec8-8096-db491f9ffc2b" + "cbc036c8-5d62-4b2a-8495-1dc6007dcba6" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171619Z:1a11cc71-084a-4ec8-8096-db491f9ffc2b" + "CENTRALUSEUAP:20210728T131925Z:cbc036c8-5d62-4b2a-8495-1dc6007dcba6" ], "Date": [ - "Tue, 19 Jan 2021 17:16:18 GMT" + "Wed, 28 Jul 2021 13:19:25 GMT" ], "Content-Length": [ - "18" + "21" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,12 +120,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"accountQuota\": 3\r\n}", + "ResponseBody": "{\r\n \"accountQuota\": 1000\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "9bf34af1-b860-4584-a6d1-26c1e6ad713a" + "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f" } } \ No newline at end of file diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/LocationTests/ListSupportedCloudServiceSkusAsync.json b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/LocationTests/ListSupportedCloudServiceSkusAsync.json new file mode 100644 index 000000000000..5c0eddc31f8f --- /dev/null +++ b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/LocationTests/ListSupportedCloudServiceSkusAsync.json @@ -0,0 +1,131 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b1c7e2d4-ac59-484e-97fb-a907ca10de21" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "87953418-b272-44fa-bbd0-07471ca18c1f" + ], + "x-ms-correlation-request-id": [ + "87953418-b272-44fa-bbd0-07471ca18c1f" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210728T131926Z:87953418-b272-44fa-bbd0-07471ca18c1f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Jul 2021 13:19:25 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "7221" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/pools\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/certificates\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/East%20US/cloudServiceSkus?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL0Vhc3QlMjBVUy9jbG91ZFNlcnZpY2VTa3VzP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0cc21619-388e-4f0a-91a9-427c81706a70" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "50d15ca9-71b7-4a3b-a08d-88c6cfcad789" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "527bdf26-8a9d-4ec9-b222-f426773ce395" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210728T131926Z:527bdf26-8a9d-4ec9-b222-f426773ce395" + ], + "Date": [ + "Wed, 28 Jul 2021 13:19:26 GMT" + ], + "Content-Length": [ + "19965" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"familyName\": \"basicAFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"familyName\": \"basicAFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"familyName\": \"basicAFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"familyName\": \"basicAFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"A5\",\r\n \"familyName\": \"standardA0_A7Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"14336\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"501760\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"138240\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"A6\",\r\n \"familyName\": \"standardA0_A7Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"28672\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"1024000\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"291840\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"A7\",\r\n \"familyName\": \"standardA0_A7Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"57344\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"2088960\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"619520\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ExtraLarge\",\r\n \"familyName\": \"standardA0_A7Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"14336\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"2088960\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"619520\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Large\",\r\n \"familyName\": \"standardA0_A7Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"7168\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"1024000\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"291840\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Medium\",\r\n \"familyName\": \"standardA0_A7Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"3584\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"501760\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"138240\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Small\",\r\n \"familyName\": \"standardA0_A7Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"1792\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"230400\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"71680\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"A10\",\r\n \"familyName\": \"standardA8_A11Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"57344\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"1861268\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"391828\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"A11\",\r\n \"familyName\": \"standardA8_A11Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"114688\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"1861268\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"391828\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"A8\",\r\n \"familyName\": \"standardA8_A11Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"57344\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"1861268\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"391828\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"A9\",\r\n \"familyName\": \"standardA8_A11Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"114688\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"1861268\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"391828\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_A1_v2\",\r\n \"familyName\": \"standardAv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_A2_v2\",\r\n \"familyName\": \"standardAv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_A2m_v2\",\r\n \"familyName\": \"standardAv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_A4_v2\",\r\n \"familyName\": \"standardAv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_A4m_v2\",\r\n \"familyName\": \"standardAv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_A8_v2\",\r\n \"familyName\": \"standardAv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_A8m_v2\",\r\n \"familyName\": \"standardAv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D16as_v4\",\r\n \"familyName\": \"standardDASv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D2as_v4\",\r\n \"familyName\": \"standardDASv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D32as_v4\",\r\n \"familyName\": \"standardDASv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D48as_v4\",\r\n \"familyName\": \"standardDASv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D4as_v4\",\r\n \"familyName\": \"standardDASv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D64as_v4\",\r\n \"familyName\": \"standardDASv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D8as_v4\",\r\n \"familyName\": \"standardDASv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D96as_v4\",\r\n \"familyName\": \"standardDASv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D16a_v4\",\r\n \"familyName\": \"standardDAv4Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D2a_v4\",\r\n \"familyName\": \"standardDAv4Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D32a_v4\",\r\n \"familyName\": \"standardDAv4Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"32\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D48a_v4\",\r\n \"familyName\": \"standardDAv4Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"48\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D4a_v4\",\r\n \"familyName\": \"standardDAv4Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D64a_v4\",\r\n \"familyName\": \"standardDAv4Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"64\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D8a_v4\",\r\n \"familyName\": \"standardDAv4Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D96a_v4\",\r\n \"familyName\": \"standardDAv4Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"96\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D16ds_v4\",\r\n \"familyName\": \"standardDDSv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D2ds_v4\",\r\n \"familyName\": \"standardDDSv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D32ds_v4\",\r\n \"familyName\": \"standardDDSv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D48ds_v4\",\r\n \"familyName\": \"standardDDSv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D4ds_v4\",\r\n \"familyName\": \"standardDDSv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D64ds_v4\",\r\n \"familyName\": \"standardDDSv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D8ds_v4\",\r\n \"familyName\": \"standardDDSv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D16d_v4\",\r\n \"familyName\": \"standardDDv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D2d_v4\",\r\n \"familyName\": \"standardDDv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D32d_v4\",\r\n \"familyName\": \"standardDDv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D48d_v4\",\r\n \"familyName\": \"standardDDv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D4d_v4\",\r\n \"familyName\": \"standardDDv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D64d_v4\",\r\n \"familyName\": \"standardDDv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D8d_v4\",\r\n \"familyName\": \"standardDDv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"familyName\": \"standardDFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"1\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"familyName\": \"standardDFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"familyName\": \"standardDFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"familyName\": \"standardDFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"familyName\": \"standardDFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"familyName\": \"standardDFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"familyName\": \"standardDFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"familyName\": \"standardDFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_DS1\",\r\n \"familyName\": \"standardDSFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_DS11\",\r\n \"familyName\": \"standardDSFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_DS12\",\r\n \"familyName\": \"standardDSFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_DS13\",\r\n \"familyName\": \"standardDSFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_DS14\",\r\n \"familyName\": \"standardDSFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"familyName\": \"standardDSFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"familyName\": \"standardDSFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"familyName\": \"standardDSFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_DS11_v2\",\r\n \"familyName\": \"standardDSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_DS12_v2\",\r\n \"familyName\": \"standardDSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_DS13_v2\",\r\n \"familyName\": \"standardDSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_DS14_v2\",\r\n \"familyName\": \"standardDSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_DS15_v2\",\r\n \"familyName\": \"standardDSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"familyName\": \"standardDSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_DS2_v2\",\r\n \"familyName\": \"standardDSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_DS3_v2\",\r\n \"familyName\": \"standardDSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_DS4_v2\",\r\n \"familyName\": \"standardDSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_DS5_v2\",\r\n \"familyName\": \"standardDSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D16s_v3\",\r\n \"familyName\": \"standardDSv3Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D2s_v3\",\r\n \"familyName\": \"standardDSv3Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D32s_v3\",\r\n \"familyName\": \"standardDSv3Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D48s_v3\",\r\n \"familyName\": \"standardDSv3Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D4s_v3\",\r\n \"familyName\": \"standardDSv3Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D64s_v3\",\r\n \"familyName\": \"standardDSv3Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D8s_v3\",\r\n \"familyName\": \"standardDSv3Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D11_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D12_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D13_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D14_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D15_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"20\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D1_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"1\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D2_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D3_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D4_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D5_v2\",\r\n \"familyName\": \"standardDv2Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D16_v3\",\r\n \"familyName\": \"standardDv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D2_v3\",\r\n \"familyName\": \"standardDv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D32_v3\",\r\n \"familyName\": \"standardDv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"32\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D48_v3\",\r\n \"familyName\": \"standardDv3Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_D4_v3\",\r\n \"familyName\": \"standardDv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D64_v3\",\r\n \"familyName\": \"standardDv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"64\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_D8_v3\",\r\n \"familyName\": \"standardDv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_E16as_v4\",\r\n \"familyName\": \"standardEASv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E2as_v4\",\r\n \"familyName\": \"standardEASv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E32as_v4\",\r\n \"familyName\": \"standardEASv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E48as_v4\",\r\n \"familyName\": \"standardEASv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E4as_v4\",\r\n \"familyName\": \"standardEASv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E64as_v4\",\r\n \"familyName\": \"standardEASv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E8as_v4\",\r\n \"familyName\": \"standardEASv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E96as_v4\",\r\n \"familyName\": \"standardEASv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E16a_v4\",\r\n \"familyName\": \"standardEAv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E2a_v4\",\r\n \"familyName\": \"standardEAv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E32a_v4\",\r\n \"familyName\": \"standardEAv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E48a_v4\",\r\n \"familyName\": \"standardEAv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E4a_v4\",\r\n \"familyName\": \"standardEAv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E64a_v4\",\r\n \"familyName\": \"standardEAv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E8a_v4\",\r\n \"familyName\": \"standardEAv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E96a_v4\",\r\n \"familyName\": \"standardEAv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E16ds_v4\",\r\n \"familyName\": \"standardEDSv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E2ds_v4\",\r\n \"familyName\": \"standardEDSv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E32ds_v4\",\r\n \"familyName\": \"standardEDSv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E48ds_v4\",\r\n \"familyName\": \"standardEDSv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E4ds_v4\",\r\n \"familyName\": \"standardEDSv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E64ds_v4\",\r\n \"familyName\": \"standardEDSv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E8ds_v4\",\r\n \"familyName\": \"standardEDSv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E16d_v4\",\r\n \"familyName\": \"standardEDv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E2d_v4\",\r\n \"familyName\": \"standardEDv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E32d_v4\",\r\n \"familyName\": \"standardEDv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E48d_v4\",\r\n \"familyName\": \"standardEDv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E4d_v4\",\r\n \"familyName\": \"standardEDv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E64d_v4\",\r\n \"familyName\": \"standardEDv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E8d_v4\",\r\n \"familyName\": \"standardEDv4Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E64i_v3\",\r\n \"familyName\": \"standardEIv3Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E16s_v3\",\r\n \"familyName\": \"standardESv3Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E2s_v3\",\r\n \"familyName\": \"standardESv3Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E32s_v3\",\r\n \"familyName\": \"standardESv3Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E48s_v3\",\r\n \"familyName\": \"standardESv3Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E4s_v3\",\r\n \"familyName\": \"standardESv3Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E64s_v3\",\r\n \"familyName\": \"standardESv3Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E8s_v3\",\r\n \"familyName\": \"standardESv3Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E16_v3\",\r\n \"familyName\": \"standardEv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_E2_v3\",\r\n \"familyName\": \"standardEv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_E32_v3\",\r\n \"familyName\": \"standardEv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"32\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_E48_v3\",\r\n \"familyName\": \"standardEv3Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E4_v3\",\r\n \"familyName\": \"standardEv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_E64_v3\",\r\n \"familyName\": \"standardEv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"64\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_E8_v3\",\r\n \"familyName\": \"standardEv3Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_F1\",\r\n \"familyName\": \"standardFFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_F16\",\r\n \"familyName\": \"standardFFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_F2\",\r\n \"familyName\": \"standardFFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_F4\",\r\n \"familyName\": \"standardFFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_F8\",\r\n \"familyName\": \"standardFFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_F16s\",\r\n \"familyName\": \"standardFSFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_F1s\",\r\n \"familyName\": \"standardFSFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_F2s\",\r\n \"familyName\": \"standardFSFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_F4s\",\r\n \"familyName\": \"standardFSFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_F8s\",\r\n \"familyName\": \"standardFSFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_F16s_v2\",\r\n \"familyName\": \"standardFSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_F2s_v2\",\r\n \"familyName\": \"standardFSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_F32s_v2\",\r\n \"familyName\": \"standardFSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_F48s_v2\",\r\n \"familyName\": \"standardFSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_F4s_v2\",\r\n \"familyName\": \"standardFSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_F64s_v2\",\r\n \"familyName\": \"standardFSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_F72s_v2\",\r\n \"familyName\": \"standardFSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_F8s_v2\",\r\n \"familyName\": \"standardFSv2Family\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_H16\",\r\n \"familyName\": \"standardHFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_H16m\",\r\n \"familyName\": \"standardHFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_H16mr\",\r\n \"familyName\": \"standardHFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_H16r\",\r\n \"familyName\": \"standardHFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_H8\",\r\n \"familyName\": \"standardHFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_H8m\",\r\n \"familyName\": \"standardHFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_M128\",\r\n \"familyName\": \"standardMSFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"128\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_M128m\",\r\n \"familyName\": \"standardMSFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"128\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_M128ms\",\r\n \"familyName\": \"standardMSFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"128\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_M128s\",\r\n \"familyName\": \"standardMSFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"128\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_M16ms\",\r\n \"familyName\": \"standardMSFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_M32ms\",\r\n \"familyName\": \"standardMSFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"32\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_M64\",\r\n \"familyName\": \"standardMSFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"64\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_M64m\",\r\n \"familyName\": \"standardMSFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"64\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_M64ms\",\r\n \"familyName\": \"standardMSFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"64\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_M64s\",\r\n \"familyName\": \"standardMSFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"64\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_M8ms\",\r\n \"familyName\": \"standardMSFamily\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Standard_NC12\",\r\n \"familyName\": \"standardNCFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_NC24\",\r\n \"familyName\": \"standardNCFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_NC6\",\r\n \"familyName\": \"standardNCFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_NV12\",\r\n \"familyName\": \"standardNVFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_NV24\",\r\n \"familyName\": \"standardNVFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_NV6\",\r\n \"familyName\": \"standardNVFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Standard_E80ids_v4\",\r\n \"familyName\": \"standardXEIDSv4Family\",\r\n \"capabilities\": []\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f" + } +} \ No newline at end of file diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/LocationTests/ListSupportedCloudServiceSkusFilterFamilyNameAsync.json b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/LocationTests/ListSupportedCloudServiceSkusFilterFamilyNameAsync.json new file mode 100644 index 000000000000..f920a7bb26b3 --- /dev/null +++ b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/LocationTests/ListSupportedCloudServiceSkusFilterFamilyNameAsync.json @@ -0,0 +1,131 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3f59d4ee-db6d-4767-aa16-b644c4380094" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "92949514-2d86-42e2-a0ee-e38861bb07bf" + ], + "x-ms-correlation-request-id": [ + "92949514-2d86-42e2-a0ee-e38861bb07bf" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210728T131927Z:92949514-2d86-42e2-a0ee-e38861bb07bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Jul 2021 13:19:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "7221" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/pools\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/certificates\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/East%20US/cloudServiceSkus?$filter=startswith%28familyName%2C%27basic%27%29&api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL0Vhc3QlMjBVUy9jbG91ZFNlcnZpY2VTa3VzPyRmaWx0ZXI9c3RhcnRzd2l0aCUyOGZhbWlseU5hbWUlMkMlMjdiYXNpYyUyNyUyOSZhcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "73a99cc2-b77d-4755-833e-a391b00470f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "d9436990-9c14-4500-b962-43a37805cff4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "17265621-f164-40f6-baf8-932b1eb5e489" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210728T131928Z:17265621-f164-40f6-baf8-932b1eb5e489" + ], + "Date": [ + "Wed, 28 Jul 2021 13:19:27 GMT" + ], + "Content-Length": [ + "275" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"familyName\": \"basicAFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"familyName\": \"basicAFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"familyName\": \"basicAFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"familyName\": \"basicAFamily\",\r\n \"capabilities\": []\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f" + } +} \ No newline at end of file diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/LocationTests/ListSupportedCloudServiceSkusMaxResultsAsync.json b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/LocationTests/ListSupportedCloudServiceSkusMaxResultsAsync.json new file mode 100644 index 000000000000..2a8d492b0679 --- /dev/null +++ b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/LocationTests/ListSupportedCloudServiceSkusMaxResultsAsync.json @@ -0,0 +1,131 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7a186747-59cd-47e3-83ef-809821bd6915" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "c0eed713-d093-4e5e-855f-2e30b5697fec" + ], + "x-ms-correlation-request-id": [ + "c0eed713-d093-4e5e-855f-2e30b5697fec" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210728T131924Z:c0eed713-d093-4e5e-855f-2e30b5697fec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 28 Jul 2021 13:19:24 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "7221" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/pools\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/certificates\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/East%20US/cloudServiceSkus?maxresults=5&api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL0Vhc3QlMjBVUy9jbG91ZFNlcnZpY2VTa3VzP21heHJlc3VsdHM9NSZhcGktdmVyc2lvbj0yMDIxLTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4208d388-927a-48fc-ae3d-0999ceb0ffb4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "e9f81050-d876-44a6-b619-e911d29a85fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "3019bd9e-cdb2-4f07-9fe0-e19d482aefe1" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210728T131924Z:3019bd9e-cdb2-4f07-9fe0-e19d482aefe1" + ], + "Date": [ + "Wed, 28 Jul 2021 13:19:24 GMT" + ], + "Content-Length": [ + "948" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"familyName\": \"basicAFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"familyName\": \"basicAFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"familyName\": \"basicAFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"familyName\": \"basicAFamily\",\r\n \"capabilities\": []\r\n },\r\n {\r\n \"name\": \"A5\",\r\n \"familyName\": \"standardA0_A7Family\",\r\n \"capabilities\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"MemoryInMb\",\r\n \"value\": \"14336\"\r\n },\r\n {\r\n \"name\": \"SupportedByWebWorkerRoles\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"SupportedByVirtualMachines\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"MaxDataDiskCount\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"WebWorkerResourceDiskSizeInMb\",\r\n \"value\": \"501760\"\r\n },\r\n {\r\n \"name\": \"VirtualMachineResourceDiskSizeInMb\",\r\n \"value\": \"138240\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"nextLink\": \"https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/East%20US/cloudServiceSkus?maxresults=5&api-version=2021-06-01&$skiptoken=NPK%3D19%3AstandardA0_A7FamilyNRK%3D2%3AA6SM%3D5%3AFalse\"\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f" + } +} \ No newline at end of file diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/PoolTests/BatchPoolEndToEndAsync.json b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/PoolTests/BatchPoolEndToEndAsync.json index 2c04e0384d2c..e1e792269abe 100644 --- a/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/PoolTests/BatchPoolEndToEndAsync.json +++ b/sdk/batch/Microsoft.Azure.Management.Batch/tests/SessionRecords/PoolTests/BatchPoolEndToEndAsync.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42bef4d6-6e2d-4398-9e8c-6350bc242616" + "6f6fffd7-f4c0-4cf0-aafb-1632e44a7d97" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11996" ], "x-ms-request-id": [ - "5132ca2c-1777-4033-b72e-b93d3e301298" + "a05c41f9-75e1-4567-90a2-3c675ba11b88" ], "x-ms-correlation-request-id": [ - "5132ca2c-1777-4033-b72e-b93d3e301298" + "a05c41f9-75e1-4567-90a2-3c675ba11b88" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171658Z:5132ca2c-1777-4033-b72e-b93d3e301298" + "CENTRALUSEUAP:20210728T132059Z:a05c41f9-75e1-4567-90a2-3c675ba11b88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Tue, 19 Jan 2021 17:16:57 GMT" + "Wed, 28 Jul 2021 13:20:58 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,35 +54,35 @@ "-1" ], "Content-Length": [ - "6417" + "7221" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/pools\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/certificates\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/pools\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"batchAccounts/certificates\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountOperationResults\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Norway East\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Sweden Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-06-01\",\r\n \"2021-01-01\",\r\n \"2020-09-01\",\r\n \"2020-05-01\",\r\n \"2020-03-01-preview\",\r\n \"2020-03-01\",\r\n \"2019-08-01\",\r\n \"2019-04-01\",\r\n \"2018-12-01\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourcegroups/azsmnet3324?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzMzI0P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet9167?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5MTY3P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "779a53a5-95a7-47e8-9f24-f4cd2c93ce35" + "c046a70c-389f-4ec1-b054-b3cb58ec524b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "37" + "29" ] }, "ResponseHeaders": { @@ -93,16 +93,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "cb2bc1bc-c12c-491a-8a34-a2eaa46cbef1" + "04d67409-c2e0-4865-8f84-6f5e70599ee0" ], "x-ms-correlation-request-id": [ - "cb2bc1bc-c12c-491a-8a34-a2eaa46cbef1" + "04d67409-c2e0-4865-8f84-6f5e70599ee0" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171700Z:cb2bc1bc-c12c-491a-8a34-a2eaa46cbef1" + "CENTRALUSEUAP:20210728T132059Z:04d67409-c2e0-4865-8f84-6f5e70599ee0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,10 +111,10 @@ "nosniff" ], "Date": [ - "Tue, 19 Jan 2021 17:17:00 GMT" + "Wed, 28 Jul 2021 13:20:59 GMT" ], "Content-Length": [ - "182" + "175" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,32 +123,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet3324\",\r\n \"name\": \"azsmnet3324\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167\",\r\n \"name\": \"azsmnet9167\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet3324/providers/Microsoft.Batch/batchAccounts/azsmnet5336?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMzI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTMzNj9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODQxMT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"East US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "878ad721-8643-4f42-8370-6f9c51b58fad" + "3a97e0af-ba9d-49f5-b4a4-f508d89716f3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "37" + "29" ] }, "ResponseHeaders": { @@ -159,13 +159,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet3324/providers/Microsoft.Batch/batchAccounts/azsmnet5336/operationResults/b7c64ad7-2d21-4ed3-bd7e-3e1482b55301?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/operationResults/108b24f7-2687-4545-ad10-0cdcbbf9a322?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "b7c64ad7-2d21-4ed3-bd7e-3e1482b55301" + "108b24f7-2687-4545-ad10-0cdcbbf9a322" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,13 +180,13 @@ "1199" ], "x-ms-correlation-request-id": [ - "511de14f-4e45-4d8f-a837-59aa05a252ee" + "6b2d940d-8293-44c4-b238-9600fc744843" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171705Z:511de14f-4e45-4d8f-a837-59aa05a252ee" + "CENTRALUSEUAP:20210728T132102Z:6b2d940d-8293-44c4-b238-9600fc744843" ], "Date": [ - "Tue, 19 Jan 2021 17:17:05 GMT" + "Wed, 28 Jul 2021 13:21:02 GMT" ], "Expires": [ "-1" @@ -199,16 +199,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet3324/providers/Microsoft.Batch/batchAccounts/azsmnet5336/operationResults/b7c64ad7-2d21-4ed3-bd7e-3e1482b55301?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMzI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTMzNi9vcGVyYXRpb25SZXN1bHRzL2I3YzY0YWQ3LTJkMjEtNGVkMy1iZDdlLTNlMTQ4MmI1NTMwMT9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/operationResults/108b24f7-2687-4545-ad10-0cdcbbf9a322?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODQxMS9vcGVyYXRpb25SZXN1bHRzLzEwOGIyNGY3LTI2ODctNDU0NS1hZDEwLTBjZGNiYmY5YTMyMj9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -219,13 +219,13 @@ "no-cache" ], "ETag": [ - "\"0x8D8BC9E148C62C0\"" + "\"0x8D951CA94ED4BB2\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11995" ], "x-ms-request-id": [ - "7ab2f713-4f7b-443c-8abe-64f11074fcff" + "56ff5c7b-b342-4a20-8bfd-ba1ff2d0894c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -237,16 +237,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "8cf57fe5-35a7-46d3-883c-bc7c3946588c" + "0748b317-7b5d-4fb3-a324-42731db37563" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171720Z:8cf57fe5-35a7-46d3-883c-bc7c3946588c" + "CENTRALUSEUAP:20210728T132117Z:0748b317-7b5d-4fb3-a324-42731db37563" ], "Date": [ - "Tue, 19 Jan 2021 17:17:20 GMT" + "Wed, 28 Jul 2021 13:21:17 GMT" ], "Content-Length": [ - "2636" + "2956" ], "Content-Type": [ "application/json; charset=utf-8" @@ -255,35 +255,35 @@ "-1" ], "Last-Modified": [ - "Tue, 19 Jan 2021 17:17:20 GMT" + "Wed, 28 Jul 2021 13:21:17 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet3324/providers/Microsoft.Batch/batchAccounts/azsmnet5336\",\r\n \"name\": \"azsmnet5336\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet5336.westcentralus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 700,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 50\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDDv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDDSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEDSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEIv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardXEIDSv4Family\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": true,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411\",\r\n \"name\": \"azsmnet8411\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet8411.pilotprod2.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuota\": 500,\r\n \"dedicatedCoreQuotaPerVMFamily\": [\r\n {\r\n \"name\": \"standardAv2Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardEv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardDSv2Family\",\r\n \"coreQuota\": 250\r\n },\r\n {\r\n \"name\": \"standardDSv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardESv3Family\",\r\n \"coreQuota\": 500\r\n },\r\n {\r\n \"name\": \"standardFSv2Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardNCFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardNVFamily\",\r\n \"coreQuota\": 24\r\n },\r\n {\r\n \"name\": \"standardDDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardDDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardEDSv4Family\",\r\n \"coreQuota\": 100\r\n },\r\n {\r\n \"name\": \"standardA0_A7Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardA8_A11Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"basicAFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHPromoFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardFSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardGSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardLSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNDSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNCSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHCSFamily\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBrsv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEAv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEASv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardMSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardEIv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNVSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NCASv3_T4 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardXEIDSv4Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"Standard NDASv4_A100 Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardDCSv2Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardHBv3Family\",\r\n \"coreQuota\": 0\r\n },\r\n {\r\n \"name\": \"standardNPSFamily\",\r\n \"coreQuota\": 0\r\n }\r\n ],\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": true,\r\n \"lowPriorityCoreQuota\": 500,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"BatchService\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n },\r\n \"allowedAuthenticationModes\": [\r\n \"SharedKey\",\r\n \"AAD\",\r\n \"TaskAuthenticationToken\"\r\n ]\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet3324/providers/Microsoft.Batch/batchAccounts/azsmnet5336/pools/test_paas_pool?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMzI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTMzNi9wb29scy90ZXN0X3BhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/pools/test_paas_pool?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODQxMS9wb29scy90ZXN0X3BhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"vmSize\": \"small\",\r\n \"deploymentConfiguration\": {\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"5\"\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0\r\n }\r\n },\r\n \"userAccounts\": [\r\n {\r\n \"name\": \"username\",\r\n \"password\": \"randompasswd\"\r\n }\r\n ],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd.exe /c \\\"echo hello world\\\"\",\r\n \"resourceFiles\": [\r\n {\r\n \"httpUrl\": \"https://blobsource.com\",\r\n \"filePath\": \"filename.txt\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"ENV_VAR\",\r\n \"value\": \"env_value\"\r\n }\r\n ],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"elevationLevel\": \"Admin\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"vmSize\": \"small\",\r\n \"deploymentConfiguration\": {\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"5\"\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0\r\n }\r\n },\r\n \"userAccounts\": [\r\n {\r\n \"name\": \"username\",\r\n \"password\": \"randompasswd\"\r\n }\r\n ],\r\n \"startTask\": {\r\n \"commandLine\": \"cmd.exe /c \\\"echo hello world\\\"\",\r\n \"resourceFiles\": [\r\n {\r\n \"httpUrl\": \"https://blobsource.com\",\r\n \"filePath\": \"filename.txt\",\r\n \"identityReference\": {\r\n \"resourceId\": \"refUserId123\"\r\n }\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"ENV_VAR\",\r\n \"value\": \"env_value\"\r\n }\r\n ],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"elevationLevel\": \"Admin\"\r\n }\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "79abc07b-bffa-42ec-a683-42d6bea8dc4f" + "dfaed33d-a4d2-4e94-89c5-a2612a690b08" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "909" + "999" ] }, "ResponseHeaders": { @@ -294,13 +294,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D8BC9E14D4C84C\"" + "W/\"0x8D951CA952AA218\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-request-id": [ - "ac5881ed-6316-497d-a41a-b6ca2d2f9f10" + "c6570fe0-5428-47e1-90ba-6c8f54493573" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -312,16 +312,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "f675138a-ea1f-459e-8b42-a3723367efe6" + "e6871102-a0f7-43c1-8ee2-81227a9b5010" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171721Z:f675138a-ea1f-459e-8b42-a3723367efe6" + "CENTRALUSEUAP:20210728T132117Z:e6871102-a0f7-43c1-8ee2-81227a9b5010" ], "Date": [ - "Tue, 19 Jan 2021 17:17:20 GMT" + "Wed, 28 Jul 2021 13:21:17 GMT" ], "Content-Length": [ - "1552" + "1597" ], "Content-Type": [ "application/json; charset=utf-8" @@ -330,35 +330,35 @@ "-1" ], "Last-Modified": [ - "Tue, 19 Jan 2021 17:17:21 GMT" + "Wed, 28 Jul 2021 13:21:17 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet3324/providers/Microsoft.Batch/batchAccounts/azsmnet5336/pools/test_paas_pool\",\r\n \"name\": \"test_paas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D8BC9E14D4C84C\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2021-01-19T17:17:21.3269068Z\",\r\n \"creationTime\": \"2021-01-19T17:17:21.3269068Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-01-19T17:17:21.3269068Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2021-01-19T17:17:21.3269068Z\",\r\n \"vmSize\": \"Small\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"5\",\r\n \"osVersion\": \"*\"\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"startTask\": {\r\n \"commandLine\": \"cmd.exe /c \\\"echo hello world\\\"\",\r\n \"resourceFiles\": [\r\n {\r\n \"filePath\": \"filename.txt\",\r\n \"httpUrl\": \"https://blobsource.com\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"ENV_VAR\",\r\n \"value\": \"env_value\"\r\n }\r\n ],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"Pool\",\r\n \"elevationLevel\": \"Admin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"userAccounts\": [\r\n {\r\n \"name\": \"username\",\r\n \"elevationLevel\": \"NonAdmin\",\r\n \"windowsUserConfiguration\": {\r\n \"loginMode\": \"Interactive\"\r\n }\r\n }\r\n ],\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2021-01-19T17:17:21.3269068Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/pools/test_paas_pool\",\r\n \"name\": \"test_paas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D951CA952AA218\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2021-07-28T13:21:17.747868Z\",\r\n \"creationTime\": \"2021-07-28T13:21:17.747868Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-07-28T13:21:17.747868Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2021-07-28T13:21:17.747868Z\",\r\n \"vmSize\": \"Small\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"5\",\r\n \"osVersion\": \"*\"\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"startTask\": {\r\n \"commandLine\": \"cmd.exe /c \\\"echo hello world\\\"\",\r\n \"resourceFiles\": [\r\n {\r\n \"filePath\": \"filename.txt\",\r\n \"httpUrl\": \"https://blobsource.com\",\r\n \"identityReference\": {\r\n \"resourceId\": \"refUserId123\"\r\n }\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"ENV_VAR\",\r\n \"value\": \"env_value\"\r\n }\r\n ],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"Pool\",\r\n \"elevationLevel\": \"Admin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"userAccounts\": [\r\n {\r\n \"name\": \"username\",\r\n \"elevationLevel\": \"NonAdmin\",\r\n \"windowsUserConfiguration\": {\r\n \"loginMode\": \"Interactive\"\r\n }\r\n }\r\n ],\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2021-07-28T13:21:17.747868Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet3324/providers/Microsoft.Batch/batchAccounts/azsmnet5336/pools/test_iaas_pool?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMzI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTMzNi9wb29scy90ZXN0X2lhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/pools/test_iaas_pool?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODQxMS9wb29scy90ZXN0X2lhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"vmSize\": \"Standard_A1\",\r\n \"deploymentConfiguration\": {\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter-smalldisk\"\r\n },\r\n \"nodeAgentSkuId\": \"batch.node.windows amd64\",\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": true\r\n }\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0\r\n }\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"vmSize\": \"Standard_A1\",\r\n \"deploymentConfiguration\": {\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter-smalldisk\"\r\n },\r\n \"nodeAgentSkuId\": \"batch.node.windows amd64\",\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"osDisk\": {\r\n \"ephemeralOSDiskSettings\": {\r\n \"placement\": \"CacheDisk\"\r\n }\r\n }\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "45cef778-7d8f-41bc-98ef-847ceb52be7a" + "bbaa9e41-63d1-4267-a3a5-e032c25b6323" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "635" + "759" ] }, "ResponseHeaders": { @@ -369,13 +369,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D8BC9E15130A83\"" + "W/\"0x8D951CA9553AEE2\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-request-id": [ - "7e05244e-72ea-472e-ba6a-68b6a734071c" + "ba88de3d-aee1-44a3-8adf-51de5b271104" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -387,16 +387,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "b1dc867f-aacd-41cb-a918-33aa4056feed" + "db6a1655-809f-4c54-8b17-480be2aa88c2" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171721Z:b1dc867f-aacd-41cb-a918-33aa4056feed" + "CENTRALUSEUAP:20210728T132118Z:db6a1655-809f-4c54-8b17-480be2aa88c2" ], "Date": [ - "Tue, 19 Jan 2021 17:17:21 GMT" + "Wed, 28 Jul 2021 13:21:17 GMT" ], "Content-Length": [ - "1321" + "1379" ], "Content-Type": [ "application/json; charset=utf-8" @@ -405,29 +405,29 @@ "-1" ], "Last-Modified": [ - "Tue, 19 Jan 2021 17:17:21 GMT" + "Wed, 28 Jul 2021 13:21:18 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet3324/providers/Microsoft.Batch/batchAccounts/azsmnet5336/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D8BC9E15130A83\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2021-01-19T17:17:21.7349251Z\",\r\n \"creationTime\": \"2021-01-19T17:17:21.7349251Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-01-19T17:17:21.7349251Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2021-01-19T17:17:21.7349251Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSkuId\": \"batch.node.windows amd64\",\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": true\r\n }\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2021-01-19T17:17:21.7349251Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D951CA9553AEE2\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2021-07-28T13:21:18.016893Z\",\r\n \"creationTime\": \"2021-07-28T13:21:18.016893Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-07-28T13:21:18.016893Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2021-07-28T13:21:18.016893Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSkuId\": \"batch.node.windows amd64\",\r\n \"osDisk\": {\r\n \"ephemeralOSDiskSettings\": {\r\n \"placement\": \"CacheDisk\"\r\n }\r\n },\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": true\r\n }\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2021-07-28T13:21:18.016893Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet3324/providers/Microsoft.Batch/batchAccounts/azsmnet5336/pools?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMzI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTMzNi9wb29scz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/pools?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODQxMS9wb29scz9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0016b4d9-4660-4d8e-8ad4-5e67f2b1523e" + "1ad5bd4c-1a71-4b42-9fc0-7b616de587da" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -438,10 +438,10 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11994" ], "x-ms-request-id": [ - "c6dbfcde-cbf7-4a3c-a03a-a30fa25533fe" + "d14e269c-854d-4f21-9759-a941dd1ba74c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -453,16 +453,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "f8b634d4-4261-4e5f-babe-2f4d22d21d1d" + "cd9813bb-81b4-420d-bad5-3e1abb515e87" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171721Z:f8b634d4-4261-4e5f-babe-2f4d22d21d1d" + "CENTRALUSEUAP:20210728T132118Z:cd9813bb-81b4-420d-bad5-3e1abb515e87" ], "Date": [ - "Tue, 19 Jan 2021 17:17:21 GMT" + "Wed, 28 Jul 2021 13:21:17 GMT" ], "Content-Length": [ - "2886" + "2989" ], "Content-Type": [ "application/json; charset=utf-8" @@ -471,26 +471,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet3324/providers/Microsoft.Batch/batchAccounts/azsmnet5336/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D8BC9E15130A83\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2021-01-19T17:17:21.7349251Z\",\r\n \"creationTime\": \"2021-01-19T17:17:21.7349251Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-01-19T17:17:21.7349251Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2021-01-19T17:17:21.7349251Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSkuId\": \"batch.node.windows amd64\",\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": true\r\n }\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2021-01-19T17:17:21.7349251Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet3324/providers/Microsoft.Batch/batchAccounts/azsmnet5336/pools/test_paas_pool\",\r\n \"name\": \"test_paas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D8BC9E14D4C84C\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2021-01-19T17:17:21.3269068Z\",\r\n \"creationTime\": \"2021-01-19T17:17:21.3269068Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-01-19T17:17:21.3269068Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2021-01-19T17:17:21.3269068Z\",\r\n \"vmSize\": \"Small\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"5\",\r\n \"osVersion\": \"*\"\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"startTask\": {\r\n \"commandLine\": \"cmd.exe /c \\\"echo hello world\\\"\",\r\n \"resourceFiles\": [\r\n {\r\n \"filePath\": \"filename.txt\",\r\n \"httpUrl\": \"https://blobsource.com\"\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"ENV_VAR\",\r\n \"value\": \"env_value\"\r\n }\r\n ],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"Pool\",\r\n \"elevationLevel\": \"Admin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"userAccounts\": [\r\n {\r\n \"name\": \"username\",\r\n \"elevationLevel\": \"NonAdmin\",\r\n \"windowsUserConfiguration\": {\r\n \"loginMode\": \"Interactive\"\r\n }\r\n }\r\n ],\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2021-01-19T17:17:21.3269068Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D951CA9553AEE2\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2021-07-28T13:21:18.016893Z\",\r\n \"creationTime\": \"2021-07-28T13:21:18.016893Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-07-28T13:21:18.016893Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2021-07-28T13:21:18.016893Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSkuId\": \"batch.node.windows amd64\",\r\n \"osDisk\": {\r\n \"ephemeralOSDiskSettings\": {\r\n \"placement\": \"CacheDisk\"\r\n }\r\n },\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": true\r\n }\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2021-07-28T13:21:18.016893Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/pools/test_paas_pool\",\r\n \"name\": \"test_paas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D951CA952AA218\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2021-07-28T13:21:17.747868Z\",\r\n \"creationTime\": \"2021-07-28T13:21:17.747868Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-07-28T13:21:17.747868Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2021-07-28T13:21:17.747868Z\",\r\n \"vmSize\": \"Small\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"cloudServiceConfiguration\": {\r\n \"osFamily\": \"5\",\r\n \"osVersion\": \"*\"\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"startTask\": {\r\n \"commandLine\": \"cmd.exe /c \\\"echo hello world\\\"\",\r\n \"resourceFiles\": [\r\n {\r\n \"filePath\": \"filename.txt\",\r\n \"httpUrl\": \"https://blobsource.com\",\r\n \"identityReference\": {\r\n \"resourceId\": \"refUserId123\"\r\n }\r\n }\r\n ],\r\n \"environmentSettings\": [\r\n {\r\n \"name\": \"ENV_VAR\",\r\n \"value\": \"env_value\"\r\n }\r\n ],\r\n \"userIdentity\": {\r\n \"autoUser\": {\r\n \"scope\": \"Pool\",\r\n \"elevationLevel\": \"Admin\"\r\n }\r\n },\r\n \"maxTaskRetryCount\": 0,\r\n \"waitForSuccess\": true\r\n },\r\n \"userAccounts\": [\r\n {\r\n \"name\": \"username\",\r\n \"elevationLevel\": \"NonAdmin\",\r\n \"windowsUserConfiguration\": {\r\n \"loginMode\": \"Interactive\"\r\n }\r\n }\r\n ],\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2021-07-28T13:21:17.747868Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet3324/providers/Microsoft.Batch/batchAccounts/azsmnet5336/pools/test_iaas_pool?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMzI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTMzNi9wb29scy90ZXN0X2lhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/pools/test_iaas_pool?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODQxMS9wb29scy90ZXN0X2lhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8dab544b-0b7a-499c-a395-70c813d55302" + "be900fba-9c82-4b6c-9e89-d9b58cd8e555" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -501,13 +501,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D8BC9E15130A83\"" + "W/\"0x8D951CA9553AEE2\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11993" ], "x-ms-request-id": [ - "681e0359-eb5d-4e62-bb26-da259dd57995" + "31fdb037-9bec-4ba8-b651-175864c8ef24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -519,16 +519,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "7076f71e-78d5-4e35-842b-49cef2de91df" + "3b72255a-6f50-4048-a0e9-765eb709ec70" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171722Z:7076f71e-78d5-4e35-842b-49cef2de91df" + "CENTRALUSEUAP:20210728T132118Z:3b72255a-6f50-4048-a0e9-765eb709ec70" ], "Date": [ - "Tue, 19 Jan 2021 17:17:21 GMT" + "Wed, 28 Jul 2021 13:21:17 GMT" ], "Content-Length": [ - "1321" + "1379" ], "Content-Type": [ "application/json; charset=utf-8" @@ -537,29 +537,29 @@ "-1" ], "Last-Modified": [ - "Tue, 19 Jan 2021 17:17:21 GMT" + "Wed, 28 Jul 2021 13:21:18 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet3324/providers/Microsoft.Batch/batchAccounts/azsmnet5336/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D8BC9E15130A83\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2021-01-19T17:17:21.7349251Z\",\r\n \"creationTime\": \"2021-01-19T17:17:21.7349251Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-01-19T17:17:21.7349251Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2021-01-19T17:17:21.7349251Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSkuId\": \"batch.node.windows amd64\",\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": true\r\n }\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2021-01-19T17:17:21.7349251Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D951CA9553AEE2\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2021-07-28T13:21:18.016893Z\",\r\n \"creationTime\": \"2021-07-28T13:21:18.016893Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-07-28T13:21:18.016893Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2021-07-28T13:21:18.016893Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSkuId\": \"batch.node.windows amd64\",\r\n \"osDisk\": {\r\n \"ephemeralOSDiskSettings\": {\r\n \"placement\": \"CacheDisk\"\r\n }\r\n },\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": true\r\n }\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2021-07-28T13:21:18.016893Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet3324/providers/Microsoft.Batch/batchAccounts/azsmnet5336/pools/test_iaas_pool/stopResize?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMzI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTMzNi9wb29scy90ZXN0X2lhYXNfcG9vbC9zdG9wUmVzaXplP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/pools/test_iaas_pool/stopResize?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODQxMS9wb29scy90ZXN0X2lhYXNfcG9vbC9zdG9wUmVzaXplP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b2758eb-1ab6-483a-bd29-ae9c309b6ac5" + "3c6a252a-b440-4981-9277-6842eda705b4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -570,13 +570,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D8BC9E15130A83\"" + "W/\"0x8D951CA9553AEE2\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-request-id": [ - "a0125486-7d90-472e-af23-08d11fe7d367" + "048d3e24-7d4a-413d-836b-d70d580efbc5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -588,16 +588,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "effdd07a-b737-4c47-a37a-f0bfc81f5b5a" + "afb767c4-750f-445e-bcef-a96d68c6b51f" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171723Z:effdd07a-b737-4c47-a37a-f0bfc81f5b5a" + "CENTRALUSEUAP:20210728T132120Z:afb767c4-750f-445e-bcef-a96d68c6b51f" ], "Date": [ - "Tue, 19 Jan 2021 17:17:23 GMT" + "Wed, 28 Jul 2021 13:21:19 GMT" ], "Content-Length": [ - "1319" + "1378" ], "Content-Type": [ "application/json; charset=utf-8" @@ -606,29 +606,29 @@ "-1" ], "Last-Modified": [ - "Tue, 19 Jan 2021 17:17:21 GMT" + "Wed, 28 Jul 2021 13:21:18 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet3324/providers/Microsoft.Batch/batchAccounts/azsmnet5336/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D8BC9E15130A83\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2021-01-19T17:17:21.7349251Z\",\r\n \"creationTime\": \"2021-01-19T17:17:21.7349251Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-01-19T17:17:21.7349251Z\",\r\n \"allocationState\": \"Steady\",\r\n \"allocationStateTransitionTime\": \"2021-01-19T17:17:23.7000003Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSkuId\": \"batch.node.windows amd64\",\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": true\r\n }\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2021-01-19T17:17:21.7349251Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D951CA9553AEE2\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2021-07-28T13:21:18.016893Z\",\r\n \"creationTime\": \"2021-07-28T13:21:18.016893Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-07-28T13:21:18.016893Z\",\r\n \"allocationState\": \"Steady\",\r\n \"allocationStateTransitionTime\": \"2021-07-28T13:21:20.3178689Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSkuId\": \"batch.node.windows amd64\",\r\n \"osDisk\": {\r\n \"ephemeralOSDiskSettings\": {\r\n \"placement\": \"CacheDisk\"\r\n }\r\n },\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": true\r\n }\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"resizeOperationStatus\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"nodeDeallocationOption\": \"Requeue\",\r\n \"resizeTimeout\": \"PT15M\",\r\n \"startTime\": \"2021-07-28T13:21:18.016893Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet3324/providers/Microsoft.Batch/batchAccounts/azsmnet5336/pools/test_iaas_pool/disableAutoScale?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMzI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTMzNi9wb29scy90ZXN0X2lhYXNfcG9vbC9kaXNhYmxlQXV0b1NjYWxlP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/pools/test_iaas_pool/disableAutoScale?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODQxMS9wb29scy90ZXN0X2lhYXNfcG9vbC9kaXNhYmxlQXV0b1NjYWxlP2FwaS12ZXJzaW9uPTIwMjEtMDYtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9810e930-d063-41b8-bf5f-b62b5316674b" + "23df7527-eff7-4053-ae01-14a8e4416d10" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -639,13 +639,13 @@ "no-cache" ], "ETag": [ - "W/\"0x8D8BC9E165AD01C\"" + "W/\"0x8D951CA96D0FEC0\"" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-request-id": [ - "ec9c013b-5136-45fc-89e6-41daf85611a6" + "faed93aa-4078-48b2-bb59-9c493aa41199" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -657,16 +657,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "18bd8251-1ba0-4bea-9314-8373126a88ff" + "27055dd0-5b54-4798-9958-2dcf0872e90f" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171723Z:18bd8251-1ba0-4bea-9314-8373126a88ff" + "CENTRALUSEUAP:20210728T132120Z:27055dd0-5b54-4798-9958-2dcf0872e90f" ], "Date": [ - "Tue, 19 Jan 2021 17:17:23 GMT" + "Wed, 28 Jul 2021 13:21:19 GMT" ], "Content-Length": [ - "1168" + "1229" ], "Content-Type": [ "application/json; charset=utf-8" @@ -675,29 +675,29 @@ "-1" ], "Last-Modified": [ - "Tue, 19 Jan 2021 17:17:23 GMT" + "Wed, 28 Jul 2021 13:21:20 GMT" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet3324/providers/Microsoft.Batch/batchAccounts/azsmnet5336/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D8BC9E165AD01C\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2021-01-19T17:17:23.8830108Z\",\r\n \"creationTime\": \"2021-01-19T17:17:21.7349251Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-01-19T17:17:21.7349251Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2021-01-19T17:17:23.8830108Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSkuId\": \"batch.node.windows amd64\",\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": true\r\n }\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D951CA96D0FEC0\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2021-07-28T13:21:20.5158592Z\",\r\n \"creationTime\": \"2021-07-28T13:21:18.016893Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2021-07-28T13:21:18.016893Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2021-07-28T13:21:20.5158592Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"taskSlotsPerNode\": 1,\r\n \"taskSchedulingPolicy\": {\r\n \"nodeFillType\": \"Spread\"\r\n },\r\n \"deploymentConfiguration\": {\r\n \"virtualMachineConfiguration\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter-smalldisk\",\r\n \"version\": \"latest\"\r\n },\r\n \"nodeAgentSkuId\": \"batch.node.windows amd64\",\r\n \"osDisk\": {\r\n \"ephemeralOSDiskSettings\": {\r\n \"placement\": \"CacheDisk\"\r\n }\r\n },\r\n \"windowsConfiguration\": {\r\n \"enableAutomaticUpdates\": true\r\n }\r\n }\r\n },\r\n \"scaleSettings\": {\r\n \"fixedScale\": {\r\n \"targetDedicatedNodes\": 0,\r\n \"targetLowPriorityNodes\": 0,\r\n \"resizeTimeout\": \"PT15M\"\r\n }\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet3324/providers/Microsoft.Batch/batchAccounts/azsmnet5336/pools/test_paas_pool?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMzI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTMzNi9wb29scy90ZXN0X3BhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/pools/test_paas_pool?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODQxMS9wb29scy90ZXN0X3BhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fb804ef3-7aa0-4a72-89d9-3884d2ee18b3" + "ba6974dd-204c-4166-891b-721c7cadc538" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -708,13 +708,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet3324/providers/Microsoft.Batch/batchAccounts/azsmnet5336/poolOperationResults/delete-test_paas_pool?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/poolOperationResults/delete-test_paas_pool?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "91c64db5-0533-4c6b-b826-2e692a0ef617" + "77e27db6-2b28-4431-bd8e-49f9996fc686" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -729,13 +729,13 @@ "14999" ], "x-ms-correlation-request-id": [ - "b5941578-68b6-4a41-9f65-e3c5bcbdc9e6" + "5156f077-c09b-4108-bd64-826bada92e05" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171724Z:b5941578-68b6-4a41-9f65-e3c5bcbdc9e6" + "CENTRALUSEUAP:20210728T132120Z:5156f077-c09b-4108-bd64-826bada92e05" ], "Date": [ - "Tue, 19 Jan 2021 17:17:23 GMT" + "Wed, 28 Jul 2021 13:21:20 GMT" ], "Expires": [ "-1" @@ -748,16 +748,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet3324/providers/Microsoft.Batch/batchAccounts/azsmnet5336/poolOperationResults/delete-test_paas_pool?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMzI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTMzNi9wb29sT3BlcmF0aW9uUmVzdWx0cy9kZWxldGUtdGVzdF9wYWFzX3Bvb2w/YXBpLXZlcnNpb249MjAyMS0wMS0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/poolOperationResults/delete-test_paas_pool?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODQxMS9wb29sT3BlcmF0aW9uUmVzdWx0cy9kZWxldGUtdGVzdF9wYWFzX3Bvb2w/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -768,7 +768,7 @@ "no-cache" ], "x-ms-request-id": [ - "a6710991-ec8e-406a-94ff-49744e721972" + "9573394a-3beb-46d9-a4d6-442247473eb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -780,16 +780,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11992" ], "x-ms-correlation-request-id": [ - "2d587151-7522-4d62-810d-36b42ec59e9a" + "dbb2ac58-7185-4300-bbd6-73d644de3925" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171739Z:2d587151-7522-4d62-810d-36b42ec59e9a" + "CENTRALUSEUAP:20210728T132135Z:dbb2ac58-7185-4300-bbd6-73d644de3925" ], "Date": [ - "Tue, 19 Jan 2021 17:17:38 GMT" + "Wed, 28 Jul 2021 13:21:35 GMT" ], "Expires": [ "-1" @@ -802,16 +802,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet3324/providers/Microsoft.Batch/batchAccounts/azsmnet5336/poolOperationResults/delete-test_paas_pool?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMzI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTMzNi9wb29sT3BlcmF0aW9uUmVzdWx0cy9kZWxldGUtdGVzdF9wYWFzX3Bvb2w/YXBpLXZlcnNpb249MjAyMS0wMS0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/poolOperationResults/delete-test_paas_pool?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODQxMS9wb29sT3BlcmF0aW9uUmVzdWx0cy9kZWxldGUtdGVzdF9wYWFzX3Bvb2w/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -822,7 +822,7 @@ "no-cache" ], "x-ms-request-id": [ - "8206959a-9156-4b6a-91fc-7df7b54c1ce9" + "01e17636-eb59-4581-8594-f872bd737bef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -834,16 +834,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11991" ], "x-ms-correlation-request-id": [ - "33e25609-a3e8-433c-8266-8f5539151d85" + "67c9f829-743d-49f7-acfd-b41ae4c5d519" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171739Z:33e25609-a3e8-433c-8266-8f5539151d85" + "CENTRALUSEUAP:20210728T132135Z:67c9f829-743d-49f7-acfd-b41ae4c5d519" ], "Date": [ - "Tue, 19 Jan 2021 17:17:38 GMT" + "Wed, 28 Jul 2021 13:21:35 GMT" ], "Expires": [ "-1" @@ -856,22 +856,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet3324/providers/Microsoft.Batch/batchAccounts/azsmnet5336/pools/test_iaas_pool?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMzI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTMzNi9wb29scy90ZXN0X2lhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/pools/test_iaas_pool?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODQxMS9wb29scy90ZXN0X2lhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b63cf1e2-93c3-4f36-9393-8923cd88f430" + "ee0ce880-cad4-4335-9b8d-bda7734a64a8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -882,13 +882,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet3324/providers/Microsoft.Batch/batchAccounts/azsmnet5336/poolOperationResults/delete-test_iaas_pool?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/poolOperationResults/delete-test_iaas_pool?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "10af0dbe-7d2f-4627-b80a-e1acdcc7ffbe" + "328e94f0-a273-4982-9c5e-c6a788027839" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -903,13 +903,13 @@ "14998" ], "x-ms-correlation-request-id": [ - "bece9db1-3c9f-4067-ac25-393142f4c8d4" + "d8da7474-963c-4466-ac7b-954f068aa024" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171739Z:bece9db1-3c9f-4067-ac25-393142f4c8d4" + "CENTRALUSEUAP:20210728T132136Z:d8da7474-963c-4466-ac7b-954f068aa024" ], "Date": [ - "Tue, 19 Jan 2021 17:17:38 GMT" + "Wed, 28 Jul 2021 13:21:35 GMT" ], "Expires": [ "-1" @@ -922,16 +922,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet3324/providers/Microsoft.Batch/batchAccounts/azsmnet5336/poolOperationResults/delete-test_iaas_pool?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMzI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTMzNi9wb29sT3BlcmF0aW9uUmVzdWx0cy9kZWxldGUtdGVzdF9pYWFzX3Bvb2w/YXBpLXZlcnNpb249MjAyMS0wMS0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/poolOperationResults/delete-test_iaas_pool?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODQxMS9wb29sT3BlcmF0aW9uUmVzdWx0cy9kZWxldGUtdGVzdF9pYWFzX3Bvb2w/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -942,7 +942,7 @@ "no-cache" ], "x-ms-request-id": [ - "e6181bbe-86f5-4c08-9b90-9965e88b28e4" + "0c2be241-128b-42d2-a29d-927e3f65ce1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,16 +954,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11990" ], "x-ms-correlation-request-id": [ - "235f9165-f2f5-4808-8eaa-bb6482b9a852" + "265096fa-b8c2-485f-9a5c-2d93e7186ad7" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171754Z:235f9165-f2f5-4808-8eaa-bb6482b9a852" + "CENTRALUSEUAP:20210728T132151Z:265096fa-b8c2-485f-9a5c-2d93e7186ad7" ], "Date": [ - "Tue, 19 Jan 2021 17:17:54 GMT" + "Wed, 28 Jul 2021 13:21:50 GMT" ], "Expires": [ "-1" @@ -976,16 +976,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet3324/providers/Microsoft.Batch/batchAccounts/azsmnet5336/poolOperationResults/delete-test_iaas_pool?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMzI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTMzNi9wb29sT3BlcmF0aW9uUmVzdWx0cy9kZWxldGUtdGVzdF9pYWFzX3Bvb2w/YXBpLXZlcnNpb249MjAyMS0wMS0wMQ==", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/poolOperationResults/delete-test_iaas_pool?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODQxMS9wb29sT3BlcmF0aW9uUmVzdWx0cy9kZWxldGUtdGVzdF9pYWFzX3Bvb2w/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -996,7 +996,7 @@ "no-cache" ], "x-ms-request-id": [ - "4377fedf-b25d-42d2-95e0-c75d64116d19" + "976178c3-1a20-412e-8f5c-1001dbc92f54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1008,16 +1008,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11989" ], "x-ms-correlation-request-id": [ - "3bb11e3d-e213-4782-ac5f-7bb8469de1fc" + "f6b37cd0-8d16-447f-976c-706a92e77926" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171754Z:3bb11e3d-e213-4782-ac5f-7bb8469de1fc" + "CENTRALUSEUAP:20210728T132151Z:f6b37cd0-8d16-447f-976c-706a92e77926" ], "Date": [ - "Tue, 19 Jan 2021 17:17:54 GMT" + "Wed, 28 Jul 2021 13:21:50 GMT" ], "Expires": [ "-1" @@ -1030,22 +1030,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet3324/providers/Microsoft.Batch/batchAccounts/azsmnet5336/pools/test_paas_pool?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMzI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTMzNi9wb29scy90ZXN0X3BhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411/pools/test_paas_pool?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODQxMS9wb29scy90ZXN0X3BhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "905ffc39-e980-4975-be67-c68b6f1875e0" + "441d97cd-2d5c-4987-90ab-a45a705ed6f1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -1056,10 +1056,10 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11988" ], "x-ms-request-id": [ - "836c456f-1ce5-4539-9804-afa4a099c75d" + "ae63a955-5c3a-4b34-9539-41326b85bd8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1071,13 +1071,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-correlation-request-id": [ - "9136306f-fedb-40c0-8558-45557e53aa80" + "083664db-0c70-41f7-9343-9ee76080dcef" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171754Z:9136306f-fedb-40c0-8558-45557e53aa80" + "CENTRALUSEUAP:20210728T132151Z:083664db-0c70-41f7-9343-9ee76080dcef" ], "Date": [ - "Tue, 19 Jan 2021 17:17:54 GMT" + "Wed, 28 Jul 2021 13:21:50 GMT" ], "Content-Length": [ "187" @@ -1089,26 +1089,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PoolNotFound\",\r\n \"message\": \"The specified pool does not exist.\\nRequestId:836c456f-1ce5-4539-9804-afa4a099c75d\\nTime:2021-01-19T17:17:54.8857077Z\",\r\n \"target\": \"BatchAccount\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PoolNotFound\",\r\n \"message\": \"The specified pool does not exist.\\nRequestId:ae63a955-5c3a-4b34-9539-41326b85bd8c\\nTime:2021-07-28T13:21:51.4396862Z\",\r\n \"target\": \"BatchAccount\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourceGroups/azsmnet3324/providers/Microsoft.Batch/batchAccounts/azsmnet5336?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlR3JvdXBzL2F6c21uZXQzMzI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTMzNj9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet9167/providers/Microsoft.Batch/batchAccounts/azsmnet8411?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5MTY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODQxMT9hcGktdmVyc2lvbj0yMDIxLTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eed2bfcd-7636-46d9-876d-67c842824068" + "27caa7bd-40db-4d0e-96bf-76e2cecd5eb7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -1119,13 +1119,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "a8d525a7-70c5-42fc-94fe-7052696ae1f0" + "dc869ca7-6b8a-4c96-a82a-398939e97345" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1140,13 +1140,13 @@ "14997" ], "x-ms-correlation-request-id": [ - "0c116b36-3b0c-4abb-93fd-2e5f5e15799d" + "fd4f4505-cca6-47e0-9e01-11d3d9973ed1" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171755Z:0c116b36-3b0c-4abb-93fd-2e5f5e15799d" + "CENTRALUSEUAP:20210728T132151Z:fd4f4505-cca6-47e0-9e01-11d3d9973ed1" ], "Date": [ - "Tue, 19 Jan 2021 17:17:54 GMT" + "Wed, 28 Jul 2021 13:21:51 GMT" ], "Expires": [ "-1" @@ -1159,16 +1159,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDUzMzYtYThkNTI1YTctNzBjNS00MmZjLTk0ZmUtNzA1MjY5NmFlMWYwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -1179,13 +1179,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "e94e49df-49a6-4bca-827c-56fd1a539ffe" + "525095da-8bfc-4589-9177-6327076cbf86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1197,16 +1197,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11987" ], "x-ms-correlation-request-id": [ - "4749089f-39ec-4e6b-8692-db65c638c8f8" + "e13b3eb5-841d-4330-abc6-b24c78773884" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171810Z:4749089f-39ec-4e6b-8692-db65c638c8f8" + "CENTRALUSEUAP:20210728T132206Z:e13b3eb5-841d-4330-abc6-b24c78773884" ], "Date": [ - "Tue, 19 Jan 2021 17:18:09 GMT" + "Wed, 28 Jul 2021 13:22:06 GMT" ], "Expires": [ "-1" @@ -1219,16 +1219,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDUzMzYtYThkNTI1YTctNzBjNS00MmZjLTk0ZmUtNzA1MjY5NmFlMWYwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -1239,13 +1239,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "bdbcfd44-2fb0-4e8b-85a2-6eaf4ef270be" + "82d5fbca-01bd-4df9-bda6-bef962ef33ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1257,16 +1257,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11986" ], "x-ms-correlation-request-id": [ - "bf710188-4755-440a-b2e8-bcfee4cea94d" + "d8e4a3e7-46f8-4a7d-bc68-562e77df2b3c" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171825Z:bf710188-4755-440a-b2e8-bcfee4cea94d" + "CENTRALUSEUAP:20210728T132222Z:d8e4a3e7-46f8-4a7d-bc68-562e77df2b3c" ], "Date": [ - "Tue, 19 Jan 2021 17:18:24 GMT" + "Wed, 28 Jul 2021 13:22:22 GMT" ], "Expires": [ "-1" @@ -1279,16 +1279,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDUzMzYtYThkNTI1YTctNzBjNS00MmZjLTk0ZmUtNzA1MjY5NmFlMWYwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -1299,13 +1299,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "b5d93ff8-4e63-4855-9d48-0d788964dee4" + "48dbf678-8327-4b2f-94af-1b9ed3db8511" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1317,16 +1317,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11985" ], "x-ms-correlation-request-id": [ - "98eb0994-0466-4135-800a-b1084eaba4b7" + "45b909f5-074f-4aa3-a14c-95e8ba5957f4" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171840Z:98eb0994-0466-4135-800a-b1084eaba4b7" + "CENTRALUSEUAP:20210728T132237Z:45b909f5-074f-4aa3-a14c-95e8ba5957f4" ], "Date": [ - "Tue, 19 Jan 2021 17:18:39 GMT" + "Wed, 28 Jul 2021 13:22:36 GMT" ], "Expires": [ "-1" @@ -1339,16 +1339,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDUzMzYtYThkNTI1YTctNzBjNS00MmZjLTk0ZmUtNzA1MjY5NmFlMWYwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -1359,13 +1359,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "08d03c4e-a296-4b87-97c3-ad890d01c496" + "0161308b-fb54-47b3-bbeb-0790509e4538" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1377,16 +1377,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11984" ], "x-ms-correlation-request-id": [ - "5850f27f-24df-41fc-8d89-4c37616015bf" + "138f1141-4ced-4696-8b49-657b374f7781" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171855Z:5850f27f-24df-41fc-8d89-4c37616015bf" + "CENTRALUSEUAP:20210728T132252Z:138f1141-4ced-4696-8b49-657b374f7781" ], "Date": [ - "Tue, 19 Jan 2021 17:18:55 GMT" + "Wed, 28 Jul 2021 13:22:51 GMT" ], "Expires": [ "-1" @@ -1399,16 +1399,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDUzMzYtYThkNTI1YTctNzBjNS00MmZjLTk0ZmUtNzA1MjY5NmFlMWYwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -1419,13 +1419,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "5101ad89-2c43-43cc-987e-c749072c2f1d" + "b33815c1-a1d1-4955-b2d0-48d89ddb0b33" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1437,16 +1437,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11983" ], "x-ms-correlation-request-id": [ - "284b6200-0b85-466c-b1d5-24d98066d55c" + "3fe6a871-96fd-455a-868a-73500dc90d60" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171910Z:284b6200-0b85-466c-b1d5-24d98066d55c" + "CENTRALUSEUAP:20210728T132307Z:3fe6a871-96fd-455a-868a-73500dc90d60" ], "Date": [ - "Tue, 19 Jan 2021 17:19:10 GMT" + "Wed, 28 Jul 2021 13:23:07 GMT" ], "Expires": [ "-1" @@ -1459,16 +1459,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDUzMzYtYThkNTI1YTctNzBjNS00MmZjLTk0ZmUtNzA1MjY5NmFlMWYwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -1479,13 +1479,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "8d7754b3-fd46-486d-a34f-9bd35e89e038" + "fb9087c6-766f-4334-aa1d-7d3d873ba06b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1497,16 +1497,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11982" ], "x-ms-correlation-request-id": [ - "ccd3ea3f-4ab7-473b-baf0-f907e1070add" + "29a7e048-47fe-4421-ab39-062361090d20" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171925Z:ccd3ea3f-4ab7-473b-baf0-f907e1070add" + "CENTRALUSEUAP:20210728T132322Z:29a7e048-47fe-4421-ab39-062361090d20" ], "Date": [ - "Tue, 19 Jan 2021 17:19:25 GMT" + "Wed, 28 Jul 2021 13:23:22 GMT" ], "Expires": [ "-1" @@ -1519,16 +1519,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDUzMzYtYThkNTI1YTctNzBjNS00MmZjLTk0ZmUtNzA1MjY5NmFlMWYwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -1539,13 +1539,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "ddc0981a-4fee-47ac-ba03-388174d1f4f4" + "8eae0a8d-b833-46d3-8ac7-31276a449edd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1557,16 +1557,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11981" ], "x-ms-correlation-request-id": [ - "5531610e-3fee-435c-9d7f-7bb463a3ab39" + "10e59fa4-3fa2-4602-9a04-13ab030c5a8b" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171941Z:5531610e-3fee-435c-9d7f-7bb463a3ab39" + "CENTRALUSEUAP:20210728T132337Z:10e59fa4-3fa2-4602-9a04-13ab030c5a8b" ], "Date": [ - "Tue, 19 Jan 2021 17:19:40 GMT" + "Wed, 28 Jul 2021 13:23:37 GMT" ], "Expires": [ "-1" @@ -1579,16 +1579,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDUzMzYtYThkNTI1YTctNzBjNS00MmZjLTk0ZmUtNzA1MjY5NmFlMWYwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -1599,13 +1599,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "c73c02ae-7dce-4c8d-805a-05c180d8166a" + "5ffe1440-55ca-4834-ba27-2b3db43eff76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1617,16 +1617,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11980" ], "x-ms-correlation-request-id": [ - "070d04ff-c042-4884-b642-239108c6b361" + "078230c5-b554-455b-acc2-29f8434ee869" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T171956Z:070d04ff-c042-4884-b642-239108c6b361" + "CENTRALUSEUAP:20210728T132352Z:078230c5-b554-455b-acc2-29f8434ee869" ], "Date": [ - "Tue, 19 Jan 2021 17:19:55 GMT" + "Wed, 28 Jul 2021 13:23:52 GMT" ], "Expires": [ "-1" @@ -1639,16 +1639,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDUzMzYtYThkNTI1YTctNzBjNS00MmZjLTk0ZmUtNzA1MjY5NmFlMWYwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -1659,13 +1659,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "c95c4633-b0c3-4261-ad07-b055d79122bf" + "23b1e985-2bf9-4e31-bd61-430acce4c0bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1677,16 +1677,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11979" ], "x-ms-correlation-request-id": [ - "4526b8be-2ba1-49d0-9ad0-5780629ea9df" + "a8cefed7-dfaf-4da2-852f-974ff8fc24e0" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T172011Z:4526b8be-2ba1-49d0-9ad0-5780629ea9df" + "CENTRALUSEUAP:20210728T132407Z:a8cefed7-dfaf-4da2-852f-974ff8fc24e0" ], "Date": [ - "Tue, 19 Jan 2021 17:20:10 GMT" + "Wed, 28 Jul 2021 13:24:07 GMT" ], "Expires": [ "-1" @@ -1699,16 +1699,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDUzMzYtYThkNTI1YTctNzBjNS00MmZjLTk0ZmUtNzA1MjY5NmFlMWYwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -1719,13 +1719,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "a61a80fc-5d57-4dac-b53f-13acb5f5f630" + "1b6970aa-c7cb-433f-ab08-651efb0277bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1737,16 +1737,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11978" ], "x-ms-correlation-request-id": [ - "93236bf8-0278-4541-a316-09cd974f0297" + "8b35c76b-e9d3-4faf-8ba2-b4df0734e1c2" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T172026Z:93236bf8-0278-4541-a316-09cd974f0297" + "CENTRALUSEUAP:20210728T132422Z:8b35c76b-e9d3-4faf-8ba2-b4df0734e1c2" ], "Date": [ - "Tue, 19 Jan 2021 17:20:25 GMT" + "Wed, 28 Jul 2021 13:24:22 GMT" ], "Expires": [ "-1" @@ -1759,16 +1759,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDUzMzYtYThkNTI1YTctNzBjNS00MmZjLTk0ZmUtNzA1MjY5NmFlMWYwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -1779,13 +1779,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "21295e26-4400-4aaa-a8fc-3668d6d598e0" + "5b0f52b5-c0cf-40fb-b287-4f4804a2c8e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1797,16 +1797,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11977" ], "x-ms-correlation-request-id": [ - "cb96a504-38e9-4949-8341-9f3ca62c60f5" + "351d6c9d-21b0-4db2-9f2a-ee22e8464af7" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T172041Z:cb96a504-38e9-4949-8341-9f3ca62c60f5" + "CENTRALUSEUAP:20210728T132437Z:351d6c9d-21b0-4db2-9f2a-ee22e8464af7" ], "Date": [ - "Tue, 19 Jan 2021 17:20:40 GMT" + "Wed, 28 Jul 2021 13:24:37 GMT" ], "Expires": [ "-1" @@ -1819,16 +1819,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDUzMzYtYThkNTI1YTctNzBjNS00MmZjLTk0ZmUtNzA1MjY5NmFlMWYwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -1839,13 +1839,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "d3d75565-f242-4e69-829c-b06f119fed61" + "e54b1050-9867-41db-98db-fb78e79df2b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1857,16 +1857,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11976" ], "x-ms-correlation-request-id": [ - "8f2544b9-9335-4651-89f3-b22bd99ce15f" + "fef0afb2-c1e6-4a75-b23f-d27eac05d9b8" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T172056Z:8f2544b9-9335-4651-89f3-b22bd99ce15f" + "CENTRALUSEUAP:20210728T132452Z:fef0afb2-c1e6-4a75-b23f-d27eac05d9b8" ], "Date": [ - "Tue, 19 Jan 2021 17:20:55 GMT" + "Wed, 28 Jul 2021 13:24:52 GMT" ], "Expires": [ "-1" @@ -1879,16 +1879,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDUzMzYtYThkNTI1YTctNzBjNS00MmZjLTk0ZmUtNzA1MjY5NmFlMWYwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -1899,13 +1899,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "bb3d23b8-612a-40ac-b037-8cb634427e92" + "fc45c3c1-ac72-4f5b-bf16-fb1d30593aa8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1917,16 +1917,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11975" ], "x-ms-correlation-request-id": [ - "e94b0909-ad9e-44aa-af6b-061061a477ab" + "f4876879-3da9-4960-b20c-14732746aab6" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T172111Z:e94b0909-ad9e-44aa-af6b-061061a477ab" + "CENTRALUSEUAP:20210728T132508Z:f4876879-3da9-4960-b20c-14732746aab6" ], "Date": [ - "Tue, 19 Jan 2021 17:21:10 GMT" + "Wed, 28 Jul 2021 13:25:07 GMT" ], "Expires": [ "-1" @@ -1939,16 +1939,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDUzMzYtYThkNTI1YTctNzBjNS00MmZjLTk0ZmUtNzA1MjY5NmFlMWYwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -1959,13 +1959,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "ca300f5a-0d5c-46df-9366-c31b45639a5b" + "9459f53f-5490-48b2-951f-e32d6e3b7872" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1977,16 +1977,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11974" ], "x-ms-correlation-request-id": [ - "1e885506-f129-4fd2-bc53-7e104172d240" + "868f8055-2a57-42be-86ad-ab002a3fc7ef" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T172126Z:1e885506-f129-4fd2-bc53-7e104172d240" + "CENTRALUSEUAP:20210728T132523Z:868f8055-2a57-42be-86ad-ab002a3fc7ef" ], "Date": [ - "Tue, 19 Jan 2021 17:21:25 GMT" + "Wed, 28 Jul 2021 13:25:23 GMT" ], "Expires": [ "-1" @@ -1999,16 +1999,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDUzMzYtYThkNTI1YTctNzBjNS00MmZjLTk0ZmUtNzA1MjY5NmFlMWYwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -2019,13 +2019,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "0ce7d64e-fdeb-4d54-a8c3-1d2a9c744a08" + "48c4f4bb-aafe-4f0e-89f8-3d4141589a8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2037,16 +2037,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11973" ], "x-ms-correlation-request-id": [ - "690bdb00-47ad-4d5b-8085-98c5a27b4749" + "817bf4e3-2d04-4700-b7e5-8b61dd920d35" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T172141Z:690bdb00-47ad-4d5b-8085-98c5a27b4749" + "CENTRALUSEUAP:20210728T132538Z:817bf4e3-2d04-4700-b7e5-8b61dd920d35" ], "Date": [ - "Tue, 19 Jan 2021 17:21:40 GMT" + "Wed, 28 Jul 2021 13:25:38 GMT" ], "Expires": [ "-1" @@ -2059,16 +2059,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDUzMzYtYThkNTI1YTctNzBjNS00MmZjLTk0ZmUtNzA1MjY5NmFlMWYwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -2079,13 +2079,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "5eee0554-8a8e-4370-abac-53c3f669e709" + "e8a7297c-53eb-4df5-a13e-8e40270745fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2097,16 +2097,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11972" ], "x-ms-correlation-request-id": [ - "5be01c8e-c6b4-45a3-9dc4-b3d9e6d1a2d3" + "71a7cb87-0e88-4a27-9408-30314375e06e" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T172156Z:5be01c8e-c6b4-45a3-9dc4-b3d9e6d1a2d3" + "CENTRALUSEUAP:20210728T132553Z:71a7cb87-0e88-4a27-9408-30314375e06e" ], "Date": [ - "Tue, 19 Jan 2021 17:21:56 GMT" + "Wed, 28 Jul 2021 13:25:52 GMT" ], "Expires": [ "-1" @@ -2119,16 +2119,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDUzMzYtYThkNTI1YTctNzBjNS00MmZjLTk0ZmUtNzA1MjY5NmFlMWYwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -2139,13 +2139,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "b92d78fe-b238-43e8-9a1c-9e0536310b4d" + "267fa80c-2c40-43ca-9f84-a9e819390b0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2157,16 +2157,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11971" ], "x-ms-correlation-request-id": [ - "acb27690-eaf3-48d1-9bc6-733d656794be" + "9369ee85-dd44-41c9-9e60-3828b22f32c7" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T172211Z:acb27690-eaf3-48d1-9bc6-733d656794be" + "CENTRALUSEUAP:20210728T132608Z:9369ee85-dd44-41c9-9e60-3828b22f32c7" ], "Date": [ - "Tue, 19 Jan 2021 17:22:11 GMT" + "Wed, 28 Jul 2021 13:26:08 GMT" ], "Expires": [ "-1" @@ -2179,16 +2179,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDUzMzYtYThkNTI1YTctNzBjNS00MmZjLTk0ZmUtNzA1MjY5NmFlMWYwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -2199,13 +2199,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "0e909ba9-2203-4605-81be-e69bd26e21e5" + "fdeecf3c-46db-441c-a2b6-2c48783f79af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2213,20 +2213,20 @@ "X-Content-Type-Options": [ "nosniff" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" - ], "x-ms-correlation-request-id": [ - "988faf32-f267-4d96-bf94-ec22d7ccc0b7" + "3ab0ea3e-fa8e-4ccd-bfbf-96f4821892bc" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T172227Z:988faf32-f267-4d96-bf94-ec22d7ccc0b7" + "CENTRALUSEUAP:20210728T132623Z:3ab0ea3e-fa8e-4ccd-bfbf-96f4821892bc" ], "Date": [ - "Tue, 19 Jan 2021 17:22:26 GMT" + "Wed, 28 Jul 2021 13:26:23 GMT" ], "Expires": [ "-1" @@ -2239,16 +2239,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDUzMzYtYThkNTI1YTctNzBjNS00MmZjLTk0ZmUtNzA1MjY5NmFlMWYwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -2259,13 +2259,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "6dc7be26-4fcf-4743-8bc6-ae5019842e9c" + "c3227201-2538-4fb6-8a65-4c03c878c6ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2277,16 +2277,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11969" ], "x-ms-correlation-request-id": [ - "c0882556-6b76-4cf4-8b52-ae0e84d75782" + "034bf9c4-2ef4-452a-b5b8-2c5c3c115c52" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T172242Z:c0882556-6b76-4cf4-8b52-ae0e84d75782" + "CENTRALUSEUAP:20210728T132638Z:034bf9c4-2ef4-452a-b5b8-2c5c3c115c52" ], "Date": [ - "Tue, 19 Jan 2021 17:22:41 GMT" + "Wed, 28 Jul 2021 13:26:38 GMT" ], "Expires": [ "-1" @@ -2299,16 +2299,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDUzMzYtYThkNTI1YTctNzBjNS00MmZjLTk0ZmUtNzA1MjY5NmFlMWYwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -2319,13 +2319,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "cae770d5-92a1-4f50-be96-461bb78143e5" + "0ea51656-2fab-4429-bb80-09e2cf1a846d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2337,16 +2337,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11968" ], "x-ms-correlation-request-id": [ - "7ea8909d-d5f0-40c5-be41-d509ae72fdfe" + "848fd365-6e9c-4659-96b1-4e9c9280f22b" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T172257Z:7ea8909d-d5f0-40c5-be41-d509ae72fdfe" + "CENTRALUSEUAP:20210728T132653Z:848fd365-6e9c-4659-96b1-4e9c9280f22b" ], "Date": [ - "Tue, 19 Jan 2021 17:22:56 GMT" + "Wed, 28 Jul 2021 13:26:53 GMT" ], "Expires": [ "-1" @@ -2359,16 +2359,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDUzMzYtYThkNTI1YTctNzBjNS00MmZjLTk0ZmUtNzA1MjY5NmFlMWYwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -2379,13 +2379,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01" ], "Retry-After": [ "15" ], "x-ms-request-id": [ - "65f684d9-0421-4194-bde0-545e4dc6e2d6" + "116fa4d4-e3d6-4ead-952f-4e6fbd3f8e50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2393,20 +2393,20 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" - ], "Server": [ "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], "x-ms-correlation-request-id": [ - "8fe40f8d-4098-4f00-9922-a190eed7dddf" + "77fb45d2-f501-4cec-a551-1721e3400bbf" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T172312Z:8fe40f8d-4098-4f00-9922-a190eed7dddf" + "CENTRALUSEUAP:20210728T132708Z:77fb45d2-f501-4cec-a551-1721e3400bbf" ], "Date": [ - "Tue, 19 Jan 2021 17:23:11 GMT" + "Wed, 28 Jul 2021 13:27:08 GMT" ], "Expires": [ "-1" @@ -2419,16 +2419,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDUzMzYtYThkNTI1YTctNzBjNS00MmZjLTk0ZmUtNzA1MjY5NmFlMWYwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -2439,7 +2439,7 @@ "no-cache" ], "x-ms-request-id": [ - "42b5f924-71b7-46b5-ad04-6a50bc86f797" + "4ddaa57e-2bfc-42ab-a2bd-386b0ce8da8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2451,16 +2451,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11966" ], "x-ms-correlation-request-id": [ - "c702ae21-8cd2-460e-b5e8-3edd98298283" + "de115432-09f6-4452-b221-5d702d85656e" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T172327Z:c702ae21-8cd2-460e-b5e8-3edd98298283" + "CENTRALUSEUAP:20210728T132724Z:de115432-09f6-4452-b221-5d702d85656e" ], "Date": [ - "Tue, 19 Jan 2021 17:23:26 GMT" + "Wed, 28 Jul 2021 13:27:23 GMT" ], "Expires": [ "-1" @@ -2473,16 +2473,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/providers/Microsoft.Batch/locations/westcentralus/accountOperationResults/azsmnet5336-a8d525a7-70c5-42fc-94fe-7052696ae1f0?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvYWNjb3VudE9wZXJhdGlvblJlc3VsdHMvYXpzbW5ldDUzMzYtYThkNTI1YTctNzBjNS00MmZjLTk0ZmUtNzA1MjY5NmFlMWYwP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8411-dc869ca7-6b8a-4c96-a82a-398939e97345?api-version=2021-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODQxMS1kYzg2OWNhNy02YjhhLTRjOTYtYTgyYS0zOTg5MzllOTczNDU/YXBpLXZlcnNpb249MjAyMS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Batch.BatchManagementClient/13.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Batch.BatchManagementClient/15.0.0.0" ] }, "ResponseHeaders": { @@ -2493,7 +2493,7 @@ "no-cache" ], "x-ms-request-id": [ - "7288b19f-aca5-4aee-b7dc-352b3f06bc1c" + "2df71420-d5a0-4cc8-b0d4-99ce7e33e994" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2505,16 +2505,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11965" ], "x-ms-correlation-request-id": [ - "03c62959-aa3a-419f-9c76-766572a8d5df" + "77ff2329-b5ef-42d5-a7cc-b33bf96b454c" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T172327Z:03c62959-aa3a-419f-9c76-766572a8d5df" + "CENTRALUSEUAP:20210728T132724Z:77ff2329-b5ef-42d5-a7cc-b33bf96b454c" ], "Date": [ - "Tue, 19 Jan 2021 17:23:26 GMT" + "Wed, 28 Jul 2021 13:27:23 GMT" ], "Expires": [ "-1" @@ -2527,21 +2527,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/resourcegroups/azsmnet3324?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzMzI0P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet9167?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5MTY3P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dfe297e9-22cc-449f-8e7c-ed11a52e5cbe" + "d8e66747-d49a-4e8c-8e57-08746781ef49" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -2553,22 +2553,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzMyNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTE2Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-request-id": [ - "f10ad4a9-88c8-4eef-81f5-4883bc3c27b1" + "6befcb90-4a8e-435a-820c-6e742a4f9e3e" ], "x-ms-correlation-request-id": [ - "f10ad4a9-88c8-4eef-81f5-4883bc3c27b1" + "6befcb90-4a8e-435a-820c-6e742a4f9e3e" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T172330Z:f10ad4a9-88c8-4eef-81f5-4883bc3c27b1" + "CENTRALUSEUAP:20210728T132725Z:6befcb90-4a8e-435a-820c-6e742a4f9e3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2577,7 +2577,7 @@ "nosniff" ], "Date": [ - "Tue, 19 Jan 2021 17:23:30 GMT" + "Wed, 28 Jul 2021 13:27:24 GMT" ], "Expires": [ "-1" @@ -2590,15 +2590,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzMyNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNek15TkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTE2Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVEUyTnkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -2610,22 +2610,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzMyNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTE2Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11987" ], "x-ms-request-id": [ - "12c885f0-7d08-48c3-b7d7-f950890318fb" + "a4e8a417-506d-4461-a525-0443d8e62fa9" ], "x-ms-correlation-request-id": [ - "12c885f0-7d08-48c3-b7d7-f950890318fb" + "a4e8a417-506d-4461-a525-0443d8e62fa9" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T172345Z:12c885f0-7d08-48c3-b7d7-f950890318fb" + "CENTRALUSEUAP:20210728T132740Z:a4e8a417-506d-4461-a525-0443d8e62fa9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2634,7 +2634,7 @@ "nosniff" ], "Date": [ - "Tue, 19 Jan 2021 17:23:44 GMT" + "Wed, 28 Jul 2021 13:27:40 GMT" ], "Expires": [ "-1" @@ -2647,15 +2647,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzMyNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNek15TkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTE2Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVEUyTnkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -2667,22 +2667,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzMyNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10" + "https://centraluseuap.management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTE2Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11986" ], "x-ms-request-id": [ - "b300e14c-179b-4996-9861-2664f3b8eb1b" + "7b4c9070-06dc-4c88-a098-e54e810ff8fe" ], "x-ms-correlation-request-id": [ - "b300e14c-179b-4996-9861-2664f3b8eb1b" + "7b4c9070-06dc-4c88-a098-e54e810ff8fe" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T172400Z:b300e14c-179b-4996-9861-2664f3b8eb1b" + "CENTRALUSEUAP:20210728T132755Z:7b4c9070-06dc-4c88-a098-e54e810ff8fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2691,7 +2691,7 @@ "nosniff" ], "Date": [ - "Tue, 19 Jan 2021 17:23:59 GMT" + "Wed, 28 Jul 2021 13:27:55 GMT" ], "Expires": [ "-1" @@ -2704,15 +2704,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzMyNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNek15TkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTE2Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVEUyTnkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -2724,16 +2724,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11985" ], "x-ms-request-id": [ - "6d2e9962-c6d3-453e-83c4-46ebbcaf6988" + "36fb2de3-9096-4ff3-ba1f-2b0ac83aaa2a" ], "x-ms-correlation-request-id": [ - "6d2e9962-c6d3-453e-83c4-46ebbcaf6988" + "36fb2de3-9096-4ff3-ba1f-2b0ac83aaa2a" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T172415Z:6d2e9962-c6d3-453e-83c4-46ebbcaf6988" + "CENTRALUSEUAP:20210728T132810Z:36fb2de3-9096-4ff3-ba1f-2b0ac83aaa2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2742,7 +2742,7 @@ "nosniff" ], "Date": [ - "Tue, 19 Jan 2021 17:24:14 GMT" + "Wed, 28 Jul 2021 13:28:10 GMT" ], "Expires": [ "-1" @@ -2755,15 +2755,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/9bf34af1-b860-4584-a6d1-26c1e6ad713a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzMyNC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWJmMzRhZjEtYjg2MC00NTg0LWE2ZDEtMjZjMWU2YWQ3MTNhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNek15TkMxWFJWTlVRMFZPVkZKQlRGVlRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wWTJWdWRISmhiSFZ6SW4wP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTE2Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVEUyTnkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29518.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" ] }, @@ -2775,16 +2775,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11984" ], "x-ms-request-id": [ - "c871be40-6930-4cba-8b66-c775e504d87c" + "035b9b80-d225-4594-99dc-417c21552782" ], "x-ms-correlation-request-id": [ - "c871be40-6930-4cba-8b66-c775e504d87c" + "035b9b80-d225-4594-99dc-417c21552782" ], "x-ms-routing-request-id": [ - "CANADACENTRAL:20210119T172415Z:c871be40-6930-4cba-8b66-c775e504d87c" + "CENTRALUSEUAP:20210728T132810Z:035b9b80-d225-4594-99dc-417c21552782" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2793,7 +2793,7 @@ "nosniff" ], "Date": [ - "Tue, 19 Jan 2021 17:24:15 GMT" + "Wed, 28 Jul 2021 13:28:10 GMT" ], "Expires": [ "-1" @@ -2808,11 +2808,11 @@ ], "Names": { "BatchPoolEndToEndAsync": [ - "azsmnet3324", - "azsmnet5336" + "azsmnet9167", + "azsmnet8411" ] }, "Variables": { - "SubscriptionId": "9bf34af1-b860-4584-a6d1-26c1e6ad713a" + "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f" } } \ No newline at end of file