diff --git a/eng/mgmt/mgmtmetadata/batch_resource-manager.txt b/eng/mgmt/mgmtmetadata/batch_resource-manager.txt
index 75bca6b11373..317a7da0b9f2 100644
--- a/eng/mgmt/mgmtmetadata/batch_resource-manager.txt
+++ b/eng/mgmt/mgmtmetadata/batch_resource-manager.txt
@@ -1,14 +1,14 @@
-Installing AutoRest version: 2.0.4413
+Installing AutoRest version: v2
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=2.0.4413 --reflect-api-versions --tag=package-2020-03 --csharp.output-folder=C:\work\github\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Management.Batch\src\generated
-2020-04-10 17:03:15 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=C:\Users\jafreck.REDMOND\source\azure-sdk-for-net\sdk
+2020-05-28 19:15:53 UTC
Azure-rest-api-specs repository information
GitHub fork: Azure
Branch: master
-Commit: e51be65f0ffcee98da9776f060da2ee43e577d5c
+Commit: 358aade743f3b749da5aee9394f34b55466f3b14
AutoRest information
-Requested version: 2.0.4413
+Requested version: v2
Bootstrapper version: autorest@2.0.4413
diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/AzSdk.RP.props b/sdk/batch/Microsoft.Azure.Management.Batch/AzSdk.RP.props
index 8258dfedcfec..4fe6038bb949 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-03-01;
+ Batch_2020-05-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 aa7909c17d24..0557cd4b6e1d 100644
--- a/sdk/batch/Microsoft.Azure.Management.Batch/CHANGELOG.md
+++ b/sdk/batch/Microsoft.Azure.Management.Batch/CHANGELOG.md
@@ -1,10 +1,19 @@
# Release History
-## 10.1.0-preview.1 (Unreleased)
+## 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`.
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 c137c0ad15af..a19713799d67 100644
--- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/BatchManagementClient.cs
+++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/BatchManagementClient.cs
@@ -368,7 +368,7 @@ private void Initialize()
PrivateEndpointConnection = new PrivateEndpointConnectionOperations(this);
Pool = new PoolOperations(this);
BaseUri = new System.Uri("https://management.azure.com");
- ApiVersion = "2020-03-01";
+ ApiVersion = "2020-05-01";
AcceptLanguage = "en-US";
LongRunningOperationRetryTimeout = 30;
GenerateClientRequestId = true;
diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/IPrivateEndpointConnectionOperations.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/IPrivateEndpointConnectionOperations.cs
index f2bc6d66865d..83d9c776f997 100644
--- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/IPrivateEndpointConnectionOperations.cs
+++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/IPrivateEndpointConnectionOperations.cs
@@ -121,6 +121,45 @@ public partial interface IPrivateEndpointConnectionOperations
///
Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string accountName, string privateEndpointConnectionName, PrivateEndpointConnection parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
///
+ /// Updates the properties of an existing private endpoint connection.
+ ///
+ ///
+ /// The name of the resource group that contains the Batch account.
+ ///
+ ///
+ /// The name of the Batch account.
+ ///
+ ///
+ /// The private endpoint connection name. This must be unique within
+ /// the account.
+ ///
+ ///
+ /// PrivateEndpointConnection properties that should be updated.
+ /// Properties that are supplied will be updated, any property not
+ /// supplied will be unchanged.
+ ///
+ ///
+ /// The state (ETag) version of the private endpoint connection to
+ /// update. This value can be omitted or set to "*" to apply the
+ /// operation unconditionally.
+ ///
+ ///
+ /// The headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ ///
+ /// Thrown when the operation returned an invalid status code
+ ///
+ ///
+ /// Thrown when unable to deserialize the response
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string accountName, string privateEndpointConnectionName, PrivateEndpointConnection parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
+ ///
/// Lists all of the private endpoint connections in the specified
/// account.
///
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 5dd517196ed6..b0987e033648 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
@@ -71,7 +71,8 @@ public BatchAccount()
/// account.
/// The active job and job
/// schedule quota for 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))
+ /// 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))
: base(id, name, type, location, tags)
{
AccountEndpoint = accountEndpoint;
@@ -88,6 +89,7 @@ public BatchAccount()
DedicatedCoreQuotaPerVMFamilyEnforced = dedicatedCoreQuotaPerVMFamilyEnforced;
PoolQuota = poolQuota;
ActiveJobAndJobScheduleQuota = activeJobAndJobScheduleQuota;
+ Identity = identity;
CustomInit();
}
@@ -155,6 +157,11 @@ public BatchAccount()
///
/// Gets the encryption configuration for the Batch account.
///
+ ///
+ /// Configures how customer data is encrypted inside the Batch account.
+ /// By default, accounts are encrypted using a Microsoft managed key.
+ /// For additional control, a customer-managed key can be used instead.
+ ///
[JsonProperty(PropertyName = "properties.encryption")]
public EncryptionProperties Encryption { get; private set; }
@@ -217,6 +224,12 @@ public BatchAccount()
[JsonProperty(PropertyName = "properties.activeJobAndJobScheduleQuota")]
public int ActiveJobAndJobScheduleQuota { get; private set; }
+ ///
+ /// Gets or sets the identity of the Batch account.
+ ///
+ [JsonProperty(PropertyName = "identity")]
+ public BatchAccountIdentity Identity { get; set; }
+
///
/// Validate the object.
///
@@ -243,6 +256,10 @@ public virtual void Validate()
{
AutoStorage.Validate();
}
+ if (Identity != null)
+ {
+ Identity.Validate();
+ }
}
}
}
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 2de874ac253e..a32c2bc81efc 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,7 +50,8 @@ public BatchAccountCreateParameters()
/// accessing Azure Batch account.
/// The encryption configuration for 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))
+ /// 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))
{
Location = location;
Tags = tags;
@@ -59,6 +60,7 @@ public BatchAccountCreateParameters()
KeyVaultReference = keyVaultReference;
PublicNetworkAccess = publicNetworkAccess;
Encryption = encryption;
+ Identity = identity;
CustomInit();
}
@@ -121,9 +123,20 @@ public BatchAccountCreateParameters()
///
/// Gets or sets the encryption configuration for the Batch account.
///
+ ///
+ /// Configures how customer data is encrypted inside the Batch account.
+ /// By default, accounts are encrypted using a Microsoft managed key.
+ /// For additional control, a customer-managed key can be used instead.
+ ///
[JsonProperty(PropertyName = "properties.encryption")]
public EncryptionProperties Encryption { get; set; }
+ ///
+ /// Gets or sets the identity of the Batch account.
+ ///
+ [JsonProperty(PropertyName = "identity")]
+ public BatchAccountIdentity Identity { get; set; }
+
///
/// Validate the object.
///
@@ -144,6 +157,10 @@ public virtual void Validate()
{
KeyVaultReference.Validate();
}
+ if (Identity != null)
+ {
+ Identity.Validate();
+ }
}
}
}
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
new file mode 100644
index 000000000000..6db16622608b
--- /dev/null
+++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/BatchAccountIdentity.cs
@@ -0,0 +1,86 @@
+//
+// 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 identity of the Batch account, if configured. This is only used
+ /// when the user specifies 'Microsoft.KeyVault' as their Batch account
+ /// encryption configuration.
+ ///
+ public partial class BatchAccountIdentity
+ {
+ ///
+ /// Initializes a new instance of the BatchAccountIdentity class.
+ ///
+ public BatchAccountIdentity()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the BatchAccountIdentity class.
+ ///
+ /// The type of identity used for the Batch account.
+ /// Possible values include: 'SystemAssigned', 'None'
+ /// The principal id of the Batch account.
+ /// This property will only be provided for a system assigned
+ /// identity.
+ /// The tenant id associated with the Batch
+ /// account. This property will only be provided for a system assigned
+ /// identity.
+ public BatchAccountIdentity(ResourceIdentityType type, string principalId = default(string), string tenantId = default(string))
+ {
+ PrincipalId = principalId;
+ TenantId = tenantId;
+ Type = type;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets the principal id of the Batch account. This property will only
+ /// be provided for a system assigned identity.
+ ///
+ [JsonProperty(PropertyName = "principalId")]
+ public string PrincipalId { get; private set; }
+
+ ///
+ /// Gets the tenant id associated with the Batch account. This property
+ /// will only be provided for a system assigned identity.
+ ///
+ [JsonProperty(PropertyName = "tenantId")]
+ public string TenantId { get; private set; }
+
+ ///
+ /// Gets or sets the type of identity used for the Batch account.
+ /// Possible values include: 'SystemAssigned', 'None'
+ ///
+ [JsonProperty(PropertyName = "type")]
+ public ResourceIdentityType Type { get; set; }
+
+ ///
+ /// Validate the object.
+ ///
+ ///
+ /// Thrown if validation fails
+ ///
+ public virtual void Validate()
+ {
+ }
+ }
+}
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 074e7fb1de41..80214cc96c31 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,11 +42,13 @@ public BatchAccountUpdateParameters()
/// auto-storage account.
/// The encryption configuration for the Batch
/// account.
- public BatchAccountUpdateParameters(IDictionary tags = default(IDictionary), AutoStorageBaseProperties autoStorage = default(AutoStorageBaseProperties), EncryptionProperties encryption = default(EncryptionProperties))
+ /// The identity of the Batch account.
+ public BatchAccountUpdateParameters(IDictionary tags = default(IDictionary), AutoStorageBaseProperties autoStorage = default(AutoStorageBaseProperties), EncryptionProperties encryption = default(EncryptionProperties), BatchAccountIdentity identity = default(BatchAccountIdentity))
{
Tags = tags;
AutoStorage = autoStorage;
Encryption = encryption;
+ Identity = identity;
CustomInit();
}
@@ -70,9 +72,20 @@ public BatchAccountUpdateParameters()
///
/// Gets or sets the encryption configuration for the Batch account.
///
+ ///
+ /// Configures how customer data is encrypted inside the Batch account.
+ /// By default, accounts are encrypted using a Microsoft managed key.
+ /// For additional control, a customer-managed key can be used instead.
+ ///
[JsonProperty(PropertyName = "properties.encryption")]
public EncryptionProperties Encryption { get; set; }
+ ///
+ /// Gets or sets the identity of the Batch account.
+ ///
+ [JsonProperty(PropertyName = "identity")]
+ public BatchAccountIdentity Identity { get; set; }
+
///
/// Validate the object.
///
@@ -85,6 +98,10 @@ public virtual void Validate()
{
AutoStorage.Validate();
}
+ if (Identity != null)
+ {
+ Identity.Validate();
+ }
}
}
}
diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/EncryptionProperties.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/EncryptionProperties.cs
index 9b3c29733b5d..4613da9fe2dd 100644
--- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/EncryptionProperties.cs
+++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/EncryptionProperties.cs
@@ -13,6 +13,11 @@ namespace Microsoft.Azure.Management.Batch.Models
using Newtonsoft.Json;
using System.Linq;
+ ///
+ /// Configures how customer data is encrypted inside the Batch account. By
+ /// default, accounts are encrypted using a Microsoft managed key. For
+ /// additional control, a customer-managed key can be used instead.
+ ///
public partial class EncryptionProperties
{
///
diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/KeySource.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/KeySource.cs
index 840d49d934b0..3ec496323868 100644
--- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/KeySource.cs
+++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/KeySource.cs
@@ -29,7 +29,9 @@ public enum KeySource
MicrosoftBatch,
///
/// The encryption keys used to protect the account data are stored in
- /// an external key vault.
+ /// an external key vault. If this is set then the Batch Account
+ /// identity must be set to `SystemAssigned` and a valid Key Identifier
+ /// must also be supplied under the keyVaultProperties.
///
[EnumMember(Value = "Microsoft.KeyVault")]
MicrosoftKeyVault
diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/KeyVaultProperties.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/KeyVaultProperties.cs
index bf86e5601d62..8d1178c26d32 100644
--- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/KeyVaultProperties.cs
+++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/KeyVaultProperties.cs
@@ -13,6 +13,10 @@ namespace Microsoft.Azure.Management.Batch.Models
using Newtonsoft.Json;
using System.Linq;
+ ///
+ /// KeyVault configuration when using an encryption KeySource of
+ /// Microsoft.KeyVault.
+ ///
public partial class KeyVaultProperties
{
///
@@ -28,7 +32,13 @@ public KeyVaultProperties()
///
/// Full path to the versioned secret.
/// Example
- /// https://mykeyvault.vault.azure.net/keys/testkey/6e34a81fef704045975661e297a4c053
+ /// https://mykeyvault.vault.azure.net/keys/testkey/6e34a81fef704045975661e297a4c053.
+ /// To be usable the following prerequisites must be met:
+ ///
+ /// The Batch Account has a System Assigned identity
+ /// The account identity has been granted Key/Get, Key/Unwrap and
+ /// Key/Wrap permissions
+ /// The KeyVault has soft-delete and purge protection enabled
public KeyVaultProperties(string keyIdentifier = default(string))
{
KeyIdentifier = keyIdentifier;
@@ -42,7 +52,13 @@ public KeyVaultProperties()
///
/// Gets or sets full path to the versioned secret. Example
- /// https://mykeyvault.vault.azure.net/keys/testkey/6e34a81fef704045975661e297a4c053
+ /// https://mykeyvault.vault.azure.net/keys/testkey/6e34a81fef704045975661e297a4c053.
+ /// To be usable the following prerequisites must be met:
+ ///
+ /// The Batch Account has a System Assigned identity
+ /// The account identity has been granted Key/Get, Key/Unwrap and
+ /// Key/Wrap permissions
+ /// The KeyVault has soft-delete and purge protection enabled
///
[JsonProperty(PropertyName = "keyIdentifier")]
public string KeyIdentifier { get; set; }
diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/PrivateEndpointConnectionUpdateHeaders.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/PrivateEndpointConnectionUpdateHeaders.cs
index 5b117e2e9dc7..38f93ded4fc8 100644
--- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/PrivateEndpointConnectionUpdateHeaders.cs
+++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/PrivateEndpointConnectionUpdateHeaders.cs
@@ -31,13 +31,15 @@ public PrivateEndpointConnectionUpdateHeaders()
/// Initializes a new instance of the
/// PrivateEndpointConnectionUpdateHeaders class.
///
- /// The ETag HTTP response header. This is an opaque
- /// string. You can use it to detect whether the resource has changed
- /// between requests. In particular, you can pass the ETag to one of
- /// the If-Match or If-None-Match headers.
- public PrivateEndpointConnectionUpdateHeaders(string eTag = default(string))
+ /// The URL of the resource used to check the
+ /// status of the asynchronous operation.
+ /// Suggested delay to check the status of the
+ /// asynchronous operation. The value is an integer that represents the
+ /// seconds.
+ public PrivateEndpointConnectionUpdateHeaders(string location = default(string), int? retryAfter = default(int?))
{
- ETag = eTag;
+ Location = location;
+ RetryAfter = retryAfter;
CustomInit();
}
@@ -47,13 +49,19 @@ public PrivateEndpointConnectionUpdateHeaders()
partial void CustomInit();
///
- /// Gets or sets the ETag HTTP response header. This is an opaque
- /// string. You can use it to detect whether the resource has changed
- /// between requests. In particular, you can pass the ETag to one of
- /// the If-Match or If-None-Match headers.
+ /// Gets or sets the URL of the resource used to check the status of
+ /// the asynchronous operation.
///
- [JsonProperty(PropertyName = "ETag")]
- public string ETag { get; set; }
+ [JsonProperty(PropertyName = "Location")]
+ public string Location { get; set; }
+
+ ///
+ /// Gets or sets suggested delay to check the status of the
+ /// asynchronous operation. The value is an integer that represents the
+ /// seconds.
+ ///
+ [JsonProperty(PropertyName = "Retry-After")]
+ public int? RetryAfter { get; set; }
}
}
diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/ResourceIdentityType.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/ResourceIdentityType.cs
new file mode 100644
index 000000000000..8fdd728b85f3
--- /dev/null
+++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/Models/ResourceIdentityType.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 Newtonsoft.Json.Converters;
+ using System.Runtime;
+ using System.Runtime.Serialization;
+
+ ///
+ /// Defines values for ResourceIdentityType.
+ ///
+ [JsonConverter(typeof(StringEnumConverter))]
+ public enum ResourceIdentityType
+ {
+ ///
+ /// Batch account has a system assigned identity with it.
+ ///
+ [EnumMember(Value = "SystemAssigned")]
+ SystemAssigned,
+ ///
+ /// Batch account has no identity associated with it. Setting `None` in
+ /// update account will remove existing identities.
+ ///
+ [EnumMember(Value = "None")]
+ None
+ }
+ internal static class ResourceIdentityTypeEnumExtension
+ {
+ internal static string ToSerializedValue(this ResourceIdentityType? value)
+ {
+ return value == null ? null : ((ResourceIdentityType)value).ToSerializedValue();
+ }
+
+ internal static string ToSerializedValue(this ResourceIdentityType value)
+ {
+ switch( value )
+ {
+ case ResourceIdentityType.SystemAssigned:
+ return "SystemAssigned";
+ case ResourceIdentityType.None:
+ return "None";
+ }
+ return null;
+ }
+
+ internal static ResourceIdentityType? ParseResourceIdentityType(this string value)
+ {
+ switch( value )
+ {
+ case "SystemAssigned":
+ return ResourceIdentityType.SystemAssigned;
+ case "None":
+ return ResourceIdentityType.None;
+ }
+ return null;
+ }
+ }
+}
diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/PrivateEndpointConnectionOperations.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/PrivateEndpointConnectionOperations.cs
index a4b5f6fd14a7..82b6b022b292 100644
--- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/PrivateEndpointConnectionOperations.cs
+++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/PrivateEndpointConnectionOperations.cs
@@ -338,17 +338,17 @@ internal PrivateEndpointConnectionOperations(BatchManagementClient client)
}
if (privateEndpointConnectionName != null)
{
- if (privateEndpointConnectionName.Length > 64)
+ if (privateEndpointConnectionName.Length > 101)
{
- throw new ValidationException(ValidationRules.MaxLength, "privateEndpointConnectionName", 64);
+ throw new ValidationException(ValidationRules.MaxLength, "privateEndpointConnectionName", 101);
}
if (privateEndpointConnectionName.Length < 1)
{
throw new ValidationException(ValidationRules.MinLength, "privateEndpointConnectionName", 1);
}
- if (!System.Text.RegularExpressions.Regex.IsMatch(privateEndpointConnectionName, "^[a-zA-Z0-9_-]+$"))
+ if (!System.Text.RegularExpressions.Regex.IsMatch(privateEndpointConnectionName, "^[a-zA-Z0-9_-]+\\.?[a-fA-F0-9-]*$"))
{
- throw new ValidationException(ValidationRules.Pattern, "privateEndpointConnectionName", "^[a-zA-Z0-9_-]+$");
+ throw new ValidationException(ValidationRules.Pattern, "privateEndpointConnectionName", "^[a-zA-Z0-9_-]+\\.?[a-fA-F0-9-]*$");
}
}
if (Client.ApiVersion == null)
@@ -505,6 +505,41 @@ internal PrivateEndpointConnectionOperations(BatchManagementClient client)
return _result;
}
+ ///
+ /// Updates the properties of an existing private endpoint connection.
+ ///
+ ///
+ /// The name of the resource group that contains the Batch account.
+ ///
+ ///
+ /// The name of the Batch account.
+ ///
+ ///
+ /// The private endpoint connection name. This must be unique within the
+ /// account.
+ ///
+ ///
+ /// PrivateEndpointConnection properties that should be updated. Properties
+ /// that are supplied will be updated, any property not supplied will be
+ /// unchanged.
+ ///
+ ///
+ /// The state (ETag) version of the private endpoint connection to update. This
+ /// value can be omitted or set to "*" to apply the operation unconditionally.
+ ///
+ ///
+ /// The headers that will be added to request.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string accountName, string privateEndpointConnectionName, PrivateEndpointConnection parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ {
+ // Send Request
+ AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, accountName, privateEndpointConnectionName, parameters, ifMatch, customHeaders, cancellationToken).ConfigureAwait(false);
+ return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false);
+ }
+
///
/// Updates the properties of an existing private endpoint connection.
///
@@ -548,7 +583,7 @@ internal PrivateEndpointConnectionOperations(BatchManagementClient client)
///
/// A response object containing the response body and response headers.
///
- public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string accountName, string privateEndpointConnectionName, PrivateEndpointConnection parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
+ public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string accountName, string privateEndpointConnectionName, PrivateEndpointConnection parameters, string ifMatch = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
{
if (Client.SubscriptionId == null)
{
@@ -583,17 +618,17 @@ internal PrivateEndpointConnectionOperations(BatchManagementClient client)
}
if (privateEndpointConnectionName != null)
{
- if (privateEndpointConnectionName.Length > 64)
+ if (privateEndpointConnectionName.Length > 101)
{
- throw new ValidationException(ValidationRules.MaxLength, "privateEndpointConnectionName", 64);
+ throw new ValidationException(ValidationRules.MaxLength, "privateEndpointConnectionName", 101);
}
if (privateEndpointConnectionName.Length < 1)
{
throw new ValidationException(ValidationRules.MinLength, "privateEndpointConnectionName", 1);
}
- if (!System.Text.RegularExpressions.Regex.IsMatch(privateEndpointConnectionName, "^[a-zA-Z0-9_-]+$"))
+ if (!System.Text.RegularExpressions.Regex.IsMatch(privateEndpointConnectionName, "^[a-zA-Z0-9_-]+\\.?[a-fA-F0-9-]*$"))
{
- throw new ValidationException(ValidationRules.Pattern, "privateEndpointConnectionName", "^[a-zA-Z0-9_-]+$");
+ throw new ValidationException(ValidationRules.Pattern, "privateEndpointConnectionName", "^[a-zA-Z0-9_-]+\\.?[a-fA-F0-9-]*$");
}
}
if (Client.ApiVersion == null)
@@ -617,7 +652,7 @@ internal PrivateEndpointConnectionOperations(BatchManagementClient client)
tracingParameters.Add("parameters", parameters);
tracingParameters.Add("ifMatch", ifMatch);
tracingParameters.Add("cancellationToken", cancellationToken);
- ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters);
+ ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters);
}
// Construct URL
var _baseUrl = Client.BaseUri.AbsoluteUri;
@@ -703,7 +738,7 @@ internal PrivateEndpointConnectionOperations(BatchManagementClient client)
HttpStatusCode _statusCode = _httpResponse.StatusCode;
cancellationToken.ThrowIfCancellationRequested();
string _responseContent = null;
- if ((int)_statusCode != 200)
+ if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204)
{
var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode));
try
diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/PrivateEndpointConnectionOperationsExtensions.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/PrivateEndpointConnectionOperationsExtensions.cs
index fa1f0f974e1c..c72ccf25bd83 100644
--- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/PrivateEndpointConnectionOperationsExtensions.cs
+++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/PrivateEndpointConnectionOperationsExtensions.cs
@@ -181,6 +181,72 @@ public static PrivateEndpointConnection Get(this IPrivateEndpointConnectionOpera
}
}
+ ///
+ /// Updates the properties of an existing private endpoint connection.
+ ///
+ ///
+ /// 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 private endpoint connection name. This must be unique within the
+ /// account.
+ ///
+ ///
+ /// PrivateEndpointConnection properties that should be updated. Properties
+ /// that are supplied will be updated, any property not supplied will be
+ /// unchanged.
+ ///
+ ///
+ /// The state (ETag) version of the private endpoint connection to update. This
+ /// value can be omitted or set to "*" to apply the operation unconditionally.
+ ///
+ public static PrivateEndpointConnection BeginUpdate(this IPrivateEndpointConnectionOperations operations, string resourceGroupName, string accountName, string privateEndpointConnectionName, PrivateEndpointConnection parameters, string ifMatch = default(string))
+ {
+ return operations.BeginUpdateAsync(resourceGroupName, accountName, privateEndpointConnectionName, parameters, ifMatch).GetAwaiter().GetResult();
+ }
+
+ ///
+ /// Updates the properties of an existing private endpoint connection.
+ ///
+ ///
+ /// 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 private endpoint connection name. This must be unique within the
+ /// account.
+ ///
+ ///
+ /// PrivateEndpointConnection properties that should be updated. Properties
+ /// that are supplied will be updated, any property not supplied will be
+ /// unchanged.
+ ///
+ ///
+ /// The state (ETag) version of the private endpoint connection to update. This
+ /// value can be omitted or set to "*" to apply the operation unconditionally.
+ ///
+ ///
+ /// The cancellation token.
+ ///
+ public static async Task BeginUpdateAsync(this IPrivateEndpointConnectionOperations operations, string resourceGroupName, string accountName, string privateEndpointConnectionName, PrivateEndpointConnection parameters, string ifMatch = default(string), CancellationToken cancellationToken = default(CancellationToken))
+ {
+ using (var _result = await operations.BeginUpdateWithHttpMessagesAsync(resourceGroupName, accountName, privateEndpointConnectionName, parameters, ifMatch, null, cancellationToken).ConfigureAwait(false))
+ {
+ return _result.Body;
+ }
+ }
+
///
/// Lists all of the private endpoint connections in the specified account.
///
diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/PrivateLinkResourceOperations.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/PrivateLinkResourceOperations.cs
index fa5836b5448b..2bf3612c6f80 100644
--- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/PrivateLinkResourceOperations.cs
+++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/PrivateLinkResourceOperations.cs
@@ -337,17 +337,17 @@ internal PrivateLinkResourceOperations(BatchManagementClient client)
}
if (privateLinkResourceName != null)
{
- if (privateLinkResourceName.Length > 64)
+ if (privateLinkResourceName.Length > 101)
{
- throw new ValidationException(ValidationRules.MaxLength, "privateLinkResourceName", 64);
+ throw new ValidationException(ValidationRules.MaxLength, "privateLinkResourceName", 101);
}
if (privateLinkResourceName.Length < 1)
{
throw new ValidationException(ValidationRules.MinLength, "privateLinkResourceName", 1);
}
- if (!System.Text.RegularExpressions.Regex.IsMatch(privateLinkResourceName, "^[a-zA-Z0-9_-]+$"))
+ if (!System.Text.RegularExpressions.Regex.IsMatch(privateLinkResourceName, "^[a-zA-Z0-9_-]+\\.?[a-fA-F0-9-]*$"))
{
- throw new ValidationException(ValidationRules.Pattern, "privateLinkResourceName", "^[a-zA-Z0-9_-]+$");
+ throw new ValidationException(ValidationRules.Pattern, "privateLinkResourceName", "^[a-zA-Z0-9_-]+\\.?[a-fA-F0-9-]*$");
}
}
if (Client.ApiVersion == null)
diff --git a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/SdkInfo_BatchManagement.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/SdkInfo_BatchManagement.cs
index 9bd7d8334342..ca1181fc1e84 100644
--- a/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/SdkInfo_BatchManagement.cs
+++ b/sdk/batch/Microsoft.Azure.Management.Batch/src/Generated/SdkInfo_BatchManagement.cs
@@ -19,17 +19,28 @@ public static IEnumerable> ApiInfo_BatchManagement
{
return new Tuple[]
{
- new Tuple("Batch", "Application", "2020-03-01"),
- new Tuple("Batch", "ApplicationPackage", "2020-03-01"),
- new Tuple("Batch", "BatchAccount", "2020-03-01"),
- new Tuple("Batch", "Certificate", "2020-03-01"),
- new Tuple("Batch", "Location", "2020-03-01"),
- new Tuple("Batch", "Operations", "2020-03-01"),
- new Tuple("Batch", "Pool", "2020-03-01"),
- new Tuple("Batch", "PrivateEndpointConnection", "2020-03-01"),
- new Tuple("Batch", "PrivateLinkResource", "2020-03-01"),
+ new Tuple("Batch", "Application", "2020-05-01"),
+ new Tuple("Batch", "ApplicationPackage", "2020-05-01"),
+ new Tuple("Batch", "BatchAccount", "2020-05-01"),
+ new Tuple("Batch", "Certificate", "2020-05-01"),
+ new Tuple("Batch", "Location", "2020-05-01"),
+ new Tuple("Batch", "Operations", "2020-05-01"),
+ new Tuple("Batch", "Pool", "2020-05-01"),
+ new Tuple("Batch", "PrivateEndpointConnection", "2020-05-01"),
+ new Tuple("Batch", "PrivateLinkResource", "2020-05-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=C:\\Users\\jafreck.REDMOND\\source\\azure-sdk-for-net\\sdk";
+ public static readonly String GithubForkName = "Azure";
+ public static readonly String GithubBranchName = "master";
+ public static readonly String GithubCommidId = "358aade743f3b749da5aee9394f34b55466f3b14";
+ 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 b80571b3ef30..cf04a8e2774f 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
- 10.0.0
+ 11.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/Properties/AssemblyInfo.cs b/sdk/batch/Microsoft.Azure.Management.Batch/src/Properties/AssemblyInfo.cs
index 7759cd3ebbce..2156f3e888af 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("10.0.0.0")]
-[assembly: AssemblyFileVersion("10.0.0.0")]
+[assembly: AssemblyVersion("11.0.0.0")]
+[assembly: AssemblyFileVersion("11.0.0.0")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
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 bec89fa88eea..05cf21bb2bec 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
@@ -23,6 +23,7 @@ public async Task BatchPoolEndToEndAsync()
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);
@@ -34,7 +35,7 @@ public async Task BatchPoolEndToEndAsync()
{
// Create PaaS pool
Pool paasPool = new Pool();
- paasPool.DisplayName = "test_pool";
+ paasPool.DisplayName = displayName;
paasPool.VmSize = "small";
paasPool.DeploymentConfiguration = new DeploymentConfiguration()
{
@@ -80,7 +81,7 @@ public async Task BatchPoolEndToEndAsync()
// Create IaaS pool
Pool iaasPool = new Pool();
- iaasPool.DisplayName = "test_pool";
+ iaasPool.DisplayName = displayName;
iaasPool.VmSize = "Standard_A1";
iaasPool.DeploymentConfiguration = new DeploymentConfiguration()
{
@@ -118,8 +119,8 @@ public async Task BatchPoolEndToEndAsync()
// Verify get operation
var pool = await this.BatchManagementClient.Pool.GetAsync(resourceGroupName, batchAccountName, iaasPoolName);
Assert.Equal("STANDARD_A1", pool.VmSize);
- Assert.Null(pool.DisplayName);
- Assert.Equal(AllocationState.Steady, pool.AllocationState);
+ Assert.Equal(displayName, pool.DisplayName);
+ Assert.Equal(AllocationState.Resizing, pool.AllocationState);
Assert.Equal("batch.node.windows amd64", pool.DeploymentConfiguration.VirtualMachineConfiguration.NodeAgentSkuId);
// Verify stop resize operation
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 983a14d0b138..40e44e1454b2 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,19 +1,19 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/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": [
- "0a67e67f-8b8c-4df3-bbcb-06677e021b48"
+ "9599ea59-dd8d-4e0e-bc99-2505d09fc479"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -23,6 +23,9 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:40:22 GMT"
+ ],
"Pragma": [
"no-cache"
],
@@ -30,13 +33,13 @@
"11999"
],
"x-ms-request-id": [
- "75163d24-6173-43b8-aace-2459e7031a0e"
+ "c012f554-bb6e-4fe9-9800-e1e6b589586d"
],
"x-ms-correlation-request-id": [
- "75163d24-6173-43b8-aace-2459e7031a0e"
+ "c012f554-bb6e-4fe9-9800-e1e6b589586d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T004754Z:75163d24-6173-43b8-aace-2459e7031a0e"
+ "WESTUS:20200529T164023Z:c012f554-bb6e-4fe9-9800-e1e6b589586d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -44,36 +47,33 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Fri, 13 Mar 2020 00:47:54 GMT"
+ "Content-Length": [
+ "4871"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "4557"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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/2915bbd6-1252-405f-8173-6c00428146d9/resourcegroups/azsmnet9790?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5NzkwP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet8777?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4Nzc3P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"East US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f3fd04be-5ceb-4094-83d9-3b866ffe6a93"
+ "78cb90e4-8b1b-48ca-8574-e34eadec3b07"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -89,6 +89,9 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:40:23 GMT"
+ ],
"Pragma": [
"no-cache"
],
@@ -96,13 +99,13 @@
"1199"
],
"x-ms-request-id": [
- "38795856-65d3-4ebd-8e08-19507161df33"
+ "c52091d7-7dca-450a-8fb0-03d7197578c7"
],
"x-ms-correlation-request-id": [
- "38795856-65d3-4ebd-8e08-19507161df33"
+ "c52091d7-7dca-450a-8fb0-03d7197578c7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T004756Z:38795856-65d3-4ebd-8e08-19507161df33"
+ "WESTUS:20200529T164024Z:c52091d7-7dca-450a-8fb0-03d7197578c7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -110,9 +113,6 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Fri, 13 Mar 2020 00:47:55 GMT"
- ],
"Content-Length": [
"175"
],
@@ -123,23 +123,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet9790\",\r\n \"name\": \"azsmnet9790\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet8777\",\r\n \"name\": \"azsmnet8777\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.KeyVault/register?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvcmVnaXN0ZXI/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": [
- "9dd1f2f5-1088-4d17-9cd3-9ada749f249d"
+ "0848074b-bf2a-4ce4-b10e-a3f72f52b51a"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -149,6 +149,9 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:40:25 GMT"
+ ],
"Pragma": [
"no-cache"
],
@@ -156,13 +159,13 @@
"1199"
],
"x-ms-request-id": [
- "cea584bd-d04d-430d-83cb-18ea4234999b"
+ "6130b22d-b340-4360-aa44-343dccabc483"
],
"x-ms-correlation-request-id": [
- "cea584bd-d04d-430d-83cb-18ea4234999b"
+ "6130b22d-b340-4360-aa44-343dccabc483"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T004757Z:cea584bd-d04d-430d-83cb-18ea4234999b"
+ "WESTUS:20200529T164025Z:6130b22d-b340-4360-aa44-343dccabc483"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -170,11 +173,8 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Fri, 13 Mar 2020 00:47:57 GMT"
- ],
"Content-Length": [
- "7496"
+ "7675"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -183,23 +183,23 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"Central US EUAP\",\r\n \"East US 2 EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"Central US EUAP\"\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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourcegroups/azsmnet9790/providers/Microsoft.KeyVault//vaults/azsmnet7342?api-version=2016-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5NzkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvL3ZhdWx0cy9henNtbmV0NzM0Mj9hcGktdmVyc2lvbj0yMDE2LTEwLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet8777/providers/Microsoft.KeyVault//vaults/azsmnet381?api-version=2016-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4Nzc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvL3ZhdWx0cy9henNtbmV0MzgxP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=",
"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\": \"East US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3c9c29bf-38b2-4cbe-970d-4eb2ef6d08a6"
+ "e1858e97-d034-451e-b538-e469635a79bf"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -215,14 +215,20 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:40:28 GMT"
+ ],
"Pragma": [
"no-cache"
],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
"x-ms-keyvault-service-version": [
- "1.1.0.275"
+ "1.1.0.281"
],
"x-ms-request-id": [
- "b84fdb1a-e9e4-4459-8d45-72a8ffbfb111"
+ "6883b6df-f7e7-42f8-9a97-ea106a406140"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -230,9 +236,6 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-AspNet-Version": [
"4.0.30319"
],
@@ -243,16 +246,13 @@
"1198"
],
"x-ms-correlation-request-id": [
- "0f3625c3-ac29-43af-b329-2744e2c801a4"
+ "3561c3a6-c4f1-4eb1-8796-4c162d25ea5d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T004801Z:0f3625c3-ac29-43af-b329-2744e2c801a4"
- ],
- "Date": [
- "Fri, 13 Mar 2020 00:48:00 GMT"
+ "WESTUS:20200529T164028Z:3561c3a6-c4f1-4eb1-8796-4c162d25ea5d"
],
"Content-Length": [
- "678"
+ "675"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -261,17 +261,17 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet9790/providers/Microsoft.KeyVault/vaults/azsmnet7342\",\r\n \"name\": \"azsmnet7342\",\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://azsmnet7342.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet8777/providers/Microsoft.KeyVault/vaults/azsmnet381\",\r\n \"name\": \"azsmnet381\",\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://azsmnet381.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourcegroups/azsmnet9790/providers/Microsoft.KeyVault//vaults/azsmnet7342?api-version=2016-10-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5NzkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvL3ZhdWx0cy9henNtbmV0NzM0Mj9hcGktdmVyc2lvbj0yMDE2LTEwLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet8777/providers/Microsoft.KeyVault//vaults/azsmnet381?api-version=2016-10-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4Nzc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvL3ZhdWx0cy9henNtbmV0MzgxP2FwaS12ZXJzaW9uPTIwMTYtMTAtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -281,14 +281,20 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:40:58 GMT"
+ ],
"Pragma": [
"no-cache"
],
+ "Server": [
+ "Microsoft-IIS/10.0"
+ ],
"x-ms-keyvault-service-version": [
- "1.1.0.275"
+ "1.1.0.281"
],
"x-ms-request-id": [
- "8644bb65-a0e2-4e08-9d16-205df995368f"
+ "33dab453-f185-40d4-a0ef-f5ae88f06568"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -296,9 +302,6 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-IIS/10.0"
- ],
"X-AspNet-Version": [
"4.0.30319"
],
@@ -309,16 +312,13 @@
"11999"
],
"x-ms-correlation-request-id": [
- "5d2cebbc-23b0-49f4-a5a1-ab0cfcaac51b"
+ "ea01cef5-edad-4730-b47e-2bd83c080043"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T004831Z:5d2cebbc-23b0-49f4-a5a1-ab0cfcaac51b"
- ],
- "Date": [
- "Fri, 13 Mar 2020 00:48:31 GMT"
+ "WESTUS:20200529T164059Z:ea01cef5-edad-4730-b47e-2bd83c080043"
],
"Content-Length": [
- "674"
+ "671"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -327,49 +327,55 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet9790/providers/Microsoft.KeyVault/vaults/azsmnet7342\",\r\n \"name\": \"azsmnet7342\",\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://azsmnet7342.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet8777/providers/Microsoft.KeyVault/vaults/azsmnet381\",\r\n \"name\": \"azsmnet381\",\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://azsmnet381.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet9790/providers/Microsoft.Batch/batchAccounts/azsmnet5791?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NzkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTc5MT9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet8777/providers/Microsoft.Batch/batchAccounts/azsmnet796?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4Nzc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0Nzk2P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"poolAllocationMode\": \"UserSubscription\",\r\n \"keyVaultReference\": {\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet9790/providers/Microsoft.KeyVault/vaults/azsmnet7342\",\r\n \"url\": \"https://azsmnet7342.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/azsmnet8777/providers/Microsoft.KeyVault/vaults/azsmnet381\",\r\n \"url\": \"https://azsmnet381.vault.azure.net/\"\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "144848c5-9217-43ae-a44c-ae7b6269e72b"
+ "52d48ca7-0770-4d2d-8c9c-e7e3fe0b90f2"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "332"
+ "330"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:41:18 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet9790/providers/Microsoft.Batch/batchAccounts/azsmnet5791/operationResults/0a64562c-5550-4c29-92d3-8d76f305845e?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet8777/providers/Microsoft.Batch/batchAccounts/azsmnet796/operationResults/2b39831c-2282-4c2e-8f35-662f19ad3be7?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "0a64562c-5550-4c29-92d3-8d76f305845e"
+ "2b39831c-2282-4c2e-8f35-662f19ad3be7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -377,59 +383,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "ce559c83-cee4-4577-8c12-1e80749181f7"
+ "8ff24399-2157-4688-99d0-9f7e99cb1ef1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T004836Z:ce559c83-cee4-4577-8c12-1e80749181f7"
+ "WESTUS:20200529T164118Z:8ff24399-2157-4688-99d0-9f7e99cb1ef1"
],
- "Date": [
- "Fri, 13 Mar 2020 00:48:36 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet9790/providers/Microsoft.Batch/batchAccounts/azsmnet5791/operationResults/0a64562c-5550-4c29-92d3-8d76f305845e?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NzkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTc5MS9vcGVyYXRpb25SZXN1bHRzLzBhNjQ1NjJjLTU1NTAtNGMyOS05MmQzLThkNzZmMzA1ODQ1ZT9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet8777/providers/Microsoft.Batch/batchAccounts/azsmnet796/operationResults/2b39831c-2282-4c2e-8f35-662f19ad3be7?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4Nzc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0Nzk2L29wZXJhdGlvblJlc3VsdHMvMmIzOTgzMWMtMjI4Mi00YzJlLThmMzUtNjYyZjE5YWQzYmU3P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:41:33 GMT"
+ ],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"0x8D7C6E84CD98EB4\""
+ "\"0x8D803EF25DAEC8B\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11999"
],
"x-ms-request-id": [
- "9399fed4-fa55-4da1-aab4-405bde7390f5"
+ "68ea80dd-4db5-4e5b-afe4-431038f4d8ed"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -437,20 +443,14 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "3b8463b9-2b8f-42d5-8e78-f91003175d98"
+ "a5b11ec6-be7d-4f62-9dc8-9801730cb082"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T004852Z:3b8463b9-2b8f-42d5-8e78-f91003175d98"
- ],
- "Date": [
- "Fri, 13 Mar 2020 00:48:51 GMT"
+ "WESTUS:20200529T164134Z:a5b11ec6-be7d-4f62-9dc8-9801730cb082"
],
"Content-Length": [
- "747"
+ "769"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -459,46 +459,52 @@
"-1"
],
"Last-Modified": [
- "Fri, 13 Mar 2020 00:48:52 GMT"
+ "Fri, 29 May 2020 16:41:34 GMT"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet9790/providers/Microsoft.Batch/batchAccounts/azsmnet5791\",\r\n \"name\": \"azsmnet5791\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet5791.pilotprod2.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"UserSubscription\",\r\n \"keyVaultReference\": {\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet9790/providers/Microsoft.KeyVault/vaults/azsmnet7342\",\r\n \"url\": \"https://azsmnet7342.vault.azure.net/\"\r\n },\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet8777/providers/Microsoft.Batch/batchAccounts/azsmnet796\",\r\n \"name\": \"azsmnet796\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet796.pilotprod2.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\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/azsmnet8777/providers/Microsoft.KeyVault/vaults/azsmnet381\",\r\n \"url\": \"https://azsmnet381.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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet9790/providers/Microsoft.Batch/batchAccounts/azsmnet5791?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ5NzkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NTc5MT9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet8777/providers/Microsoft.Batch/batchAccounts/azsmnet796?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ4Nzc3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0Nzk2P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8ce9488d-046d-44ba-ae44-35cc95824359"
+ "e1f3df67-67c3-426a-bb5f-35fcaf1c5057"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:41:33 GMT"
+ ],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"0x8D7C6E843B7108F\""
+ "\"0x8D803EF1EC0F120\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11998"
],
"x-ms-request-id": [
- "1ccab2ce-8a6c-46a4-9f2f-9c1610d271ad"
+ "b35e0bb0-e99e-4182-be7a-1d2f24169593"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -506,20 +512,14 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "89475dbf-36f7-45a2-b2d4-011eb999b90d"
+ "eb563b27-e6bf-4baa-8491-a9da4682df53"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T004852Z:89475dbf-36f7-45a2-b2d4-011eb999b90d"
- ],
- "Date": [
- "Fri, 13 Mar 2020 00:48:51 GMT"
+ "WESTUS:20200529T164134Z:eb563b27-e6bf-4baa-8491-a9da4682df53"
],
"Content-Length": [
- "747"
+ "769"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -528,26 +528,26 @@
"-1"
],
"Last-Modified": [
- "Fri, 13 Mar 2020 00:48:36 GMT"
+ "Fri, 29 May 2020 16:41:22 GMT"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet9790/providers/Microsoft.Batch/batchAccounts/azsmnet5791\",\r\n \"name\": \"azsmnet5791\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet5791.pilotprod2.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\r\n \"poolQuota\": 100,\r\n \"activeJobAndJobScheduleQuota\": 300,\r\n \"poolAllocationMode\": \"UserSubscription\",\r\n \"keyVaultReference\": {\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet9790/providers/Microsoft.KeyVault/vaults/azsmnet7342\",\r\n \"url\": \"https://azsmnet7342.vault.azure.net/\"\r\n },\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.Batch\"\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet8777/providers/Microsoft.Batch/batchAccounts/azsmnet796\",\r\n \"name\": \"azsmnet796\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet796.pilotprod2.eastus.batch.azure.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\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/azsmnet8777/providers/Microsoft.KeyVault/vaults/azsmnet381\",\r\n \"url\": \"https://azsmnet381.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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourcegroups/azsmnet9790?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ5NzkwP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet8777?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ4Nzc3P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a4c0c7d8-9f83-44b8-a465-d8a67efc35d5"
+ "ab00b3a9-002f-4a63-b8ec-6f95a3a2646d"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -557,11 +557,14 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:41:36 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTc5MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODc3Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
],
"Retry-After": [
"15"
@@ -570,13 +573,13 @@
"14999"
],
"x-ms-request-id": [
- "2845a8fc-464a-4092-9ef7-3b022d448f59"
+ "7d13e609-1be3-4a45-933f-2de730a28560"
],
"x-ms-correlation-request-id": [
- "2845a8fc-464a-4092-9ef7-3b022d448f59"
+ "7d13e609-1be3-4a45-933f-2de730a28560"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T004854Z:2845a8fc-464a-4092-9ef7-3b022d448f59"
+ "WESTUS:20200529T164136Z:7d13e609-1be3-4a45-933f-2de730a28560"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -584,27 +587,24 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Fri, 13 Mar 2020 00:48:54 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTc5MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVGM1TUMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODc3Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPRGMzTnkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -614,11 +614,14 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:41:51 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTc5MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODc3Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
],
"Retry-After": [
"15"
@@ -627,13 +630,13 @@
"11998"
],
"x-ms-request-id": [
- "16acd3d9-35f3-4dcf-a56d-39e70cd3da7b"
+ "ce3816bd-de9e-466c-8947-0f8fc3fee057"
],
"x-ms-correlation-request-id": [
- "16acd3d9-35f3-4dcf-a56d-39e70cd3da7b"
+ "ce3816bd-de9e-466c-8947-0f8fc3fee057"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T004909Z:16acd3d9-35f3-4dcf-a56d-39e70cd3da7b"
+ "WESTUS:20200529T164151Z:ce3816bd-de9e-466c-8947-0f8fc3fee057"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -641,27 +644,24 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Fri, 13 Mar 2020 00:49:09 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTc5MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVGM1TUMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODc3Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPRGMzTnkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -671,11 +671,14 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:42:06 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTc5MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODc3Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
],
"Retry-After": [
"15"
@@ -684,13 +687,13 @@
"11997"
],
"x-ms-request-id": [
- "196b28e5-1d38-4a8b-892a-776d9bb36054"
+ "77505678-bfca-4674-8ddb-8a3679313677"
],
"x-ms-correlation-request-id": [
- "196b28e5-1d38-4a8b-892a-776d9bb36054"
+ "77505678-bfca-4674-8ddb-8a3679313677"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T004924Z:196b28e5-1d38-4a8b-892a-776d9bb36054"
+ "WESTUS:20200529T164206Z:77505678-bfca-4674-8ddb-8a3679313677"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -698,27 +701,24 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Fri, 13 Mar 2020 00:49:24 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTc5MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVGM1TUMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODc3Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPRGMzTnkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -728,11 +728,14 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:42:21 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTc5MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODc3Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
],
"Retry-After": [
"15"
@@ -741,13 +744,13 @@
"11996"
],
"x-ms-request-id": [
- "96c642e6-eb36-48ca-b128-f5f1df0ed005"
+ "ca700ec8-c823-4053-8e90-cd858cc1cf6b"
],
"x-ms-correlation-request-id": [
- "96c642e6-eb36-48ca-b128-f5f1df0ed005"
+ "ca700ec8-c823-4053-8e90-cd858cc1cf6b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T004939Z:96c642e6-eb36-48ca-b128-f5f1df0ed005"
+ "WESTUS:20200529T164221Z:ca700ec8-c823-4053-8e90-cd858cc1cf6b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -755,27 +758,24 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Fri, 13 Mar 2020 00:49:39 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTc5MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVGM1TUMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODc3Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPRGMzTnkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -785,11 +785,14 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:42:36 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTc5MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODc3Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
],
"Retry-After": [
"15"
@@ -798,13 +801,13 @@
"11995"
],
"x-ms-request-id": [
- "7b37ffb3-75ee-4c53-8faf-9fabcd3fec6a"
+ "7cb191f6-8ee5-4752-964f-a15ea9a32e49"
],
"x-ms-correlation-request-id": [
- "7b37ffb3-75ee-4c53-8faf-9fabcd3fec6a"
+ "7cb191f6-8ee5-4752-964f-a15ea9a32e49"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T004954Z:7b37ffb3-75ee-4c53-8faf-9fabcd3fec6a"
+ "WESTUS:20200529T164236Z:7cb191f6-8ee5-4752-964f-a15ea9a32e49"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -812,27 +815,24 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Fri, 13 Mar 2020 00:49:54 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTc5MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVGM1TUMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODc3Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPRGMzTnkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -842,11 +842,14 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:42:51 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTc5MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODc3Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
],
"Retry-After": [
"15"
@@ -855,13 +858,13 @@
"11994"
],
"x-ms-request-id": [
- "2cf594c3-62b3-4839-8223-201a4ecee2a2"
+ "3fcf41c7-2ac9-49cf-9e05-d3d2ec74c1f6"
],
"x-ms-correlation-request-id": [
- "2cf594c3-62b3-4839-8223-201a4ecee2a2"
+ "3fcf41c7-2ac9-49cf-9e05-d3d2ec74c1f6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T005010Z:2cf594c3-62b3-4839-8223-201a4ecee2a2"
+ "WESTUS:20200529T164251Z:3fcf41c7-2ac9-49cf-9e05-d3d2ec74c1f6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -869,27 +872,24 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Fri, 13 Mar 2020 00:50:09 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTc5MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVGM1TUMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODc3Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPRGMzTnkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -899,26 +899,23 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:43:06 GMT"
+ ],
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTc5MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
- ],
- "Retry-After": [
- "15"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11993"
],
"x-ms-request-id": [
- "659c8562-f955-4813-affb-ffde04073087"
+ "93559f3b-13d4-4d83-8379-9bc217116046"
],
"x-ms-correlation-request-id": [
- "659c8562-f955-4813-affb-ffde04073087"
+ "93559f3b-13d4-4d83-8379-9bc217116046"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T005025Z:659c8562-f955-4813-affb-ffde04073087"
+ "WESTUS:20200529T164307Z:93559f3b-13d4-4d83-8379-9bc217116046"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -926,78 +923,24 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Fri, 13 Mar 2020 00:50:24 GMT"
- ],
- "Expires": [
- "-1"
- ],
"Content-Length": [
"0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTc5MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVGM1TUMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28325.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
- ],
- "x-ms-request-id": [
- "09c640ad-9e87-45a4-8cc5-806bcfaeafab"
- ],
- "x-ms-correlation-request-id": [
- "09c640ad-9e87-45a4-8cc5-806bcfaeafab"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200313T005040Z:09c640ad-9e87-45a4-8cc5-806bcfaeafab"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Fri, 13 Mar 2020 00:50:39 GMT"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUOTc5MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPVGM1TUMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUODc3Ny1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVPRGMzTnkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -1007,20 +950,23 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:43:06 GMT"
+ ],
"Pragma": [
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "11992"
],
"x-ms-request-id": [
- "0032d8da-3215-40bf-b376-35602fbf73b0"
+ "2360106e-c458-48a6-b657-b70701d85cc5"
],
"x-ms-correlation-request-id": [
- "0032d8da-3215-40bf-b376-35602fbf73b0"
+ "2360106e-c458-48a6-b657-b70701d85cc5"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T005040Z:0032d8da-3215-40bf-b376-35602fbf73b0"
+ "WESTUS:20200529T164307Z:2360106e-c458-48a6-b657-b70701d85cc5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1028,14 +974,11 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Fri, 13 Mar 2020 00:50:39 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
@@ -1044,12 +987,12 @@
],
"Names": {
"BatchAccountCanCreateWithBYOSEnabled": [
- "azsmnet9790",
- "azsmnet5791",
- "azsmnet7342"
+ "azsmnet8777",
+ "azsmnet796",
+ "azsmnet381"
]
},
"Variables": {
- "SubscriptionId": "2915bbd6-1252-405f-8173-6c00428146d9"
+ "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 9c1c7eeca2e9..5190da0ca993 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,19 +1,19 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/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": [
- "00e4faac-aef6-4012-adaf-2d3331cfec0a"
+ "8a7c3c52-086c-4487-9ce4-8b9bc06ad972"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -23,6 +23,9 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:43:07 GMT"
+ ],
"Pragma": [
"no-cache"
],
@@ -30,13 +33,13 @@
"11999"
],
"x-ms-request-id": [
- "54aa749c-b1b8-45c7-a787-59816ec11012"
+ "4d7e4207-cd9b-4e6c-9613-1253c32f9bd7"
],
"x-ms-correlation-request-id": [
- "54aa749c-b1b8-45c7-a787-59816ec11012"
+ "4d7e4207-cd9b-4e6c-9613-1253c32f9bd7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T005041Z:54aa749c-b1b8-45c7-a787-59816ec11012"
+ "WESTUS:20200529T164308Z:4d7e4207-cd9b-4e6c-9613-1253c32f9bd7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -44,36 +47,33 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Fri, 13 Mar 2020 00:50:41 GMT"
+ "Content-Length": [
+ "4871"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "4557"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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/2915bbd6-1252-405f-8173-6c00428146d9/resourcegroups/azsmnet3634?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzNjM0P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet4895?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0ODk1P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"East US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4882faa0-001c-48d8-bebb-3f2b216b8cfe"
+ "bed04fd6-d826-4976-9805-bb8b7af61b1f"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -89,6 +89,9 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:43:09 GMT"
+ ],
"Pragma": [
"no-cache"
],
@@ -96,13 +99,13 @@
"1199"
],
"x-ms-request-id": [
- "73deb94b-1c64-4582-b6ec-06ed091654f4"
+ "b6219a7b-3468-488a-81f8-50cec5b10555"
],
"x-ms-correlation-request-id": [
- "73deb94b-1c64-4582-b6ec-06ed091654f4"
+ "b6219a7b-3468-488a-81f8-50cec5b10555"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T005043Z:73deb94b-1c64-4582-b6ec-06ed091654f4"
+ "WESTUS:20200529T164310Z:b6219a7b-3468-488a-81f8-50cec5b10555"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -110,9 +113,6 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Fri, 13 Mar 2020 00:50:42 GMT"
- ],
"Content-Length": [
"175"
],
@@ -123,26 +123,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet3634\",\r\n \"name\": \"azsmnet3634\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4895\",\r\n \"name\": \"azsmnet4895\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/East%20US/checkNameAvailability?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL0Vhc3QlMjBVUy9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/East%20US/checkNameAvailability?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL0Vhc3QlMjBVUy9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "POST",
- "RequestBody": "{\r\n \"name\": \"azsmnet9659\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}",
+ "RequestBody": "{\r\n \"name\": \"azsmnet6608\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "79108785-3794-4497-8d5e-ce6b25a1e491"
+ "3c95f0c3-3b1d-4e18-a11b-fbf78a021ce6"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -155,14 +155,20 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:43:10 GMT"
+ ],
"Pragma": [
"no-cache"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-request-id": [
- "b2a3fde9-8b0b-490d-b98d-602a081d38c4"
+ "66060f39-51f8-4a5d-a018-225d6793d4ee"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -170,17 +176,11 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "446c1a2c-3a63-4d67-953c-6254472dc7fd"
+ "8152bcf9-43e3-4420-b52b-eb1729d59ca6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T005044Z:446c1a2c-3a63-4d67-953c-6254472dc7fd"
- ],
- "Date": [
- "Fri, 13 Mar 2020 00:50:43 GMT"
+ "WESTUS:20200529T164310Z:8152bcf9-43e3-4420-b52b-eb1729d59ca6"
],
"Content-Length": [
"22"
@@ -196,22 +196,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/East%20US/checkNameAvailability?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL0Vhc3QlMjBVUy9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/East%20US/checkNameAvailability?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL0Vhc3QlMjBVUy9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "POST",
- "RequestBody": "{\r\n \"name\": \"azsmnet9659\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}",
+ "RequestBody": "{\r\n \"name\": \"azsmnet6608\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bce432d3-84fc-41e1-9566-59ce35478291"
+ "d4825f20-98e3-4c7f-8c39-f9c885e567d2"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -224,14 +224,20 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:43:28 GMT"
+ ],
"Pragma": [
"no-cache"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-request-id": [
- "92ba5157-2d79-4dd5-9b86-910c67d6aab6"
+ "696312cb-be97-494b-8b63-6c5a6a82ee78"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -239,17 +245,11 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "5c548f14-fd47-4715-af3d-e7fe2300561d"
+ "db28c77a-755e-4be3-96a5-cecd42f4b33b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T005101Z:5c548f14-fd47-4715-af3d-e7fe2300561d"
- ],
- "Date": [
- "Fri, 13 Mar 2020 00:51:00 GMT"
+ "WESTUS:20200529T164328Z:db28c77a-755e-4be3-96a5-cecd42f4b33b"
],
"Content-Length": [
"110"
@@ -261,26 +261,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"nameAvailable\": false,\r\n \"reason\": \"AlreadyExists\",\r\n \"message\": \"An account named 'azsmnet9659' is already in use.\"\r\n}",
+ "ResponseBody": "{\r\n \"nameAvailable\": false,\r\n \"reason\": \"AlreadyExists\",\r\n \"message\": \"An account named 'azsmnet6608' is already in use.\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet3634/providers/Microsoft.Batch/batchAccounts/azsmnet9659?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTY1OT9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4895/providers/Microsoft.Batch/batchAccounts/azsmnet6608?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NjYwOD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"East US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f5f347bb-1774-45d0-95f0-fe395c11293b"
+ "a2d5b431-9c51-40b1-b664-75f457581f6d"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -293,17 +293,23 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:43:13 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet3634/providers/Microsoft.Batch/batchAccounts/azsmnet9659/operationResults/90053e39-4e8d-4b2d-a049-ea5b38e98d7c?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4895/providers/Microsoft.Batch/batchAccounts/azsmnet6608/operationResults/ed83da3b-31ea-49d2-8e91-97b8096458af?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "90053e39-4e8d-4b2d-a049-ea5b38e98d7c"
+ "ed83da3b-31ea-49d2-8e91-97b8096458af"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -311,59 +317,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "79d66e30-351d-4dc5-8a62-d87c4be42c19"
+ "8b229a09-f2c1-4d9c-ad04-998b29c81e72"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T005046Z:79d66e30-351d-4dc5-8a62-d87c4be42c19"
+ "WESTUS:20200529T164313Z:8b229a09-f2c1-4d9c-ad04-998b29c81e72"
],
- "Date": [
- "Fri, 13 Mar 2020 00:50:45 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet3634/providers/Microsoft.Batch/batchAccounts/azsmnet9659/operationResults/90053e39-4e8d-4b2d-a049-ea5b38e98d7c?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTY1OS9vcGVyYXRpb25SZXN1bHRzLzkwMDUzZTM5LTRlOGQtNGIyZC1hMDQ5LWVhNWIzOGU5OGQ3Yz9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4895/providers/Microsoft.Batch/batchAccounts/azsmnet6608/operationResults/ed83da3b-31ea-49d2-8e91-97b8096458af?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NjYwOC9vcGVyYXRpb25SZXN1bHRzL2VkODNkYTNiLTMxZWEtNDlkMi04ZTkxLTk3YjgwOTY0NThhZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:43:28 GMT"
+ ],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"0x8D7C6E89A0B4387\""
+ "\"0x8D803EF6A1EEF3D\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11999"
],
"x-ms-request-id": [
- "5ae82fd3-9194-4301-aedc-900eff82ad39"
+ "edc2cdba-4aad-4eda-a875-daae3137f2e4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -371,20 +377,14 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "483c9bd8-dfb4-4390-81b4-4c138c77c918"
+ "c796dca1-14d3-4bd8-baa5-f20f727e45b9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T005101Z:483c9bd8-dfb4-4390-81b4-4c138c77c918"
- ],
- "Date": [
- "Fri, 13 Mar 2020 00:51:00 GMT"
+ "WESTUS:20200529T164328Z:c796dca1-14d3-4bd8-baa5-f20f727e45b9"
],
"Content-Length": [
- "2027"
+ "2232"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -393,46 +393,52 @@
"-1"
],
"Last-Modified": [
- "Fri, 13 Mar 2020 00:51:01 GMT"
+ "Fri, 29 May 2020 16:43:28 GMT"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet3634/providers/Microsoft.Batch/batchAccounts/azsmnet9659\",\r\n \"name\": \"azsmnet9659\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet9659.pilotprod2.eastus.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\": \"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 \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4895/providers/Microsoft.Batch/batchAccounts/azsmnet6608\",\r\n \"name\": \"azsmnet6608\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet6608.pilotprod2.eastus.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\": \"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 \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet3634/providers/Microsoft.Batch/batchAccounts/azsmnet9659?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTY1OT9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4895/providers/Microsoft.Batch/batchAccounts/azsmnet6608?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NjYwOD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d969eedb-39cb-45ec-a4b3-ea12fcafe68a"
+ "f8539348-8087-4e34-80c2-3dd7ce9bb644"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:43:28 GMT"
+ ],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"0x8D7C6E890E08B78\""
+ "\"0x8D803EF62EEBF04\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11998"
],
"x-ms-request-id": [
- "55820181-f036-4b3e-a3d3-4fca1faf79d6"
+ "346bee1b-edd0-41e2-bac8-d5822bf48e21"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -440,20 +446,14 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "13786bf6-48f3-4928-a661-f6b64c89fbbb"
+ "f713f50c-adab-4c9f-a3cb-78227d5ab878"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T005101Z:13786bf6-48f3-4928-a661-f6b64c89fbbb"
- ],
- "Date": [
- "Fri, 13 Mar 2020 00:51:01 GMT"
+ "WESTUS:20200529T164328Z:f713f50c-adab-4c9f-a3cb-78227d5ab878"
],
"Content-Length": [
- "2027"
+ "2232"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -462,43 +462,49 @@
"-1"
],
"Last-Modified": [
- "Fri, 13 Mar 2020 00:50:46 GMT"
+ "Fri, 29 May 2020 16:43:16 GMT"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet3634/providers/Microsoft.Batch/batchAccounts/azsmnet9659\",\r\n \"name\": \"azsmnet9659\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet9659.pilotprod2.eastus.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\": \"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 \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4895/providers/Microsoft.Batch/batchAccounts/azsmnet6608\",\r\n \"name\": \"azsmnet6608\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet6608.pilotprod2.eastus.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\": \"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 \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet3634/providers/Microsoft.Batch/batchAccounts/azsmnet9659?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTY1OT9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4895/providers/Microsoft.Batch/batchAccounts/azsmnet6608?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NjYwOD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ae513291-d70f-4606-a084-b80378103906"
+ "5b4f660d-84f3-4696-95b6-c3847a3f6ed9"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:43:45 GMT"
+ ],
"Pragma": [
"no-cache"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11994"
],
"x-ms-request-id": [
- "d243fc27-a22e-4b6f-9a93-75366841012a"
+ "1058b849-6a69-4620-b962-e2cc958a7d92"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -506,17 +512,11 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "c80abdcd-1c85-41b1-9bd9-3924ff3a189c"
+ "8c7908cf-dfc7-425d-9177-f22372821c59"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T005118Z:c80abdcd-1c85-41b1-9bd9-3924ff3a189c"
- ],
- "Date": [
- "Fri, 13 Mar 2020 00:51:18 GMT"
+ "WESTUS:20200529T164345Z:8c7908cf-dfc7-425d-9177-f22372821c59"
],
"Content-Length": [
"193"
@@ -528,40 +528,46 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"AccountNotFound\",\r\n \"message\": \"The specified account does not exist.\\nRequestId:d243fc27-a22e-4b6f-9a93-75366841012a\\nTime:2020-03-13T00:51:18.8958222Z\",\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:1058b849-6a69-4620-b962-e2cc958a7d92\\nTime:2020-05-29T16:43:45.1941368Z\",\r\n \"target\": \"BatchAccount\"\r\n }\r\n}",
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet3634/providers/Microsoft.Batch/batchAccounts/azsmnet9659/listKeys?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTY1OS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4895/providers/Microsoft.Batch/batchAccounts/azsmnet6608/listKeys?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NjYwOC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b4f02364-62c7-4dc4-923a-77561f7f3976"
+ "92055f44-270e-46ff-889d-ffa4c8b1eeb6"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:43:28 GMT"
+ ],
"Pragma": [
"no-cache"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-writes": [
"1197"
],
"x-ms-request-id": [
- "842dbaa5-c980-46cc-ae5c-1125fb38388b"
+ "6b331bd1-42fc-40dd-af65-b759fc296418"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -569,17 +575,11 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "ecd33ca5-f00d-47d6-81ef-4285306cd280"
+ "36845093-fa0c-459a-ae38-382cbc120085"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T005102Z:ecd33ca5-f00d-47d6-81ef-4285306cd280"
- ],
- "Date": [
- "Fri, 13 Mar 2020 00:51:01 GMT"
+ "WESTUS:20200529T164328Z:36845093-fa0c-459a-ae38-382cbc120085"
],
"Content-Length": [
"233"
@@ -591,26 +591,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"accountName\": \"azsmnet9659\",\r\n \"primary\": \"FI3hc6q08Mj6L57NYruqndFQ9Ed7Mg3SFnxc1xKa96pbdMkBbLYuwDZqUlQ3425lu6h389s5T3Cz3SlHYNYdFg==\",\r\n \"secondary\": \"ubFd/++dBHC7d4GCVTaAjO4f4cO8TLm9CRua7X5k1nIqVmDuvCUsUMOXi6Tq0XGlrekWAndo4oncX8RWQaPgbQ==\"\r\n}",
+ "ResponseBody": "{\r\n \"accountName\": \"azsmnet6608\",\r\n \"primary\": \"1Ik++gbzwLhVr1bMB2FNirWrFRw61ydDSJ6bRNfNqETYFttwerYZg2iqRs4kyBUw9rOkVbXsD5+gTMhGwRP5iw==\",\r\n \"secondary\": \"DLwWu7mt4aPA3w0NONX/6R7r8G3LiMy8as0y6DMVwQmNb8qUxlg0DOvRe3Uw3iVKmwBqiaWgYDGI9atrhlowyQ==\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet3634/providers/Microsoft.Batch/batchAccounts/azsmnet9659/regenerateKeys?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTY1OS9yZWdlbmVyYXRlS2V5cz9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4895/providers/Microsoft.Batch/batchAccounts/azsmnet6608/regenerateKeys?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NjYwOC9yZWdlbmVyYXRlS2V5cz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"keyName\": \"Primary\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "05b2a5b0-0554-4b39-9374-517598e2a823"
+ "89938a11-7934-4d8e-9526-1a74c655f69b"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -623,14 +623,20 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:43:29 GMT"
+ ],
"Pragma": [
"no-cache"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-writes": [
"1196"
],
"x-ms-request-id": [
- "6c542c7a-aabb-47dd-bd6f-fe3de46eb2a9"
+ "3e73d75e-ceec-4271-97ea-54980e292cfd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -638,17 +644,11 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "e6016e6a-7433-4122-bbe4-8fe777c8de3e"
+ "b051f2ee-75d9-44dc-81df-49f2855829af"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T005102Z:e6016e6a-7433-4122-bbe4-8fe777c8de3e"
- ],
- "Date": [
- "Fri, 13 Mar 2020 00:51:01 GMT"
+ "WESTUS:20200529T164329Z:b051f2ee-75d9-44dc-81df-49f2855829af"
],
"Content-Length": [
"233"
@@ -660,40 +660,46 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"accountName\": \"azsmnet9659\",\r\n \"primary\": \"pvzKvlrYyOiLrozzsrNe5edHx8yyFYtlMJSOvXrVXNYqFbWcL9vePiDQ5S1EjWgULkZ6S5sI3N78PFGR4f07cg==\",\r\n \"secondary\": \"ubFd/++dBHC7d4GCVTaAjO4f4cO8TLm9CRua7X5k1nIqVmDuvCUsUMOXi6Tq0XGlrekWAndo4oncX8RWQaPgbQ==\"\r\n}",
+ "ResponseBody": "{\r\n \"accountName\": \"azsmnet6608\",\r\n \"primary\": \"na4VfcuClO7pnKhlvlpXCQbeRD+ovrFd8rE3N9N1/L143ncP9fTsDXPQNgD57n7jUsQzryzfXoaOayXhxzGaAQ==\",\r\n \"secondary\": \"DLwWu7mt4aPA3w0NONX/6R7r8G3LiMy8as0y6DMVwQmNb8qUxlg0DOvRe3Uw3iVKmwBqiaWgYDGI9atrhlowyQ==\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet3634/providers/Microsoft.Batch/batchAccounts?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4895/providers/Microsoft.Batch/batchAccounts?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "20511cd8-babd-4d11-bec8-968cad14f6e6"
+ "93c43a9a-7cc3-405c-8330-a4c32414719a"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:43:29 GMT"
+ ],
"Pragma": [
"no-cache"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11997"
],
"x-ms-request-id": [
- "84a7474a-1e4c-4029-926d-3cab717c0f0b"
+ "dd548c45-d850-4544-ae42-33ef2e693380"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -701,20 +707,14 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "579a2fb0-486c-4266-924c-287386cbdea3"
+ "672cb2eb-d1eb-4416-9450-640c5f3578cf"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T005102Z:579a2fb0-486c-4266-924c-287386cbdea3"
- ],
- "Date": [
- "Fri, 13 Mar 2020 00:51:01 GMT"
+ "WESTUS:20200529T164329Z:672cb2eb-d1eb-4416-9450-640c5f3578cf"
],
"Content-Length": [
- "2039"
+ "2244"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -723,43 +723,49 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet3634/providers/Microsoft.Batch/batchAccounts/azsmnet9659\",\r\n \"name\": \"azsmnet9659\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet9659.pilotprod2.eastus.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\": \"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 \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\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 }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4895/providers/Microsoft.Batch/batchAccounts/azsmnet6608\",\r\n \"name\": \"azsmnet6608\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet6608.pilotprod2.eastus.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\": \"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 \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet3634/providers/Microsoft.Batch/batchAccounts/azsmnet9659?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQzNjM0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0OTY1OT9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet4895/providers/Microsoft.Batch/batchAccounts/azsmnet6608?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ0ODk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0NjYwOD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "20750358-5ce3-4723-97f3-21d52828c6c1"
+ "688f9f8a-e5d8-4017-b1a2-9675cd22c136"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:43:29 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet9659-f25138be-3ced-4160-9701-08fc4cb4c072?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet6608-d4d724f5-7911-43b9-ae04-f1cddf550e9e?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "f25138be-3ced-4160-9701-08fc4cb4c072"
+ "d4d724f5-7911-43b9-ae04-f1cddf550e9e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -767,53 +773,53 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-deletes": [
"14999"
],
"x-ms-correlation-request-id": [
- "b80df76b-c3f0-4b1e-aa51-4daa98c3b282"
+ "846ab4b2-c647-40d4-a911-5791d39cfa5a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T005102Z:b80df76b-c3f0-4b1e-aa51-4daa98c3b282"
+ "WESTUS:20200529T164329Z:846ab4b2-c647-40d4-a911-5791d39cfa5a"
],
- "Date": [
- "Fri, 13 Mar 2020 00:51:02 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet9659-f25138be-3ced-4160-9701-08fc4cb4c072?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0OTY1OS1mMjUxMzhiZS0zY2VkLTQxNjAtOTcwMS0wOGZjNGNiNGMwNzI/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet6608-d4d724f5-7911-43b9-ae04-f1cddf550e9e?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NjYwOC1kNGQ3MjRmNS03OTExLTQzYjktYWUwNC1mMWNkZGY1NTBlOWU/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:43:44 GMT"
+ ],
"Pragma": [
"no-cache"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "f5310dc4-fe87-4e17-b5aa-b5e29dcad33d"
+ "29245945-c950-4be1-b159-8b438dd1484d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -821,53 +827,53 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11996"
],
"x-ms-correlation-request-id": [
- "d7d17a50-dd9f-49c4-8870-940860eb0cdf"
+ "a5c65b48-baf2-4122-9702-6b6184cde588"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T005118Z:d7d17a50-dd9f-49c4-8870-940860eb0cdf"
+ "WESTUS:20200529T164344Z:a5c65b48-baf2-4122-9702-6b6184cde588"
],
- "Date": [
- "Fri, 13 Mar 2020 00:51:17 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet9659-f25138be-3ced-4160-9701-08fc4cb4c072?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0OTY1OS1mMjUxMzhiZS0zY2VkLTQxNjAtOTcwMS0wOGZjNGNiNGMwNzI/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet6608-d4d724f5-7911-43b9-ae04-f1cddf550e9e?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0NjYwOC1kNGQ3MjRmNS03OTExLTQzYjktYWUwNC1mMWNkZGY1NTBlOWU/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:43:44 GMT"
+ ],
"Pragma": [
"no-cache"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "3ff6370e-50f1-4c0a-9ef5-313b27fabe69"
+ "260e661c-cb87-45fc-ba38-d27fac695969"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -875,45 +881,39 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11995"
],
"x-ms-correlation-request-id": [
- "6745e7bd-eb35-4006-86de-79db9f1bede0"
+ "9e97bb9f-4f75-4531-b6f4-9ed31e0829fc"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T005118Z:6745e7bd-eb35-4006-86de-79db9f1bede0"
+ "WESTUS:20200529T164345Z:9e97bb9f-4f75-4531-b6f4-9ed31e0829fc"
],
- "Date": [
- "Fri, 13 Mar 2020 00:51:17 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourcegroups/azsmnet3634?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlZ3JvdXBzL2F6c21uZXQzNjM0P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet4895?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ0ODk1P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9ae7607f-e4e1-4662-bb04-b9a3f4c2e493"
+ "d6c53ff8-279d-43df-a1b2-8c2c1d253b8e"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -923,11 +923,14 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:43:45 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzYzNC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDg5NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
],
"Retry-After": [
"15"
@@ -936,13 +939,13 @@
"14999"
],
"x-ms-request-id": [
- "c4f72d28-7659-4e99-8593-d3c4dd3ee028"
+ "aee09ba5-8b70-4f29-b0fe-86de16068e08"
],
"x-ms-correlation-request-id": [
- "c4f72d28-7659-4e99-8593-d3c4dd3ee028"
+ "aee09ba5-8b70-4f29-b0fe-86de16068e08"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T005120Z:c4f72d28-7659-4e99-8593-d3c4dd3ee028"
+ "WESTUS:20200529T164346Z:aee09ba5-8b70-4f29-b0fe-86de16068e08"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -950,27 +953,24 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Fri, 13 Mar 2020 00:51:20 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzYzNC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNell6TkMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDg5NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVORGc1TlMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -980,11 +980,14 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:44:01 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzYzNC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDg5NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
],
"Retry-After": [
"15"
@@ -993,13 +996,13 @@
"11999"
],
"x-ms-request-id": [
- "ae9b7a5b-abc9-4905-965b-1c87317e9d01"
+ "ecf50a57-159a-4d1b-beca-f6ad8b808133"
],
"x-ms-correlation-request-id": [
- "ae9b7a5b-abc9-4905-965b-1c87317e9d01"
+ "ecf50a57-159a-4d1b-beca-f6ad8b808133"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T005135Z:ae9b7a5b-abc9-4905-965b-1c87317e9d01"
+ "WESTUS:20200529T164402Z:ecf50a57-159a-4d1b-beca-f6ad8b808133"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1007,27 +1010,24 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Fri, 13 Mar 2020 00:51:35 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzYzNC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNell6TkMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDg5NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVORGc1TlMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -1037,11 +1037,14 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:44:16 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzYzNC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDg5NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
],
"Retry-After": [
"15"
@@ -1050,13 +1053,13 @@
"11998"
],
"x-ms-request-id": [
- "a58788ba-9f53-471c-8562-d7eac5152ef5"
+ "940f4bbe-0c64-45d1-8c0f-12bc78acf42e"
],
"x-ms-correlation-request-id": [
- "a58788ba-9f53-471c-8562-d7eac5152ef5"
+ "940f4bbe-0c64-45d1-8c0f-12bc78acf42e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T005150Z:a58788ba-9f53-471c-8562-d7eac5152ef5"
+ "WESTUS:20200529T164417Z:940f4bbe-0c64-45d1-8c0f-12bc78acf42e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1064,84 +1067,24 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Fri, 13 Mar 2020 00:51:50 GMT"
- ],
- "Expires": [
- "-1"
- ],
"Content-Length": [
"0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzYzNC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNell6TkMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28325.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzYzNC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
- ],
- "x-ms-request-id": [
- "d3e43d1f-3f6a-4257-81b7-07ebfcf9eb39"
- ],
- "x-ms-correlation-request-id": [
- "d3e43d1f-3f6a-4257-81b7-07ebfcf9eb39"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200313T005206Z:d3e43d1f-3f6a-4257-81b7-07ebfcf9eb39"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Fri, 13 Mar 2020 00:52:05 GMT"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzYzNC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNell6TkMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDg5NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVORGc1TlMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -1151,77 +1094,23 @@
"Cache-Control": [
"no-cache"
],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzYzNC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
- ],
- "x-ms-request-id": [
- "a26beded-11d5-4caa-acbd-4c5217ae5c3f"
- ],
- "x-ms-correlation-request-id": [
- "a26beded-11d5-4caa-acbd-4c5217ae5c3f"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200313T005221Z:a26beded-11d5-4caa-acbd-4c5217ae5c3f"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
"Date": [
- "Fri, 13 Mar 2020 00:52:20 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzYzNC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNell6TkMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28325.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
+ "Fri, 29 May 2020 16:44:31 GMT"
],
"Pragma": [
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11997"
],
"x-ms-request-id": [
- "227d467f-df8d-4408-bc8b-b84417d9e612"
+ "51062712-9f0b-4e06-a344-87918044946f"
],
"x-ms-correlation-request-id": [
- "227d467f-df8d-4408-bc8b-b84417d9e612"
+ "51062712-9f0b-4e06-a344-87918044946f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T005236Z:227d467f-df8d-4408-bc8b-b84417d9e612"
+ "WESTUS:20200529T164432Z:51062712-9f0b-4e06-a344-87918044946f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1229,27 +1118,24 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Fri, 13 Mar 2020 00:52:36 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMzYzNC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNell6TkMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNDg5NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVORGc1TlMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -1259,20 +1145,23 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:44:31 GMT"
+ ],
"Pragma": [
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11996"
],
"x-ms-request-id": [
- "09c22f0c-5b6c-4ccd-8e73-eb52d4f1caec"
+ "d4d3dd06-8894-4489-99f0-e9fd56970740"
],
"x-ms-correlation-request-id": [
- "09c22f0c-5b6c-4ccd-8e73-eb52d4f1caec"
+ "d4d3dd06-8894-4489-99f0-e9fd56970740"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T005236Z:09c22f0c-5b6c-4ccd-8e73-eb52d4f1caec"
+ "WESTUS:20200529T164432Z:d4d3dd06-8894-4489-99f0-e9fd56970740"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1280,14 +1169,11 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Fri, 13 Mar 2020 00:52:36 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
@@ -1296,11 +1182,11 @@
],
"Names": {
"BatchAccountEndToEndAsync": [
- "azsmnet3634",
- "azsmnet9659"
+ "azsmnet4895",
+ "azsmnet6608"
]
},
"Variables": {
- "SubscriptionId": "2915bbd6-1252-405f-8173-6c00428146d9"
+ "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 769bb9b12f77..71436eda0a3e 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,19 +1,19 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/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": [
- "7c4a1599-61e4-4756-856b-4e639e295bbd"
+ "98d25511-36dd-4bfe-aa7e-675abe38f150"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -23,6 +23,9 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:32:38 GMT"
+ ],
"Pragma": [
"no-cache"
],
@@ -30,13 +33,13 @@
"11999"
],
"x-ms-request-id": [
- "a045b263-c8f1-45e3-b95f-ff3f313bef2a"
+ "879a81b6-cb23-4511-9b2a-3788e6bcccbf"
],
"x-ms-correlation-request-id": [
- "a045b263-c8f1-45e3-b95f-ff3f313bef2a"
+ "879a81b6-cb23-4511-9b2a-3788e6bcccbf"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T171556Z:a045b263-c8f1-45e3-b95f-ff3f313bef2a"
+ "WESTUS:20200529T163238Z:879a81b6-cb23-4511-9b2a-3788e6bcccbf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -44,36 +47,33 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Fri, 13 Mar 2020 17:15:55 GMT"
+ "Content-Length": [
+ "4871"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "4761"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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/2915bbd6-1252-405f-8173-6c00428146d9/resourcegroups/azsmnet2396?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyMzk2P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet1881?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQxODgxP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"East US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9521756c-f3ce-49d9-9199-e795ea3e1ede"
+ "47091f67-d6ed-46d9-9e44-ed3cb1576b95"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -89,6 +89,9 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:32:39 GMT"
+ ],
"Pragma": [
"no-cache"
],
@@ -96,13 +99,13 @@
"1199"
],
"x-ms-request-id": [
- "16affcce-e292-4580-b21d-2e896b72bdc0"
+ "9c59a59b-32f2-4184-aa65-e444a167c094"
],
"x-ms-correlation-request-id": [
- "16affcce-e292-4580-b21d-2e896b72bdc0"
+ "9c59a59b-32f2-4184-aa65-e444a167c094"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T171601Z:16affcce-e292-4580-b21d-2e896b72bdc0"
+ "WESTUS:20200529T163239Z:9c59a59b-32f2-4184-aa65-e444a167c094"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -110,9 +113,6 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Fri, 13 Mar 2020 17:16:01 GMT"
- ],
"Content-Length": [
"175"
],
@@ -123,26 +123,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet2396\",\r\n \"name\": \"azsmnet2396\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881\",\r\n \"name\": \"azsmnet1881\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet2396/providers/Microsoft.Batch/batchAccounts/azsmnet213?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjEzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODE0Nz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"East US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9befb679-13aa-455e-81cf-97e865f6a703"
+ "2aa8e864-27b3-4d21-9bf9-74ff4d599f0f"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -155,17 +155,23 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:32:42 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet2396/providers/Microsoft.Batch/batchAccounts/azsmnet213/operationResults/ce152590-4106-462d-926a-6664a747f432?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/operationResults/00377671-2a00-4a90-ae64-5fefe4c6ac3a?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "ce152590-4106-462d-926a-6664a747f432"
+ "00377671-2a00-4a90-ae64-5fefe4c6ac3a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -173,59 +179,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "64bcba15-d0ee-4d88-b16b-cf42fa95a14d"
+ "ba3a103d-9791-481c-9c2a-a088fd19f7f5"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T171606Z:64bcba15-d0ee-4d88-b16b-cf42fa95a14d"
+ "WESTUS:20200529T163243Z:ba3a103d-9791-481c-9c2a-a088fd19f7f5"
],
- "Date": [
- "Fri, 13 Mar 2020 17:16:06 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet2396/providers/Microsoft.Batch/batchAccounts/azsmnet213/operationResults/ce152590-4106-462d-926a-6664a747f432?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjEzL29wZXJhdGlvblJlc3VsdHMvY2UxNTI1OTAtNDEwNi00NjJkLTkyNmEtNjY2NGE3NDdmNDMyP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/operationResults/00377671-2a00-4a90-ae64-5fefe4c6ac3a?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODE0Ny9vcGVyYXRpb25SZXN1bHRzLzAwMzc3NjcxLTJhMDAtNGE5MC1hZTY0LTVmZWZlNGM2YWMzYT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:32:57 GMT"
+ ],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"0x8D7C772409D74FB\""
+ "\"0x8D803EDF2846B12\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11999"
],
"x-ms-request-id": [
- "39d85b73-5880-44b9-9067-b885d65fefdf"
+ "454c1c86-b741-4415-87db-9d4019a668c8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -233,20 +239,14 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "ec320bf1-8460-41c2-a08a-f5c6fe4ddace"
+ "a1f80306-e86a-4998-89a8-afdf13b3affc"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T171622Z:ec320bf1-8460-41c2-a08a-f5c6fe4ddace"
- ],
- "Date": [
- "Fri, 13 Mar 2020 17:16:21 GMT"
+ "WESTUS:20200529T163258Z:a1f80306-e86a-4998-89a8-afdf13b3affc"
],
"Content-Length": [
- "2024"
+ "2232"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -255,29 +255,29 @@
"-1"
],
"Last-Modified": [
- "Fri, 13 Mar 2020 17:16:22 GMT"
+ "Fri, 29 May 2020 16:32:58 GMT"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet2396/providers/Microsoft.Batch/batchAccounts/azsmnet213\",\r\n \"name\": \"azsmnet213\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet213.pilotprod2.eastus.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\": \"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 \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147\",\r\n \"name\": \"azsmnet8147\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet8147.pilotprod2.eastus.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\": \"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 \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet2396/providers/Microsoft.Batch/batchAccounts/azsmnet213/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjEzL2NlcnRpZmljYXRlcy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjc/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODE0Ny9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
"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": [
- "18352f9a-2c5f-47e6-95b9-7c867c71c426"
+ "eaeae8dd-2ab9-42df-acb0-6a934c55d821"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -290,17 +290,23 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:32:58 GMT"
+ ],
"Pragma": [
"no-cache"
],
"ETag": [
- "W/\"0x8D7C77243FE4AB7\""
+ "W/\"0x8D803EDF2B4E0AE\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-request-id": [
- "be422511-2919-4523-a11a-39e3f67fbe49"
+ "ed5c2d8a-0b2a-4068-b787-7334100ee498"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -308,20 +314,14 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "16d87330-7ecf-4376-a209-2481dc739dc6"
+ "ce9a387a-46d8-4b06-8456-15e6560b0caf"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T171627Z:16d87330-7ecf-4376-a209-2481dc739dc6"
- ],
- "Date": [
- "Fri, 13 Mar 2020 17:16:27 GMT"
+ "WESTUS:20200529T163258Z:ce9a387a-46d8-4b06-8456-15e6560b0caf"
],
"Content-Length": [
- "1145"
+ "1146"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -330,43 +330,49 @@
"-1"
],
"Last-Modified": [
- "Fri, 13 Mar 2020 17:16:27 GMT"
+ "Fri, 29 May 2020 16:32:58 GMT"
]
},
- "ResponseBody": "{\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet2396/providers/Microsoft.Batch/batchAccounts/azsmnet213/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D7C77243FE4AB7\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-03-13T17:16:27.7129033Z\",\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/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D803EDF2B4E0AE\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-05-29T16:32:58.6934881Z\",\r\n \"format\": \"Pfx\",\r\n \"publicData\": \"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet2396/providers/Microsoft.Batch/batchAccounts/azsmnet213/certificates?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjEzL2NlcnRpZmljYXRlcz9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificates?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODE0Ny9jZXJ0aWZpY2F0ZXM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c28e1c0f-84ac-4674-82bc-ac621c66b910"
+ "ce6465c5-e78c-4ab1-9b4c-83b7aa29cbf0"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:32:58 GMT"
+ ],
"Pragma": [
"no-cache"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11998"
],
"x-ms-request-id": [
- "8d57c3ac-69f4-4558-8f58-5881f62653d7"
+ "cd41d75d-8f8d-4793-a5a9-ea9c7eabd74e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -374,20 +380,14 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "8e20f2da-5630-40ad-b963-2b0719c470f2"
+ "b8725ee0-d443-4adf-bc3e-fb91c086138d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T171631Z:8e20f2da-5630-40ad-b963-2b0719c470f2"
- ],
- "Date": [
- "Fri, 13 Mar 2020 17:16:30 GMT"
+ "WESTUS:20200529T163259Z:b8725ee0-d443-4adf-bc3e-fb91c086138d"
],
"Content-Length": [
- "1157"
+ "1158"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -396,43 +396,49 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet2396/providers/Microsoft.Batch/batchAccounts/azsmnet213/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D7C77243FE4AB7\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-03-13T17:16:27.7129033Z\",\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/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D803EDF2B4E0AE\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-05-29T16:32:58.6934881Z\",\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/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet2396/providers/Microsoft.Batch/batchAccounts/azsmnet213/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjEzL2NlcnRpZmljYXRlcy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjc/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODE0Ny9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b36901db-62c2-4404-84b3-1ba4b49571be"
+ "6b943a25-65f4-4834-86ad-d0501721409b"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:32:58 GMT"
+ ],
"Pragma": [
"no-cache"
],
"ETag": [
- "W/\"0x8D7C77243FE4AB7\""
+ "W/\"0x8D803EDF2B4E0AE\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11997"
],
"x-ms-request-id": [
- "1f3944ce-e868-4d1c-a508-e3e41580c2cb"
+ "71b88a9e-95b4-4734-9a86-db218cef334f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -440,20 +446,14 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "36cbe3cd-e878-4858-9b12-91bbbcdecdd6"
+ "8630dc97-704a-4e48-b88b-55d5bca1a0c1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T171633Z:36cbe3cd-e878-4858-9b12-91bbbcdecdd6"
- ],
- "Date": [
- "Fri, 13 Mar 2020 17:16:32 GMT"
+ "WESTUS:20200529T163259Z:8630dc97-704a-4e48-b88b-55d5bca1a0c1"
],
"Content-Length": [
- "1145"
+ "1146"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -462,43 +462,49 @@
"-1"
],
"Last-Modified": [
- "Fri, 13 Mar 2020 17:16:27 GMT"
+ "Fri, 29 May 2020 16:32:58 GMT"
]
},
- "ResponseBody": "{\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet2396/providers/Microsoft.Batch/batchAccounts/azsmnet213/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D7C77243FE4AB7\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-03-13T17:16:27.7129033Z\",\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/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D803EDF2B4E0AE\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-05-29T16:32:58.6934881Z\",\r\n \"format\": \"Pfx\",\r\n \"publicData\": \"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet2396/providers/Microsoft.Batch/batchAccounts/azsmnet213/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjEzL2NlcnRpZmljYXRlcy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjc/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODE0Ny9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fe8f2608-3f1b-40bf-b674-b3494df65cdf"
+ "94c68dcd-da37-4b85-9618-38ddf231e911"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:34:15 GMT"
+ ],
"Pragma": [
"no-cache"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11990"
],
"x-ms-request-id": [
- "e3f1b343-47c6-4205-aba8-b4f5cf5aca63"
+ "83910c29-d8cd-4ab4-b42e-264c67a07b4d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -506,17 +512,11 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "2a545cc6-8145-4fbc-88bf-b9aed838510e"
+ "52262839-7ec1-4e21-b76c-95aaf123f19f"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T171802Z:2a545cc6-8145-4fbc-88bf-b9aed838510e"
- ],
- "Date": [
- "Fri, 13 Mar 2020 17:18:02 GMT"
+ "WESTUS:20200529T163416Z:52262839-7ec1-4e21-b76c-95aaf123f19f"
],
"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:e3f1b343-47c6-4205-aba8-b4f5cf5aca63\\nTime:2020-03-13T17:18:02.8932502Z\",\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:83910c29-d8cd-4ab4-b42e-264c67a07b4d\\nTime:2020-05-29T16:34:16.0524810Z\",\r\n \"target\": \"BatchAccount\"\r\n }\r\n}",
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet2396/providers/Microsoft.Batch/batchAccounts/azsmnet213/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjEzL2NlcnRpZmljYXRlcy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjc/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODE0Ny9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
"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": [
- "fc87ce41-01e6-4f21-a21f-05f39f423f1b"
+ "3d183212-3856-4e87-8757-15d846f9ce92"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -560,17 +560,23 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:32:58 GMT"
+ ],
"Pragma": [
"no-cache"
],
"ETag": [
- "W/\"0x8D7C77243FE4AB7\""
+ "W/\"0x8D803EDF2B4E0AE\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1197"
],
"x-ms-request-id": [
- "87e4bb15-7896-400e-8436-5c16a49374b9"
+ "b16287d9-bb53-4550-9824-6d999b315ad6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -578,20 +584,14 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "893be99c-a79b-4319-a592-4a3627dbccd1"
+ "ec3cc840-2cbe-44e2-b1c2-f9caadfb3e93"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T171633Z:893be99c-a79b-4319-a592-4a3627dbccd1"
- ],
- "Date": [
- "Fri, 13 Mar 2020 17:16:33 GMT"
+ "WESTUS:20200529T163259Z:ec3cc840-2cbe-44e2-b1c2-f9caadfb3e93"
],
"Content-Length": [
- "1145"
+ "1146"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -600,46 +600,52 @@
"-1"
],
"Last-Modified": [
- "Fri, 13 Mar 2020 17:16:27 GMT"
+ "Fri, 29 May 2020 16:32:58 GMT"
]
},
- "ResponseBody": "{\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet2396/providers/Microsoft.Batch/batchAccounts/azsmnet213/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D7C77243FE4AB7\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-03-13T17:16:27.7129033Z\",\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/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D803EDF2B4E0AE\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-05-29T16:32:58.6934881Z\",\r\n \"format\": \"Pfx\",\r\n \"publicData\": \"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet2396/providers/Microsoft.Batch/batchAccounts/azsmnet213/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7/cancelDelete?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjEzL2NlcnRpZmljYXRlcy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjcvY2FuY2VsRGVsZXRlP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7/cancelDelete?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODE0Ny9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3L2NhbmNlbERlbGV0ZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "31672218-7c67-42b5-8cc2-58e56a041d46"
+ "8f947a2c-d387-4894-9a8e-544a341ae704"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:32:58 GMT"
+ ],
"Pragma": [
"no-cache"
],
"ETag": [
- "W/\"0x8D7C77243FE4AB7\""
+ "W/\"0x8D803EDF2B4E0AE\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-request-id": [
- "28db5139-e8a2-4041-91cc-21d1256381b5"
+ "5b1f5248-30b4-4e59-a261-56a4649a94a1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -647,20 +653,14 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "04a8d49e-a69c-4d60-9d1e-15446bf3bbcf"
+ "9607f424-4e7e-4a82-9884-b370a8aebacd"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T171635Z:04a8d49e-a69c-4d60-9d1e-15446bf3bbcf"
- ],
- "Date": [
- "Fri, 13 Mar 2020 17:16:35 GMT"
+ "WESTUS:20200529T163259Z:9607f424-4e7e-4a82-9884-b370a8aebacd"
],
"Content-Length": [
- "1145"
+ "1146"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -669,46 +669,52 @@
"-1"
],
"Last-Modified": [
- "Fri, 13 Mar 2020 17:16:27 GMT"
+ "Fri, 29 May 2020 16:32:58 GMT"
]
},
- "ResponseBody": "{\r\n \"name\": \"sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet2396/providers/Microsoft.Batch/batchAccounts/azsmnet213/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D7C77243FE4AB7\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-03-13T17:16:27.7129033Z\",\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/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/certificates\",\r\n \"etag\": \"W/\\\"0x8D803EDF2B4E0AE\\\"\",\r\n \"properties\": {\r\n \"thumbprintAlgorithm\": \"sha1\",\r\n \"thumbprint\": \"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-05-29T16:32:58.6934881Z\",\r\n \"format\": \"Pfx\",\r\n \"publicData\": \"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet2396/providers/Microsoft.Batch/batchAccounts/azsmnet213/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjEzL2NlcnRpZmljYXRlcy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjc/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODE0Ny9jZXJ0aWZpY2F0ZXMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "07ea08bb-a3eb-4dde-a40a-703b1b35b3b3"
+ "e73d4395-703a-41fe-85e3-280a2fcc3550"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:32:59 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet2396/providers/Microsoft.Batch/batchAccounts/azsmnet213/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8D7C7724A97B194?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8D803EDF363CD74?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "7564eb5e-89e0-4841-89ff-156d956d3d68"
+ "de9bf041-4f80-42fa-9810-002ae83b942f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -716,59 +722,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-deletes": [
"14999"
],
"x-ms-correlation-request-id": [
- "ee757a22-27a5-4efc-9372-6a0a0c9b334a"
+ "ecb2d85c-1327-4827-b591-790c0f23e4ae"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T171638Z:ee757a22-27a5-4efc-9372-6a0a0c9b334a"
+ "WESTUS:20200529T163300Z:ecb2d85c-1327-4827-b591-790c0f23e4ae"
],
- "Date": [
- "Fri, 13 Mar 2020 17:16:38 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet2396/providers/Microsoft.Batch/batchAccounts/azsmnet213/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8D7C7724A97B194?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjEzL2NlcnRpZmljYXRlT3BlcmF0aW9uUmVzdWx0cy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjctOEQ3Qzc3MjRBOTdCMTk0P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8D803EDF363CD74?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODE0Ny9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThEODAzRURGMzYzQ0Q3ND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:33:14 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet2396/providers/Microsoft.Batch/batchAccounts/azsmnet213/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d7c7724a97b194?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d803edf363cd74?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "c9584013-8c3b-4346-b833-6555be50d95a"
+ "f0cd4a26-0d3c-4e9f-8267-162a013d6761"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -776,59 +782,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11996"
],
"x-ms-correlation-request-id": [
- "bdf3256f-bc07-436f-b05f-ca63d248541f"
+ "32a064a4-fa87-4b9d-a907-52dc94a76046"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T171654Z:bdf3256f-bc07-436f-b05f-ca63d248541f"
+ "WESTUS:20200529T163315Z:32a064a4-fa87-4b9d-a907-52dc94a76046"
],
- "Date": [
- "Fri, 13 Mar 2020 17:16:53 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet2396/providers/Microsoft.Batch/batchAccounts/azsmnet213/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d7c7724a97b194?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjEzL2NlcnRpZmljYXRlT3BlcmF0aW9uUmVzdWx0cy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjctOGQ3Yzc3MjRhOTdiMTk0P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d803edf363cd74?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODE0Ny9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThkODAzZWRmMzYzY2Q3ND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:33:30 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet2396/providers/Microsoft.Batch/batchAccounts/azsmnet213/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d7c7724a97b194?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d803edf363cd74?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "ac0493b0-0ae4-459c-bb89-4d2310055e76"
+ "f07c98c4-f5fe-4b5b-b2fe-ea0a66fd4458"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -836,59 +842,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11995"
],
"x-ms-correlation-request-id": [
- "9475e537-7c13-4b8d-9dd2-b9348aaf82a1"
+ "8e2cc65d-b921-4bf4-a717-1ff1584afd2c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T171709Z:9475e537-7c13-4b8d-9dd2-b9348aaf82a1"
+ "WESTUS:20200529T163330Z:8e2cc65d-b921-4bf4-a717-1ff1584afd2c"
],
- "Date": [
- "Fri, 13 Mar 2020 17:17:08 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet2396/providers/Microsoft.Batch/batchAccounts/azsmnet213/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d7c7724a97b194?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjEzL2NlcnRpZmljYXRlT3BlcmF0aW9uUmVzdWx0cy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjctOGQ3Yzc3MjRhOTdiMTk0P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d803edf363cd74?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODE0Ny9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThkODAzZWRmMzYzY2Q3ND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:33:45 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet2396/providers/Microsoft.Batch/batchAccounts/azsmnet213/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d7c7724a97b194?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d803edf363cd74?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "72bcd4ce-c486-4ca7-b3a7-852e4ea3b22d"
+ "f265089f-c393-4073-80db-a77241f98b2c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -899,56 +905,56 @@
"x-ms-ratelimit-remaining-subscription-reads": [
"11994"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "a6b820ea-b700-407a-b31d-99f693e21670"
+ "ce39435b-3b30-4ca9-a623-57f67a2b4771"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T171724Z:a6b820ea-b700-407a-b31d-99f693e21670"
+ "WESTUS:20200529T163345Z:ce39435b-3b30-4ca9-a623-57f67a2b4771"
],
- "Date": [
- "Fri, 13 Mar 2020 17:17:23 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet2396/providers/Microsoft.Batch/batchAccounts/azsmnet213/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d7c7724a97b194?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjEzL2NlcnRpZmljYXRlT3BlcmF0aW9uUmVzdWx0cy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjctOGQ3Yzc3MjRhOTdiMTk0P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d803edf363cd74?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODE0Ny9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThkODAzZWRmMzYzY2Q3ND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:34:00 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet2396/providers/Microsoft.Batch/batchAccounts/azsmnet213/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d7c7724a97b194?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d803edf363cd74?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "9592d96c-d40e-4fde-863e-ea9a438ba46f"
+ "72803892-2d27-4cf9-baad-e5a014da58f0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -956,53 +962,53 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11993"
],
"x-ms-correlation-request-id": [
- "44737db6-68ec-4bc2-af9f-6bbe7d41a3da"
+ "ad74c6ef-c7af-45fe-a81a-0f5fdfbcb955"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T171740Z:44737db6-68ec-4bc2-af9f-6bbe7d41a3da"
+ "WESTUS:20200529T163400Z:ad74c6ef-c7af-45fe-a81a-0f5fdfbcb955"
],
- "Date": [
- "Fri, 13 Mar 2020 17:17:39 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet2396/providers/Microsoft.Batch/batchAccounts/azsmnet213/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d7c7724a97b194?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjEzL2NlcnRpZmljYXRlT3BlcmF0aW9uUmVzdWx0cy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjctOGQ3Yzc3MjRhOTdiMTk0P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d803edf363cd74?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODE0Ny9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThkODAzZWRmMzYzY2Q3ND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:34:15 GMT"
+ ],
"Pragma": [
"no-cache"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "b00b7c07-ebc5-4ea6-8c84-2275352772b6"
+ "456cbf10-50be-4003-976c-4b83e2fcffdb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1010,53 +1016,53 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11992"
],
"x-ms-correlation-request-id": [
- "279d24b8-129b-4512-9b79-7f489023b19d"
+ "624bea91-2620-4bd7-8dbf-f53f488e4918"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T171755Z:279d24b8-129b-4512-9b79-7f489023b19d"
+ "WESTUS:20200529T163415Z:624bea91-2620-4bd7-8dbf-f53f488e4918"
],
- "Date": [
- "Fri, 13 Mar 2020 17:17:55 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet2396/providers/Microsoft.Batch/batchAccounts/azsmnet213/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d7c7724a97b194?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjEzL2NlcnRpZmljYXRlT3BlcmF0aW9uUmVzdWx0cy9zaGExLWNmZjJhYjYzYzhjOTU1YWFmNzE5ODllZmE2NDFiOTA2NTU4ZDlmYjctOGQ3Yzc3MjRhOTdiMTk0P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d803edf363cd74?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODE0Ny9jZXJ0aWZpY2F0ZU9wZXJhdGlvblJlc3VsdHMvc2hhMS1jZmYyYWI2M2M4Yzk1NWFhZjcxOTg5ZWZhNjQxYjkwNjU1OGQ5ZmI3LThkODAzZWRmMzYzY2Q3ND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:34:15 GMT"
+ ],
"Pragma": [
"no-cache"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "758d0f0c-fefe-4226-a2e1-0cd73cf29f08"
+ "a363ae77-8ee1-48b7-9e74-0ec0f0d6f9fb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1064,65 +1070,65 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11991"
],
"x-ms-correlation-request-id": [
- "3318f786-9ce2-43e3-ae13-54762eb3b55c"
+ "9d3548ad-f6fe-48fa-aff4-b3e8f14a2902"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T171756Z:3318f786-9ce2-43e3-ae13-54762eb3b55c"
+ "WESTUS:20200529T163415Z:9d3548ad-f6fe-48fa-aff4-b3e8f14a2902"
],
- "Date": [
- "Fri, 13 Mar 2020 17:17:55 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet2396/providers/Microsoft.Batch/batchAccounts/azsmnet213?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQyMzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MjEzP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet1881/providers/Microsoft.Batch/batchAccounts/azsmnet8147?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQxODgxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODE0Nz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a02a096b-4874-4f21-ac4d-c76b73715be3"
+ "fb54d81e-376e-4a4e-b72d-3f1a852fa320"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:34:15 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "3b680cf7-3166-49b6-b9b5-6ae45ac6e74d"
+ "607838ba-6f55-408b-a406-33f307226a0d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1130,59 +1136,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-deletes": [
"14998"
],
"x-ms-correlation-request-id": [
- "354f1987-7baf-4534-ab87-c6d5a00142d2"
+ "0bbb5177-5c6c-449f-844e-94c6e9c43547"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T171805Z:354f1987-7baf-4534-ab87-c6d5a00142d2"
+ "WESTUS:20200529T163416Z:0bbb5177-5c6c-449f-844e-94c6e9c43547"
],
- "Date": [
- "Fri, 13 Mar 2020 17:18:04 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjEzLTNiNjgwY2Y3LTMxNjYtNDliNi1iOWI1LTZhZTQ1YWM2ZTc0ZD9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:34:30 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "2f25147e-66dd-4359-8d12-c39cd99dd0ab"
+ "33074362-3ebd-4e4c-bb41-b1f654810729"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1190,59 +1196,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11989"
],
"x-ms-correlation-request-id": [
- "ebe1753d-1024-4c90-9382-59a0917bb0b5"
+ "93314f0e-dd6e-42a4-8ea6-0845e1324870"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T171820Z:ebe1753d-1024-4c90-9382-59a0917bb0b5"
+ "WESTUS:20200529T163431Z:93314f0e-dd6e-42a4-8ea6-0845e1324870"
],
- "Date": [
- "Fri, 13 Mar 2020 17:18:19 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjEzLTNiNjgwY2Y3LTMxNjYtNDliNi1iOWI1LTZhZTQ1YWM2ZTc0ZD9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:34:45 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "6eeda2c1-83ec-47ad-aff6-9ebecbf22f10"
+ "0c63664d-36c9-4fbb-a725-69d187b3738a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1250,59 +1256,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11988"
],
"x-ms-correlation-request-id": [
- "9e6f8fe6-6bfc-4fc0-9499-31a97355ef20"
+ "b177f3a5-5276-4531-982d-0d6149195de5"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T171835Z:9e6f8fe6-6bfc-4fc0-9499-31a97355ef20"
+ "WESTUS:20200529T163446Z:b177f3a5-5276-4531-982d-0d6149195de5"
],
- "Date": [
- "Fri, 13 Mar 2020 17:18:34 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjEzLTNiNjgwY2Y3LTMxNjYtNDliNi1iOWI1LTZhZTQ1YWM2ZTc0ZD9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:35:00 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "22ebe497-7d81-4169-9b2c-024fc22e766c"
+ "22e42950-b542-4f9f-9480-f209ac08c7f1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1313,56 +1319,56 @@
"x-ms-ratelimit-remaining-subscription-reads": [
"11987"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "3144599d-b141-4160-a573-e26d3a084d8f"
+ "7b312356-d215-4c8f-abd9-cd77b677f336"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T171850Z:3144599d-b141-4160-a573-e26d3a084d8f"
+ "WESTUS:20200529T163501Z:7b312356-d215-4c8f-abd9-cd77b677f336"
],
- "Date": [
- "Fri, 13 Mar 2020 17:18:50 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjEzLTNiNjgwY2Y3LTMxNjYtNDliNi1iOWI1LTZhZTQ1YWM2ZTc0ZD9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:35:16 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "09d1fbb5-2d98-4ac0-be1c-bfbc8418c9b5"
+ "6919986a-10c7-40c6-b3b3-983f3d177be6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1370,59 +1376,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11986"
],
"x-ms-correlation-request-id": [
- "bb18119f-c968-492b-a9cb-8626fce72f21"
+ "638f7552-7648-4eb2-87bc-a5373db27a94"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T171906Z:bb18119f-c968-492b-a9cb-8626fce72f21"
+ "WESTUS:20200529T163516Z:638f7552-7648-4eb2-87bc-a5373db27a94"
],
- "Date": [
- "Fri, 13 Mar 2020 17:19:06 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjEzLTNiNjgwY2Y3LTMxNjYtNDliNi1iOWI1LTZhZTQ1YWM2ZTc0ZD9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:35:31 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "4ecfb061-bd1a-4261-8bf7-1886fb297486"
+ "e443083e-e278-42a8-a793-a18c882cf121"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1430,59 +1436,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11985"
],
"x-ms-correlation-request-id": [
- "e19a1cc9-8421-462b-a51a-04f0feac8bc8"
+ "f3efbb51-e1f1-41c3-9d99-2d75518fbfc6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T171921Z:e19a1cc9-8421-462b-a51a-04f0feac8bc8"
+ "WESTUS:20200529T163532Z:f3efbb51-e1f1-41c3-9d99-2d75518fbfc6"
],
- "Date": [
- "Fri, 13 Mar 2020 17:19:21 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjEzLTNiNjgwY2Y3LTMxNjYtNDliNi1iOWI1LTZhZTQ1YWM2ZTc0ZD9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:35:46 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "b68d99dc-d4a1-42f0-965d-a72220f496ca"
+ "67643b39-c3f0-47af-ab8f-95554c8bb265"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1490,59 +1496,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11984"
],
"x-ms-correlation-request-id": [
- "f726d431-344e-462d-a8ec-22277f079a63"
+ "3fcfcb17-aa3c-48e2-9f83-231642b8c5fa"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T171937Z:f726d431-344e-462d-a8ec-22277f079a63"
+ "WESTUS:20200529T163547Z:3fcfcb17-aa3c-48e2-9f83-231642b8c5fa"
],
- "Date": [
- "Fri, 13 Mar 2020 17:19:36 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjEzLTNiNjgwY2Y3LTMxNjYtNDliNi1iOWI1LTZhZTQ1YWM2ZTc0ZD9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:36:01 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "5188be97-ddbd-4381-99e9-55fbe01658cc"
+ "cfda7178-41d0-4406-8f62-90096e155bce"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1550,59 +1556,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11983"
],
"x-ms-correlation-request-id": [
- "74b1a105-3b98-4487-9913-b67f78972192"
+ "d62e2c98-a2c4-4bd9-a4a0-0c85e068e6db"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T171952Z:74b1a105-3b98-4487-9913-b67f78972192"
+ "WESTUS:20200529T163602Z:d62e2c98-a2c4-4bd9-a4a0-0c85e068e6db"
],
- "Date": [
- "Fri, 13 Mar 2020 17:19:51 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjEzLTNiNjgwY2Y3LTMxNjYtNDliNi1iOWI1LTZhZTQ1YWM2ZTc0ZD9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:36:16 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "5a0cb4dc-2df9-4f45-aa7c-2bdd84f3baf0"
+ "24272865-2017-4d95-8af9-de64cb46e55d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1610,59 +1616,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11982"
],
"x-ms-correlation-request-id": [
- "69578c2e-982b-406d-bcd4-53eb3e68ca0e"
+ "58aae9c8-da07-4007-9ef9-3410f3bb19b0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T172007Z:69578c2e-982b-406d-bcd4-53eb3e68ca0e"
+ "WESTUS:20200529T163617Z:58aae9c8-da07-4007-9ef9-3410f3bb19b0"
],
- "Date": [
- "Fri, 13 Mar 2020 17:20:07 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjEzLTNiNjgwY2Y3LTMxNjYtNDliNi1iOWI1LTZhZTQ1YWM2ZTc0ZD9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:36:31 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "f9814eec-dd30-47a9-a316-5714bf1a2cd5"
+ "d560dea9-10a5-44ea-9b95-7e6c7bc88d4d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1673,56 +1679,56 @@
"x-ms-ratelimit-remaining-subscription-reads": [
"11981"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "b2a9fbd0-4f62-48bb-96ed-7c8f44627321"
+ "3d08a920-a446-4692-9966-d7954983667a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T172023Z:b2a9fbd0-4f62-48bb-96ed-7c8f44627321"
+ "WESTUS:20200529T163632Z:3d08a920-a446-4692-9966-d7954983667a"
],
- "Date": [
- "Fri, 13 Mar 2020 17:20:22 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjEzLTNiNjgwY2Y3LTMxNjYtNDliNi1iOWI1LTZhZTQ1YWM2ZTc0ZD9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:36:46 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "57739f79-4ba7-4f02-8da5-71185dddd530"
+ "c5af475f-d494-4cbc-8afb-60913c1076f8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1730,59 +1736,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11980"
],
"x-ms-correlation-request-id": [
- "c4d43a9a-a54c-4fdb-88d0-bb9b725ef0ba"
+ "4feaca28-a93c-4b87-a673-62f7a9c53938"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T172038Z:c4d43a9a-a54c-4fdb-88d0-bb9b725ef0ba"
+ "WESTUS:20200529T163647Z:4feaca28-a93c-4b87-a673-62f7a9c53938"
],
- "Date": [
- "Fri, 13 Mar 2020 17:20:37 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjEzLTNiNjgwY2Y3LTMxNjYtNDliNi1iOWI1LTZhZTQ1YWM2ZTc0ZD9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:37:01 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "95628bfd-a0b4-41cd-82a6-7faeb03ae5b2"
+ "d83463c3-706c-4ce3-a391-fe086fe917c6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1790,59 +1796,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11979"
],
"x-ms-correlation-request-id": [
- "fb82eb8a-72e8-44ca-bda8-b6c9065aa488"
+ "3047a6fb-97aa-467d-82d4-40422363362a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T172053Z:fb82eb8a-72e8-44ca-bda8-b6c9065aa488"
+ "WESTUS:20200529T163702Z:3047a6fb-97aa-467d-82d4-40422363362a"
],
- "Date": [
- "Fri, 13 Mar 2020 17:20:53 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjEzLTNiNjgwY2Y3LTMxNjYtNDliNi1iOWI1LTZhZTQ1YWM2ZTc0ZD9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:37:17 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "881f1141-b429-4ded-8662-c9866b8ea9c4"
+ "e2098ddc-bdee-4268-8a27-a3de284bf2fc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1850,59 +1856,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11978"
],
"x-ms-correlation-request-id": [
- "bc5eddaa-d8bc-49c2-bc73-42c05969a487"
+ "fc75bb6f-6f20-417c-b1e1-86a033bc800d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T172109Z:bc5eddaa-d8bc-49c2-bc73-42c05969a487"
+ "WESTUS:20200529T163717Z:fc75bb6f-6f20-417c-b1e1-86a033bc800d"
],
- "Date": [
- "Fri, 13 Mar 2020 17:21:09 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjEzLTNiNjgwY2Y3LTMxNjYtNDliNi1iOWI1LTZhZTQ1YWM2ZTc0ZD9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:37:32 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "1b4c0f15-3933-4114-851a-8a38fc882e1f"
+ "a1615e16-62be-4ecd-9787-b766160dbe7c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1910,59 +1916,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11977"
],
"x-ms-correlation-request-id": [
- "1eb4a7f6-23e9-4d86-9601-bb8e52e9d080"
+ "5fdea882-6cea-4756-80b6-5b4cf2870db0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T172124Z:1eb4a7f6-23e9-4d86-9601-bb8e52e9d080"
+ "WESTUS:20200529T163732Z:5fdea882-6cea-4756-80b6-5b4cf2870db0"
],
- "Date": [
- "Fri, 13 Mar 2020 17:21:24 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjEzLTNiNjgwY2Y3LTMxNjYtNDliNi1iOWI1LTZhZTQ1YWM2ZTc0ZD9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:37:47 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "ce14fc6e-ab8e-4075-8f1e-ee1d9f1fb762"
+ "b18111b8-2df8-4a93-9c80-fe85ac7b8a46"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1970,59 +1976,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11976"
],
"x-ms-correlation-request-id": [
- "fd51ddf1-20a2-4dd2-b4fc-6e717574db8c"
+ "382091db-118a-4ff4-b5ce-9beb177e2517"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T172139Z:fd51ddf1-20a2-4dd2-b4fc-6e717574db8c"
+ "WESTUS:20200529T163748Z:382091db-118a-4ff4-b5ce-9beb177e2517"
],
- "Date": [
- "Fri, 13 Mar 2020 17:21:39 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjEzLTNiNjgwY2Y3LTMxNjYtNDliNi1iOWI1LTZhZTQ1YWM2ZTc0ZD9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:38:03 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "81e3556c-2772-4386-99d4-c87f1d9b071e"
+ "cac7e674-9ffe-471d-901e-7b158e3799b6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2033,56 +2039,56 @@
"x-ms-ratelimit-remaining-subscription-reads": [
"11975"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "096e8d51-7da5-4deb-9668-4020e4005110"
+ "d0dea7c0-8f5a-4785-acf8-fb73a188a761"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T172155Z:096e8d51-7da5-4deb-9668-4020e4005110"
+ "WESTUS:20200529T163803Z:d0dea7c0-8f5a-4785-acf8-fb73a188a761"
],
- "Date": [
- "Fri, 13 Mar 2020 17:21:54 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjEzLTNiNjgwY2Y3LTMxNjYtNDliNi1iOWI1LTZhZTQ1YWM2ZTc0ZD9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:38:17 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "37afd4a3-a651-4a1a-8be1-0dfe403dae20"
+ "f23314f7-2dce-4ec3-a660-0fe84906752e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2090,59 +2096,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11974"
],
"x-ms-correlation-request-id": [
- "5e9e5950-6845-4317-8820-6e75f6c51775"
+ "e7735b7b-c807-4e10-92cc-ab6a104d7c37"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T172210Z:5e9e5950-6845-4317-8820-6e75f6c51775"
+ "WESTUS:20200529T163818Z:e7735b7b-c807-4e10-92cc-ab6a104d7c37"
],
- "Date": [
- "Fri, 13 Mar 2020 17:22:10 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjEzLTNiNjgwY2Y3LTMxNjYtNDliNi1iOWI1LTZhZTQ1YWM2ZTc0ZD9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:38:32 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "4fe2cde6-ebff-43d2-af31-143599c6cb43"
+ "10e04c52-79fb-44f7-912c-5ac97dc15ba4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2150,59 +2156,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11973"
],
"x-ms-correlation-request-id": [
- "f22ca351-3ce4-4c05-8882-74e0b42d6660"
+ "9b4bd238-5b21-418d-a6c5-1151c36f36ed"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T172226Z:f22ca351-3ce4-4c05-8882-74e0b42d6660"
+ "WESTUS:20200529T163833Z:9b4bd238-5b21-418d-a6c5-1151c36f36ed"
],
- "Date": [
- "Fri, 13 Mar 2020 17:22:25 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjEzLTNiNjgwY2Y3LTMxNjYtNDliNi1iOWI1LTZhZTQ1YWM2ZTc0ZD9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:38:48 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "31ba8e0c-90be-47e3-a519-d72e91f8560a"
+ "3d99e8e5-1dab-452a-b0bc-a5fd630357f0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2210,59 +2216,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11972"
],
"x-ms-correlation-request-id": [
- "e71801e2-0cde-4d1a-977c-1ac905ab4325"
+ "937fe801-68da-413b-90a1-e98b5dbbab88"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T172241Z:e71801e2-0cde-4d1a-977c-1ac905ab4325"
+ "WESTUS:20200529T163848Z:937fe801-68da-413b-90a1-e98b5dbbab88"
],
- "Date": [
- "Fri, 13 Mar 2020 17:22:40 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjEzLTNiNjgwY2Y3LTMxNjYtNDliNi1iOWI1LTZhZTQ1YWM2ZTc0ZD9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:39:03 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "0e25c3c1-0211-4e57-ae0c-6313151c25e3"
+ "0f053647-8530-4b8a-a91b-dc9bb9b1fc96"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2270,59 +2276,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11971"
],
"x-ms-correlation-request-id": [
- "162e2ec4-c3a2-47a8-994a-e54e0f2d6388"
+ "5f2150d2-527d-4b2a-890c-8423e7bfd8f1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T172256Z:162e2ec4-c3a2-47a8-994a-e54e0f2d6388"
+ "WESTUS:20200529T163904Z:5f2150d2-527d-4b2a-890c-8423e7bfd8f1"
],
- "Date": [
- "Fri, 13 Mar 2020 17:22:56 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjEzLTNiNjgwY2Y3LTMxNjYtNDliNi1iOWI1LTZhZTQ1YWM2ZTc0ZD9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:39:18 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "c41368b4-28a3-4d39-b75c-58004be0fb64"
+ "574ad824-1bb6-4bed-900d-6d9b1f054eca"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2330,59 +2336,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11970"
],
"x-ms-correlation-request-id": [
- "ff4c4722-3f7e-47ab-8296-60572fcb8c3b"
+ "ef2ffbce-cfcd-43de-8ff2-e1a1db4dbd27"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T172312Z:ff4c4722-3f7e-47ab-8296-60572fcb8c3b"
+ "WESTUS:20200529T163919Z:ef2ffbce-cfcd-43de-8ff2-e1a1db4dbd27"
],
- "Date": [
- "Fri, 13 Mar 2020 17:23:11 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjEzLTNiNjgwY2Y3LTMxNjYtNDliNi1iOWI1LTZhZTQ1YWM2ZTc0ZD9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:39:33 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "02ddcc85-cfb9-4ba6-b1db-9acc88a60db0"
+ "3bd1df9c-d049-45a7-aa4d-338546b03b6c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2393,50 +2399,50 @@
"x-ms-ratelimit-remaining-subscription-reads": [
"11969"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "9aa8543d-6d7f-4f09-80dc-979d63e59cd6"
+ "8e4aa6d2-0f51-4802-b435-e11c6726300e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T172327Z:9aa8543d-6d7f-4f09-80dc-979d63e59cd6"
+ "WESTUS:20200529T163934Z:8e4aa6d2-0f51-4802-b435-e11c6726300e"
],
- "Date": [
- "Fri, 13 Mar 2020 17:23:27 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjEzLTNiNjgwY2Y3LTMxNjYtNDliNi1iOWI1LTZhZTQ1YWM2ZTc0ZD9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:39:48 GMT"
+ ],
"Pragma": [
"no-cache"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "6b6faf5f-6cfd-471e-9549-b11a7a889634"
+ "3d7b1094-c176-406d-a948-915ebc7b51a2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2444,53 +2450,53 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11968"
],
"x-ms-correlation-request-id": [
- "2c09e2a4-e07d-4f6b-b214-9d9b0c299534"
+ "2714c5a1-a923-48c2-a229-c4e5277522e6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T172342Z:2c09e2a4-e07d-4f6b-b214-9d9b0c299534"
+ "WESTUS:20200529T163949Z:2714c5a1-a923-48c2-a229-c4e5277522e6"
],
- "Date": [
- "Fri, 13 Mar 2020 17:23:42 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet213-3b680cf7-3166-49b6-b9b5-6ae45ac6e74d?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MjEzLTNiNjgwY2Y3LTMxNjYtNDliNi1iOWI1LTZhZTQ1YWM2ZTc0ZD9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8147-607838ba-6f55-408b-a406-33f307226a0d?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODE0Ny02MDc4MzhiYS02ZjU1LTQwOGItYTQwNi0zM2YzMDcyMjZhMGQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:39:48 GMT"
+ ],
"Pragma": [
"no-cache"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "5e2ac962-9922-492d-8852-c934d19960c5"
+ "1e64e4f8-ba4b-4e98-b3cc-72d898292df2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2498,45 +2504,39 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11967"
],
"x-ms-correlation-request-id": [
- "c14a6170-f129-4786-b85f-68b79d676b35"
+ "cfe0fbfb-1d9c-464e-8af2-64ac9e4893d8"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T172343Z:c14a6170-f129-4786-b85f-68b79d676b35"
+ "WESTUS:20200529T163949Z:cfe0fbfb-1d9c-464e-8af2-64ac9e4893d8"
],
- "Date": [
- "Fri, 13 Mar 2020 17:23:42 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourcegroups/azsmnet2396?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlZ3JvdXBzL2F6c21uZXQyMzk2P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet1881?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQxODgxP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2167a8ca-7005-48d8-a8d7-339caf2d51cb"
+ "7462720c-cf6d-44c6-88df-3ce24e212b8f"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -2546,11 +2546,14 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:39:51 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjM5Ni1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
],
"Retry-After": [
"15"
@@ -2559,13 +2562,13 @@
"14999"
],
"x-ms-request-id": [
- "06e7b993-d23c-46d0-8266-030ab5c26ba2"
+ "9582df3c-53dc-40d6-86f9-e69c9e8d8ff5"
],
"x-ms-correlation-request-id": [
- "06e7b993-d23c-46d0-8266-030ab5c26ba2"
+ "9582df3c-53dc-40d6-86f9-e69c9e8d8ff5"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T172348Z:06e7b993-d23c-46d0-8266-030ab5c26ba2"
+ "WESTUS:20200529T163951Z:9582df3c-53dc-40d6-86f9-e69c9e8d8ff5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2573,27 +2576,24 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Fri, 13 Mar 2020 17:23:48 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjM5Ni1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNak01TmkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNVGc0TVMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -2603,11 +2603,14 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:40:06 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjM5Ni1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
],
"Retry-After": [
"15"
@@ -2616,13 +2619,13 @@
"11999"
],
"x-ms-request-id": [
- "6e1ce39a-a673-4ff4-82f1-d613e65bf5a7"
+ "5a7d7699-d372-45bf-8816-f6a473c5981b"
],
"x-ms-correlation-request-id": [
- "6e1ce39a-a673-4ff4-82f1-d613e65bf5a7"
+ "5a7d7699-d372-45bf-8816-f6a473c5981b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T172404Z:6e1ce39a-a673-4ff4-82f1-d613e65bf5a7"
+ "WESTUS:20200529T164006Z:5a7d7699-d372-45bf-8816-f6a473c5981b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2630,84 +2633,24 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Fri, 13 Mar 2020 17:24:03 GMT"
- ],
- "Expires": [
- "-1"
- ],
"Content-Length": [
"0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjM5Ni1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNak01TmkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28325.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjM5Ni1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
- ],
- "x-ms-request-id": [
- "b084c750-aa95-425b-af74-5308ded80c2c"
- ],
- "x-ms-correlation-request-id": [
- "b084c750-aa95-425b-af74-5308ded80c2c"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200313T172419Z:b084c750-aa95-425b-af74-5308ded80c2c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Fri, 13 Mar 2020 17:24:18 GMT"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjM5Ni1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNak01TmkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNVGc0TVMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -2717,77 +2660,23 @@
"Cache-Control": [
"no-cache"
],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjM5Ni1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
- ],
- "x-ms-request-id": [
- "2832516f-d13f-41a4-b46b-383c7beacbb1"
- ],
- "x-ms-correlation-request-id": [
- "2832516f-d13f-41a4-b46b-383c7beacbb1"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200313T172434Z:2832516f-d13f-41a4-b46b-383c7beacbb1"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
"Date": [
- "Fri, 13 Mar 2020 17:24:34 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjM5Ni1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNak01TmkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28325.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
+ "Fri, 29 May 2020 16:40:21 GMT"
],
"Pragma": [
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11998"
],
"x-ms-request-id": [
- "a0cc11dd-8461-4aca-8c42-dad6051615b3"
+ "20b169c6-b234-4463-8f5f-6e69927108d1"
],
"x-ms-correlation-request-id": [
- "a0cc11dd-8461-4aca-8c42-dad6051615b3"
+ "20b169c6-b234-4463-8f5f-6e69927108d1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T172450Z:a0cc11dd-8461-4aca-8c42-dad6051615b3"
+ "WESTUS:20200529T164021Z:20b169c6-b234-4463-8f5f-6e69927108d1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2795,27 +2684,24 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Fri, 13 Mar 2020 17:24:50 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMjM5Ni1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNak01TmkxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUMTg4MS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVNVGc0TVMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -2825,20 +2711,23 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:40:21 GMT"
+ ],
"Pragma": [
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11997"
],
"x-ms-request-id": [
- "66d12f5c-2e6a-498b-b13d-f7bc43c32248"
+ "f75b747a-636c-4df2-86d6-366429be27be"
],
"x-ms-correlation-request-id": [
- "66d12f5c-2e6a-498b-b13d-f7bc43c32248"
+ "f75b747a-636c-4df2-86d6-366429be27be"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T172450Z:66d12f5c-2e6a-498b-b13d-f7bc43c32248"
+ "WESTUS:20200529T164022Z:f75b747a-636c-4df2-86d6-366429be27be"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2846,14 +2735,11 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Fri, 13 Mar 2020 17:24:50 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
@@ -2862,11 +2748,11 @@
],
"Names": {
"BatchCertificateEndToEndAsync": [
- "azsmnet2396",
- "azsmnet213"
+ "azsmnet1881",
+ "azsmnet8147"
]
},
"Variables": {
- "SubscriptionId": "2915bbd6-1252-405f-8173-6c00428146d9"
+ "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 91333e969778..91e48ad3ee2a 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,19 +1,19 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/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": [
- "ccf6d95b-4bdc-495a-a5b5-3823279d6554"
+ "f752d240-9441-4310-b536-acbaba10571b"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -23,6 +23,9 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:44:33 GMT"
+ ],
"Pragma": [
"no-cache"
],
@@ -30,13 +33,13 @@
"11999"
],
"x-ms-request-id": [
- "ea97d77b-d2a4-408a-97f3-d414ce9a0f06"
+ "cd43a1e2-41b9-42b0-aad6-f8ff5ddc2c44"
],
"x-ms-correlation-request-id": [
- "ea97d77b-d2a4-408a-97f3-d414ce9a0f06"
+ "cd43a1e2-41b9-42b0-aad6-f8ff5ddc2c44"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T004737Z:ea97d77b-d2a4-408a-97f3-d414ce9a0f06"
+ "WESTUS:20200529T164433Z:cd43a1e2-41b9-42b0-aad6-f8ff5ddc2c44"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -44,53 +47,56 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Fri, 13 Mar 2020 00:47:36 GMT"
+ "Content-Length": [
+ "4871"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "4557"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/East%20US/quotas?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL0Vhc3QlMjBVUy9xdW90YXM/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/East%20US/quotas?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL0Vhc3QlMjBVUy9xdW90YXM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "76d93a95-6988-460f-9d21-26e2cc040670"
+ "97e70559-351a-4a03-910e-43a7125cabbc"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:44:33 GMT"
+ ],
"Pragma": [
"no-cache"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11999"
],
"x-ms-request-id": [
- "5c4649d6-b233-43cf-8651-98cad43d175a"
+ "93dc2206-7e82-480b-ba49-fa7aa85113e0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -98,20 +104,14 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "8484aeb3-7291-4bf8-84a1-8bf14a239ae3"
+ "f31f516f-deae-4e87-8619-4c3337078d67"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T004737Z:8484aeb3-7291-4bf8-84a1-8bf14a239ae3"
- ],
- "Date": [
- "Fri, 13 Mar 2020 00:47:36 GMT"
+ "WESTUS:20200529T164433Z:f31f516f-deae-4e87-8619-4c3337078d67"
],
"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": "2915bbd6-1252-405f-8173-6c00428146d9"
+ "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 4ea23e21c6e0..b2a5d13c9daa 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,19 +1,19 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2g/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": [
- "b776ab89-c7d6-4022-96c1-6412b4a86244"
+ "e34ea06f-8584-4a9b-8ac6-673a8e938a49"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -23,6 +23,9 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:24:03 GMT"
+ ],
"Pragma": [
"no-cache"
],
@@ -30,13 +33,13 @@
"11999"
],
"x-ms-request-id": [
- "c542a0d9-17ac-46a0-b861-db751880d196"
+ "c8be4868-be00-42da-bed6-10f5b3afd354"
],
"x-ms-correlation-request-id": [
- "c542a0d9-17ac-46a0-b861-db751880d196"
+ "c8be4868-be00-42da-bed6-10f5b3afd354"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T174545Z:c542a0d9-17ac-46a0-b861-db751880d196"
+ "WESTUS:20200529T162404Z:c8be4868-be00-42da-bed6-10f5b3afd354"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -44,36 +47,33 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Fri, 13 Mar 2020 17:45:44 GMT"
+ "Content-Length": [
+ "4871"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "4761"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\",\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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/2915bbd6-1252-405f-8173-6c00428146d9/resourcegroups/azsmnet6300?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2MzAwP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet6894?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2ODk0P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"East US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9ce7a8d3-b109-4c21-b29b-bcd6819c6714"
+ "cd788fa0-b482-4c10-a809-e2bd06931694"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -89,6 +89,9 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:24:05 GMT"
+ ],
"Pragma": [
"no-cache"
],
@@ -96,13 +99,13 @@
"1199"
],
"x-ms-request-id": [
- "3beafacd-11a3-4a42-bfb9-ea424cd1ad10"
+ "ea71c3b8-bbf9-4ec9-a2cd-f7dbbcc7ed2e"
],
"x-ms-correlation-request-id": [
- "3beafacd-11a3-4a42-bfb9-ea424cd1ad10"
+ "ea71c3b8-bbf9-4ec9-a2cd-f7dbbcc7ed2e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T174547Z:3beafacd-11a3-4a42-bfb9-ea424cd1ad10"
+ "WESTUS:20200529T162406Z:ea71c3b8-bbf9-4ec9-a2cd-f7dbbcc7ed2e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -110,9 +113,6 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Fri, 13 Mar 2020 17:45:46 GMT"
- ],
"Content-Length": [
"175"
],
@@ -123,26 +123,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet6300\",\r\n \"name\": \"azsmnet6300\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894\",\r\n \"name\": \"azsmnet6894\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet6300/providers/Microsoft.Batch/batchAccounts/azsmnet8918?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODkxOD9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MTg4Mj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"East US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "01d1955e-28e3-4881-8f00-54821a5f7880"
+ "510c33df-f922-4441-a7dc-06aaadc93ed8"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -155,17 +155,23 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:24:09 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet6300/providers/Microsoft.Batch/batchAccounts/azsmnet8918/operationResults/863eb254-f895-41ff-9ddf-f0420b858619?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/operationResults/41ee3a4b-63ef-4ce7-aff5-d25303c0b363?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "863eb254-f895-41ff-9ddf-f0420b858619"
+ "41ee3a4b-63ef-4ce7-aff5-d25303c0b363"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -173,59 +179,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "a5a3812a-fe20-4272-a4e1-a2939a49a62d"
+ "63adf9a9-3376-4158-8d65-45134680ec58"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T174552Z:a5a3812a-fe20-4272-a4e1-a2939a49a62d"
+ "WESTUS:20200529T162409Z:63adf9a9-3376-4158-8d65-45134680ec58"
],
- "Date": [
- "Fri, 13 Mar 2020 17:45:52 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet6300/providers/Microsoft.Batch/batchAccounts/azsmnet8918/operationResults/863eb254-f895-41ff-9ddf-f0420b858619?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODkxOC9vcGVyYXRpb25SZXN1bHRzLzg2M2ViMjU0LWY4OTUtNDFmZi05ZGRmLWYwNDIwYjg1ODYxOT9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/operationResults/41ee3a4b-63ef-4ce7-aff5-d25303c0b363?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MTg4Mi9vcGVyYXRpb25SZXN1bHRzLzQxZWUzYTRiLTYzZWYtNGNlNy1hZmY1LWQyNTMwM2MwYjM2Mz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:24:24 GMT"
+ ],
"Pragma": [
"no-cache"
],
"ETag": [
- "\"0x8D7C776692A7B5B\""
+ "\"0x8D803ECC085BD16\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11999"
],
"x-ms-request-id": [
- "6edad4c3-2632-4c6d-9008-e802474d51dc"
+ "fec49985-c23b-4b0c-80fe-7641b85bcacd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -233,20 +239,14 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "35a5a84c-ce93-4ace-b73f-3832a21ee107"
+ "359dbd09-441f-459f-ab51-acef96f795b8"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T174608Z:35a5a84c-ce93-4ace-b73f-3832a21ee107"
- ],
- "Date": [
- "Fri, 13 Mar 2020 17:46:07 GMT"
+ "WESTUS:20200529T162425Z:359dbd09-441f-459f-ab51-acef96f795b8"
],
"Content-Length": [
- "2027"
+ "2232"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -255,29 +255,29 @@
"-1"
],
"Last-Modified": [
- "Fri, 13 Mar 2020 17:46:08 GMT"
+ "Fri, 29 May 2020 16:24:25 GMT"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet6300/providers/Microsoft.Batch/batchAccounts/azsmnet8918\",\r\n \"name\": \"azsmnet8918\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet8918.pilotprod2.eastus.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\": \"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 \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\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}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882\",\r\n \"name\": \"azsmnet1882\",\r\n \"type\": \"Microsoft.Batch/batchAccounts\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"accountEndpoint\": \"azsmnet1882.pilotprod2.eastus.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\": \"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 \"dedicatedCoreQuotaPerVMFamilyEnforced\": false,\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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet6300/providers/Microsoft.Batch/batchAccounts/azsmnet8918/pools/test_paas_pool?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODkxOC9wb29scy90ZXN0X3BhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/pools/test_paas_pool?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MTg4Mi9wb29scy90ZXN0X3BhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "82358147-543f-44b4-8d83-caa0b5f16374"
+ "24591f36-978f-4033-8ee1-07c2f4dfd5dd"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -290,17 +290,23 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:24:25 GMT"
+ ],
"Pragma": [
"no-cache"
],
"ETag": [
- "W/\"0x8D7C7766C8D6A18\""
+ "W/\"0x8D803ECC0DA798E\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-request-id": [
- "cb615f18-7b45-4ecb-bef0-2e56b3742cf3"
+ "c6e05d67-eec1-4a29-9df7-41b8840deb3d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -308,20 +314,14 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "e42ff52c-cdcd-4564-85be-154414b8b556"
+ "064c9844-87e1-40b4-8f59-9c213db3100d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T174614Z:e42ff52c-cdcd-4564-85be-154414b8b556"
- ],
- "Date": [
- "Fri, 13 Mar 2020 17:46:13 GMT"
+ "WESTUS:20200529T162425Z:064c9844-87e1-40b4-8f59-9c213db3100d"
],
"Content-Length": [
- "1525"
+ "1551"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -330,29 +330,29 @@
"-1"
],
"Last-Modified": [
- "Fri, 13 Mar 2020 17:46:13 GMT"
+ "Fri, 29 May 2020 16:24:25 GMT"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet6300/providers/Microsoft.Batch/batchAccounts/azsmnet8918/pools/test_paas_pool\",\r\n \"name\": \"test_paas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D7C7766C8D6A18\\\"\",\r\n \"properties\": {\r\n \"lastModified\": \"2020-03-13T17:46:13.7489944Z\",\r\n \"creationTime\": \"2020-03-13T17:46:13.7489944Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-03-13T17:46:13.7489944Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2020-03-13T17:46:13.7489944Z\",\r\n \"vmSize\": \"Small\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 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\": \"2020-03-13T17:46:13.7489944Z\"\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/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/pools/test_paas_pool\",\r\n \"name\": \"test_paas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D803ECC0DA798E\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2020-05-29T16:24:25.5633806Z\",\r\n \"creationTime\": \"2020-05-29T16:24:25.5633806Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-05-29T16:24:25.5633806Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2020-05-29T16:24:25.5633806Z\",\r\n \"vmSize\": \"Small\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 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\": \"2020-05-29T16:24:25.5633806Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet6300/providers/Microsoft.Batch/batchAccounts/azsmnet8918/pools/test_iaas_pool?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODkxOC9wb29scy90ZXN0X2lhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/pools/test_iaas_pool?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MTg4Mi9wb29scy90ZXN0X2lhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"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}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b3ccfcbc-8023-4edd-92af-d71a15b58748"
+ "b9d488f1-33a9-4161-a760-f4414cbb00af"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -365,17 +365,23 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:24:25 GMT"
+ ],
"Pragma": [
"no-cache"
],
"ETag": [
- "W/\"0x8D7C7766F150C53\""
+ "W/\"0x8D803ECC11BF0CB\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1197"
],
"x-ms-request-id": [
- "bac94f43-3634-4c12-9152-1bb65dea6aee"
+ "2ab42853-a5a4-4610-804f-420fea97c458"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -383,20 +389,14 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "ad001c82-91b8-4637-86c7-938bac71390f"
+ "0ccc671f-157c-4ec1-b631-0cd73b4243d0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T174618Z:ad001c82-91b8-4637-86c7-938bac71390f"
- ],
- "Date": [
- "Fri, 13 Mar 2020 17:46:17 GMT"
+ "WESTUS:20200529T162426Z:0ccc671f-157c-4ec1-b631-0cd73b4243d0"
],
"Content-Length": [
- "1294"
+ "1320"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -405,43 +405,49 @@
"-1"
],
"Last-Modified": [
- "Fri, 13 Mar 2020 17:46:17 GMT"
+ "Fri, 29 May 2020 16:24:25 GMT"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet6300/providers/Microsoft.Batch/batchAccounts/azsmnet8918/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D7C7766F150C53\\\"\",\r\n \"properties\": {\r\n \"lastModified\": \"2020-03-13T17:46:17.9933267Z\",\r\n \"creationTime\": \"2020-03-13T17:46:17.9933267Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-03-13T17:46:17.9933267Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2020-03-13T17:46:17.9933267Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 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\": \"2020-03-13T17:46:17.9933267Z\"\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/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D803ECC11BF0CB\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2020-05-29T16:24:25.9924171Z\",\r\n \"creationTime\": \"2020-05-29T16:24:25.9924171Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-05-29T16:24:25.9924171Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2020-05-29T16:24:25.9924171Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 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\": \"2020-05-29T16:24:25.9924171Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet6300/providers/Microsoft.Batch/batchAccounts/azsmnet8918/pools?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODkxOC9wb29scz9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/pools?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MTg4Mi9wb29scz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fb592bc3-b399-47db-9c2a-161a98b18019"
+ "f1bdf806-eb0a-4af2-b70b-bcb03dbef503"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:24:25 GMT"
+ ],
"Pragma": [
"no-cache"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11998"
],
"x-ms-request-id": [
- "13eb1703-1988-4548-a038-dc3d8644268d"
+ "5d8e77f5-c63d-4001-92a8-dd838de2039c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -449,20 +455,14 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "44f7ad85-e60a-4f8f-8192-17170c1e0ff1"
+ "cb19d612-6b6d-4341-b126-3dc804d500f5"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T174618Z:44f7ad85-e60a-4f8f-8192-17170c1e0ff1"
- ],
- "Date": [
- "Fri, 13 Mar 2020 17:46:17 GMT"
+ "WESTUS:20200529T162426Z:cb19d612-6b6d-4341-b126-3dc804d500f5"
],
"Content-Length": [
- "2830"
+ "2884"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -471,43 +471,49 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet6300/providers/Microsoft.Batch/batchAccounts/azsmnet8918/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D7C7766F150C53\\\"\",\r\n \"properties\": {\r\n \"lastModified\": \"2020-03-13T17:46:17.9933267Z\",\r\n \"creationTime\": \"2020-03-13T17:46:17.9933267Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-03-13T17:46:17.9933267Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2020-03-13T17:46:17.9933267Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 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\": \"2020-03-13T17:46:17.9933267Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet6300/providers/Microsoft.Batch/batchAccounts/azsmnet8918/pools/test_paas_pool\",\r\n \"name\": \"test_paas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D7C7766C8D6A18\\\"\",\r\n \"properties\": {\r\n \"lastModified\": \"2020-03-13T17:46:13.7489944Z\",\r\n \"creationTime\": \"2020-03-13T17:46:13.7489944Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-03-13T17:46:13.7489944Z\",\r\n \"allocationState\": \"Steady\",\r\n \"allocationStateTransitionTime\": \"2020-03-13T17:46:14.4690288Z\",\r\n \"vmSize\": \"Small\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 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\": \"2020-03-13T17:46:13.7489944Z\"\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/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D803ECC11BF0CB\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2020-05-29T16:24:25.9924171Z\",\r\n \"creationTime\": \"2020-05-29T16:24:25.9924171Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-05-29T16:24:25.9924171Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2020-05-29T16:24:25.9924171Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 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\": \"2020-05-29T16:24:25.9924171Z\"\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/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/pools/test_paas_pool\",\r\n \"name\": \"test_paas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D803ECC0DA798E\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2020-05-29T16:24:25.5633806Z\",\r\n \"creationTime\": \"2020-05-29T16:24:25.5633806Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-05-29T16:24:25.5633806Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2020-05-29T16:24:25.5633806Z\",\r\n \"vmSize\": \"Small\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 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\": \"2020-05-29T16:24:25.5633806Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet6300/providers/Microsoft.Batch/batchAccounts/azsmnet8918/pools/test_iaas_pool?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODkxOC9wb29scy90ZXN0X2lhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/pools/test_iaas_pool?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MTg4Mi9wb29scy90ZXN0X2lhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dbe2345b-6130-419c-ad8a-6b6921976d7b"
+ "2475efd6-65c0-4d9a-af91-e6c9134acf20"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:24:26 GMT"
+ ],
"Pragma": [
"no-cache"
],
"ETag": [
- "W/\"0x8D7C7766F150C53\""
+ "W/\"0x8D803ECC11BF0CB\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11997"
],
"x-ms-request-id": [
- "10384161-e6da-41bb-8b2e-c5fee24c53c5"
+ "9c104069-fd79-4d55-9fdd-840b68cf88bd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -515,20 +521,14 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "b645ba43-cfcf-40a4-b239-05c12949f965"
+ "99f91195-9d5f-41e9-837d-fdd1f1c0f7a1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T174618Z:b645ba43-cfcf-40a4-b239-05c12949f965"
- ],
- "Date": [
- "Fri, 13 Mar 2020 17:46:17 GMT"
+ "WESTUS:20200529T162426Z:99f91195-9d5f-41e9-837d-fdd1f1c0f7a1"
],
"Content-Length": [
- "1292"
+ "1320"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -537,46 +537,52 @@
"-1"
],
"Last-Modified": [
- "Fri, 13 Mar 2020 17:46:17 GMT"
+ "Fri, 29 May 2020 16:24:25 GMT"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet6300/providers/Microsoft.Batch/batchAccounts/azsmnet8918/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D7C7766F150C53\\\"\",\r\n \"properties\": {\r\n \"lastModified\": \"2020-03-13T17:46:17.9933267Z\",\r\n \"creationTime\": \"2020-03-13T17:46:17.9933267Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-03-13T17:46:17.9933267Z\",\r\n \"allocationState\": \"Steady\",\r\n \"allocationStateTransitionTime\": \"2020-03-13T17:46:18.4980685Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 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\": \"2020-03-13T17:46:17.9933267Z\"\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/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D803ECC11BF0CB\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2020-05-29T16:24:25.9924171Z\",\r\n \"creationTime\": \"2020-05-29T16:24:25.9924171Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-05-29T16:24:25.9924171Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2020-05-29T16:24:25.9924171Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 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\": \"2020-05-29T16:24:25.9924171Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet6300/providers/Microsoft.Batch/batchAccounts/azsmnet8918/pools/test_iaas_pool/stopResize?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODkxOC9wb29scy90ZXN0X2lhYXNfcG9vbC9zdG9wUmVzaXplP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/pools/test_iaas_pool/stopResize?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MTg4Mi9wb29scy90ZXN0X2lhYXNfcG9vbC9zdG9wUmVzaXplP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "baa50588-edd9-42e2-be12-c22478259f82"
+ "ffba8196-c134-488a-a687-83ce622983ae"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:24:28 GMT"
+ ],
"Pragma": [
"no-cache"
],
"ETag": [
- "W/\"0x8D7C7766F150C53\""
+ "W/\"0x8D803ECC11BF0CB\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-request-id": [
- "100d5f95-e6cb-4a5c-a918-b37b2234dd64"
+ "31ff06bc-0ba6-4e3a-9916-21f502e2bbf5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -584,20 +590,14 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "03866f8b-295f-4d2d-a8c4-2388e04295e6"
+ "e16a460e-c9d0-434c-87ea-f53d86e83138"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T174621Z:03866f8b-295f-4d2d-a8c4-2388e04295e6"
- ],
- "Date": [
- "Fri, 13 Mar 2020 17:46:20 GMT"
+ "WESTUS:20200529T162429Z:e16a460e-c9d0-434c-87ea-f53d86e83138"
],
"Content-Length": [
- "1292"
+ "1317"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -606,46 +606,52 @@
"-1"
],
"Last-Modified": [
- "Fri, 13 Mar 2020 17:46:17 GMT"
+ "Fri, 29 May 2020 16:24:25 GMT"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet6300/providers/Microsoft.Batch/batchAccounts/azsmnet8918/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D7C7766F150C53\\\"\",\r\n \"properties\": {\r\n \"lastModified\": \"2020-03-13T17:46:17.9933267Z\",\r\n \"creationTime\": \"2020-03-13T17:46:17.9933267Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-03-13T17:46:17.9933267Z\",\r\n \"allocationState\": \"Steady\",\r\n \"allocationStateTransitionTime\": \"2020-03-13T17:46:18.4980685Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 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\": \"2020-03-13T17:46:17.9933267Z\"\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/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D803ECC11BF0CB\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2020-05-29T16:24:25.9924171Z\",\r\n \"creationTime\": \"2020-05-29T16:24:25.9924171Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-05-29T16:24:25.9924171Z\",\r\n \"allocationState\": \"Steady\",\r\n \"allocationStateTransitionTime\": \"2020-05-29T16:24:29.131294Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 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\": \"2020-05-29T16:24:25.9924171Z\"\r\n },\r\n \"currentDedicatedNodes\": 0,\r\n \"currentLowPriorityNodes\": 0\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet6300/providers/Microsoft.Batch/batchAccounts/azsmnet8918/pools/test_iaas_pool/disableAutoScale?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODkxOC9wb29scy90ZXN0X2lhYXNfcG9vbC9kaXNhYmxlQXV0b1NjYWxlP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/pools/test_iaas_pool/disableAutoScale?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MTg4Mi9wb29scy90ZXN0X2lhYXNfcG9vbC9kaXNhYmxlQXV0b1NjYWxlP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ebd7c6e0-1b82-4888-83c5-2bddd445057d"
+ "36eff610-2b08-4314-b247-b700e5c881f9"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:24:28 GMT"
+ ],
"Pragma": [
"no-cache"
],
"ETag": [
- "W/\"0x8D7C7767189B8AA\""
+ "W/\"0x8D803ECC31B6C43\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-request-id": [
- "4d1944bb-40be-43e8-893e-323bb91a2c16"
+ "8d315a67-d064-4620-8afd-7932f716624a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -653,20 +659,14 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "7b3034b8-9560-41ae-8bca-df96ff6f67f9"
+ "eb63798b-4ac4-4556-aeaa-7eeeb6dca385"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T174622Z:7b3034b8-9560-41ae-8bca-df96ff6f67f9"
- ],
- "Date": [
- "Fri, 13 Mar 2020 17:46:21 GMT"
+ "WESTUS:20200529T162429Z:eb63798b-4ac4-4556-aeaa-7eeeb6dca385"
],
"Content-Length": [
- "1141"
+ "1167"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -675,46 +675,52 @@
"-1"
],
"Last-Modified": [
- "Fri, 13 Mar 2020 17:46:22 GMT"
+ "Fri, 29 May 2020 16:24:29 GMT"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet6300/providers/Microsoft.Batch/batchAccounts/azsmnet8918/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D7C7767189B8AA\\\"\",\r\n \"properties\": {\r\n \"lastModified\": \"2020-03-13T17:46:22.1133994Z\",\r\n \"creationTime\": \"2020-03-13T17:46:17.9933267Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-03-13T17:46:17.9933267Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2020-03-13T17:46:22.1133994Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 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/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/pools/test_iaas_pool\",\r\n \"name\": \"test_iaas_pool\",\r\n \"type\": \"Microsoft.Batch/batchAccounts/pools\",\r\n \"etag\": \"W/\\\"0x8D803ECC31B6C43\\\"\",\r\n \"properties\": {\r\n \"displayName\": \"test_pool\",\r\n \"lastModified\": \"2020-05-29T16:24:29.3444675Z\",\r\n \"creationTime\": \"2020-05-29T16:24:25.9924171Z\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"provisioningStateTransitionTime\": \"2020-05-29T16:24:25.9924171Z\",\r\n \"allocationState\": \"Resizing\",\r\n \"allocationStateTransitionTime\": \"2020-05-29T16:24:29.3444675Z\",\r\n \"vmSize\": \"STANDARD_A1\",\r\n \"interNodeCommunication\": \"Disabled\",\r\n \"maxTasksPerNode\": 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}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet6300/providers/Microsoft.Batch/batchAccounts/azsmnet8918/pools/test_paas_pool?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODkxOC9wb29scy90ZXN0X3BhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/pools/test_paas_pool?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MTg4Mi9wb29scy90ZXN0X3BhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0eaedab6-aaee-4237-85a8-cbd4fe2aa604"
+ "9680a337-86af-4a92-bef9-09d3f869a151"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:24:29 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet6300/providers/Microsoft.Batch/batchAccounts/azsmnet8918/poolOperationResults/delete-test_paas_pool?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/poolOperationResults/delete-test_paas_pool?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "acaa767b-bd94-4002-9846-bb7ceb6792b9"
+ "f8151f21-4507-4550-abcb-83b59ef0bc52"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -722,53 +728,53 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-deletes": [
"14999"
],
"x-ms-correlation-request-id": [
- "73bdd113-83e3-428c-a8db-faf6590da4f4"
+ "6879247e-7bc1-49f1-a3d3-94bb5e32b3ed"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T174622Z:73bdd113-83e3-428c-a8db-faf6590da4f4"
+ "WESTUS:20200529T162429Z:6879247e-7bc1-49f1-a3d3-94bb5e32b3ed"
],
- "Date": [
- "Fri, 13 Mar 2020 17:46:21 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet6300/providers/Microsoft.Batch/batchAccounts/azsmnet8918/poolOperationResults/delete-test_paas_pool?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODkxOC9wb29sT3BlcmF0aW9uUmVzdWx0cy9kZWxldGUtdGVzdF9wYWFzX3Bvb2w/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/poolOperationResults/delete-test_paas_pool?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MTg4Mi9wb29sT3BlcmF0aW9uUmVzdWx0cy9kZWxldGUtdGVzdF9wYWFzX3Bvb2w/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:24:44 GMT"
+ ],
"Pragma": [
"no-cache"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "2031a53c-6b1c-4adf-8d8c-df52e71f57d6"
+ "b12cac6f-cb02-4a70-87f9-c4f23938dd42"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -779,50 +785,50 @@
"x-ms-ratelimit-remaining-subscription-reads": [
"11996"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "62fbd37e-2260-45c9-bc37-b0d7aa26430e"
+ "ac5d4b83-3135-4e51-a917-a4460ee6be4e"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T174637Z:62fbd37e-2260-45c9-bc37-b0d7aa26430e"
+ "WESTUS:20200529T162445Z:ac5d4b83-3135-4e51-a917-a4460ee6be4e"
],
- "Date": [
- "Fri, 13 Mar 2020 17:46:36 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet6300/providers/Microsoft.Batch/batchAccounts/azsmnet8918/poolOperationResults/delete-test_paas_pool?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODkxOC9wb29sT3BlcmF0aW9uUmVzdWx0cy9kZWxldGUtdGVzdF9wYWFzX3Bvb2w/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/poolOperationResults/delete-test_paas_pool?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MTg4Mi9wb29sT3BlcmF0aW9uUmVzdWx0cy9kZWxldGUtdGVzdF9wYWFzX3Bvb2w/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:24:44 GMT"
+ ],
"Pragma": [
"no-cache"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "0bff09ea-df84-44f0-91d4-e1061a230b25"
+ "994f361c-9d3c-45b0-8620-1914befaa6ec"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -830,65 +836,65 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11995"
],
"x-ms-correlation-request-id": [
- "5bf065ac-9933-4b9f-8109-ae723101e704"
+ "4961a240-8a0a-4e63-a747-faa70fc602e0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T174638Z:5bf065ac-9933-4b9f-8109-ae723101e704"
+ "WESTUS:20200529T162445Z:4961a240-8a0a-4e63-a747-faa70fc602e0"
],
- "Date": [
- "Fri, 13 Mar 2020 17:46:37 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet6300/providers/Microsoft.Batch/batchAccounts/azsmnet8918/pools/test_iaas_pool?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODkxOC9wb29scy90ZXN0X2lhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/pools/test_iaas_pool?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MTg4Mi9wb29scy90ZXN0X2lhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b2bdb638-d470-470c-a59f-24193733d3e7"
+ "6ef94f52-7b83-432f-b333-a10e831b31e6"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:24:44 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet6300/providers/Microsoft.Batch/batchAccounts/azsmnet8918/poolOperationResults/delete-test_iaas_pool?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/poolOperationResults/delete-test_iaas_pool?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "b15a94d1-ee85-44c0-9b8e-0dda21ea8773"
+ "f2d4af87-602e-4c08-a786-31bda3b59c4c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -896,53 +902,53 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-deletes": [
"14998"
],
"x-ms-correlation-request-id": [
- "385181d9-0d00-4431-aa52-887abe6206a4"
+ "6fdc96e4-9d91-4dfd-833f-e72ed2f0e6b4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T174638Z:385181d9-0d00-4431-aa52-887abe6206a4"
+ "WESTUS:20200529T162445Z:6fdc96e4-9d91-4dfd-833f-e72ed2f0e6b4"
],
- "Date": [
- "Fri, 13 Mar 2020 17:46:37 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet6300/providers/Microsoft.Batch/batchAccounts/azsmnet8918/poolOperationResults/delete-test_iaas_pool?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODkxOC9wb29sT3BlcmF0aW9uUmVzdWx0cy9kZWxldGUtdGVzdF9pYWFzX3Bvb2w/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/poolOperationResults/delete-test_iaas_pool?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MTg4Mi9wb29sT3BlcmF0aW9uUmVzdWx0cy9kZWxldGUtdGVzdF9pYWFzX3Bvb2w/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:24:59 GMT"
+ ],
"Pragma": [
"no-cache"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "e54239bb-74a7-4f21-b3ba-1b66e8417046"
+ "05e14b12-2aa6-493c-b3c4-81974dbc2429"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -950,53 +956,53 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11994"
],
"x-ms-correlation-request-id": [
- "8faa6b0e-e962-41c8-a989-87bbd7e5b4ac"
+ "d34edc05-7253-45e7-9310-d7baeee3b815"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T174653Z:8faa6b0e-e962-41c8-a989-87bbd7e5b4ac"
+ "WESTUS:20200529T162500Z:d34edc05-7253-45e7-9310-d7baeee3b815"
],
- "Date": [
- "Fri, 13 Mar 2020 17:46:53 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet6300/providers/Microsoft.Batch/batchAccounts/azsmnet8918/poolOperationResults/delete-test_iaas_pool?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODkxOC9wb29sT3BlcmF0aW9uUmVzdWx0cy9kZWxldGUtdGVzdF9pYWFzX3Bvb2w/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/poolOperationResults/delete-test_iaas_pool?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MTg4Mi9wb29sT3BlcmF0aW9uUmVzdWx0cy9kZWxldGUtdGVzdF9pYWFzX3Bvb2w/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:24:59 GMT"
+ ],
"Pragma": [
"no-cache"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "27537861-0e0d-41af-8740-9df5f81d6ec4"
+ "aa523d5f-2be3-47e3-8b07-2cf436e3687d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1004,62 +1010,62 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11993"
],
"x-ms-correlation-request-id": [
- "79da7e96-afa1-4d5a-bd82-34bbd71230c0"
+ "4b58893c-c3a5-4222-9bf1-e2da38d39241"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T174654Z:79da7e96-afa1-4d5a-bd82-34bbd71230c0"
+ "WESTUS:20200529T162500Z:4b58893c-c3a5-4222-9bf1-e2da38d39241"
],
- "Date": [
- "Fri, 13 Mar 2020 17:46:53 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet6300/providers/Microsoft.Batch/batchAccounts/azsmnet8918/pools/test_paas_pool?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODkxOC9wb29scy90ZXN0X3BhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882/pools/test_paas_pool?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MTg4Mi9wb29scy90ZXN0X3BhYXNfcG9vbD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5f3a162e-8329-4606-919c-2ca8b33a415d"
+ "be86cfff-5eb7-4798-80fd-f132d719c3cc"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:25:00 GMT"
+ ],
"Pragma": [
"no-cache"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11992"
],
"x-ms-request-id": [
- "e06bde6c-83c6-42ca-b37e-b5eab629a01a"
+ "46082740-3597-477e-8c13-1e1ef1d9fc8b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1067,17 +1073,11 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "bf192551-6aae-4f4a-8b81-10aaa8da2eb7"
+ "d81a17fc-af17-4239-9fee-8a41b66f3669"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T174703Z:bf192551-6aae-4f4a-8b81-10aaa8da2eb7"
- ],
- "Date": [
- "Fri, 13 Mar 2020 17:47:02 GMT"
+ "WESTUS:20200529T162500Z:d81a17fc-af17-4239-9fee-8a41b66f3669"
],
"Content-Length": [
"187"
@@ -1089,43 +1089,49 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PoolNotFound\",\r\n \"message\": \"The specified pool does not exist.\\nRequestId:e06bde6c-83c6-42ca-b37e-b5eab629a01a\\nTime:2020-03-13T17:47:03.6948030Z\",\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:46082740-3597-477e-8c13-1e1ef1d9fc8b\\nTime:2020-05-29T16:25:00.8029002Z\",\r\n \"target\": \"BatchAccount\"\r\n }\r\n}",
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourceGroups/azsmnet6300/providers/Microsoft.Batch/batchAccounts/azsmnet8918?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2MzAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0ODkxOD9hcGktdmVyc2lvbj0yMDIwLTAzLTAx",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/azsmnet6894/providers/Microsoft.Batch/batchAccounts/azsmnet1882?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlR3JvdXBzL2F6c21uZXQ2ODk0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvYmF0Y2hBY2NvdW50cy9henNtbmV0MTg4Mj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0b6be313-de97-4959-862f-5a15c8d81532"
+ "3c743943-ec5e-456b-b702-bba50b6635fb"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:25:00 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "a4240da6-ef18-4cf1-a4b8-c28721b692e9"
+ "cf9de990-f5ff-4056-8645-32476ebe669c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1133,59 +1139,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-deletes": [
"14997"
],
"x-ms-correlation-request-id": [
- "1333bf99-5761-401e-8c89-c53f14f6d35a"
+ "43842c9b-7049-464c-9304-c08a67342dfb"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T174705Z:1333bf99-5761-401e-8c89-c53f14f6d35a"
+ "WESTUS:20200529T162501Z:43842c9b-7049-464c-9304-c08a67342dfb"
],
- "Date": [
- "Fri, 13 Mar 2020 17:47:04 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODkxOC1hNDI0MGRhNi1lZjE4LTRjZjEtYTRiOC1jMjg3MjFiNjkyZTk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:25:15 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "47f7e04a-e1dd-4d10-bdaf-b5379d6c0eb0"
+ "63d6244f-2098-4303-a87e-e4f5a5c9d137"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1193,59 +1199,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11991"
],
"x-ms-correlation-request-id": [
- "4a330055-8f07-4e02-b6ab-a8ce084b18db"
+ "684ddaed-a789-4e74-a259-b1be26b8a923"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T174720Z:4a330055-8f07-4e02-b6ab-a8ce084b18db"
+ "WESTUS:20200529T162516Z:684ddaed-a789-4e74-a259-b1be26b8a923"
],
- "Date": [
- "Fri, 13 Mar 2020 17:47:20 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODkxOC1hNDI0MGRhNi1lZjE4LTRjZjEtYTRiOC1jMjg3MjFiNjkyZTk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:25:30 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "2d0b752f-58f8-4793-be78-8a596f8040c0"
+ "50462f63-9394-4910-9f35-12ada1404a6a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1256,56 +1262,56 @@
"x-ms-ratelimit-remaining-subscription-reads": [
"11990"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "08f5dcdb-d8d0-4ef2-84e9-52dd704bb097"
+ "4e5bb6db-7fac-4a8e-bf88-8ea0c81b2eb4"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T174736Z:08f5dcdb-d8d0-4ef2-84e9-52dd704bb097"
+ "WESTUS:20200529T162531Z:4e5bb6db-7fac-4a8e-bf88-8ea0c81b2eb4"
],
- "Date": [
- "Fri, 13 Mar 2020 17:47:36 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODkxOC1hNDI0MGRhNi1lZjE4LTRjZjEtYTRiOC1jMjg3MjFiNjkyZTk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:25:46 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "304075af-4bfc-4a2c-9ad1-6d6a5b159f37"
+ "0875ec8e-a197-447b-affb-d80ec5045464"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1313,59 +1319,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11989"
],
"x-ms-correlation-request-id": [
- "fd546e8e-4f6d-4c59-b29d-2280d7c597af"
+ "0e1ac14d-723b-4b5c-a897-d6f175d0f468"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T174751Z:fd546e8e-4f6d-4c59-b29d-2280d7c597af"
+ "WESTUS:20200529T162546Z:0e1ac14d-723b-4b5c-a897-d6f175d0f468"
],
- "Date": [
- "Fri, 13 Mar 2020 17:47:51 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODkxOC1hNDI0MGRhNi1lZjE4LTRjZjEtYTRiOC1jMjg3MjFiNjkyZTk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:26:01 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "5c50f7d0-c6bc-4e7c-84e2-655901c37bab"
+ "210a8313-2fa1-4df3-9752-9e3b46ae031b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1373,59 +1379,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11988"
],
"x-ms-correlation-request-id": [
- "c1370024-e0a4-4ad9-ae2e-3e27c6fc4e39"
+ "10dbedca-c9e2-4d49-b34c-dc9f669617bb"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T174807Z:c1370024-e0a4-4ad9-ae2e-3e27c6fc4e39"
+ "WESTUS:20200529T162601Z:10dbedca-c9e2-4d49-b34c-dc9f669617bb"
],
- "Date": [
- "Fri, 13 Mar 2020 17:48:06 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODkxOC1hNDI0MGRhNi1lZjE4LTRjZjEtYTRiOC1jMjg3MjFiNjkyZTk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:26:16 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "9d4c67c9-b311-4bc2-9937-e6012ba21e31"
+ "ca73ae9f-4b85-4f33-a02d-fcfe548c9ceb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1433,59 +1439,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11987"
],
"x-ms-correlation-request-id": [
- "a4686519-d152-4e39-9c88-8e56ba279de7"
+ "5c3868ca-6817-4a78-ac85-51142792269d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T174822Z:a4686519-d152-4e39-9c88-8e56ba279de7"
+ "WESTUS:20200529T162617Z:5c3868ca-6817-4a78-ac85-51142792269d"
],
- "Date": [
- "Fri, 13 Mar 2020 17:48:21 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODkxOC1hNDI0MGRhNi1lZjE4LTRjZjEtYTRiOC1jMjg3MjFiNjkyZTk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:26:31 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "7b66f693-9c79-4abe-bd4b-ec561e17afcd"
+ "c2d730f2-19ea-4992-8f77-7120b65006b8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1496,56 +1502,56 @@
"x-ms-ratelimit-remaining-subscription-reads": [
"11986"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "62dd2df2-ed51-46a8-8ceb-833cf0312e35"
+ "4cf5d88b-5191-4211-b862-764b0d1d9a85"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T174837Z:62dd2df2-ed51-46a8-8ceb-833cf0312e35"
+ "WESTUS:20200529T162632Z:4cf5d88b-5191-4211-b862-764b0d1d9a85"
],
- "Date": [
- "Fri, 13 Mar 2020 17:48:37 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODkxOC1hNDI0MGRhNi1lZjE4LTRjZjEtYTRiOC1jMjg3MjFiNjkyZTk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:26:46 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "459e65b7-ec4c-4c6c-8c48-048b8af98a00"
+ "f3bd807a-5c36-4034-b70b-8c376d4b6047"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1553,59 +1559,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11985"
],
"x-ms-correlation-request-id": [
- "6b8702eb-5573-4370-a6d9-586473bec9b8"
+ "e712760f-04e6-4c78-91f0-b020ea5d965b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T174853Z:6b8702eb-5573-4370-a6d9-586473bec9b8"
+ "WESTUS:20200529T162647Z:e712760f-04e6-4c78-91f0-b020ea5d965b"
],
- "Date": [
- "Fri, 13 Mar 2020 17:48:52 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODkxOC1hNDI0MGRhNi1lZjE4LTRjZjEtYTRiOC1jMjg3MjFiNjkyZTk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:27:01 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "f287e786-b53e-4658-8528-efab21018a6c"
+ "47095f2f-6a53-4721-9571-a2df88c72eba"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1613,59 +1619,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11984"
],
"x-ms-correlation-request-id": [
- "41cdb678-bf1a-4f68-bc14-570600492fdc"
+ "dafaa20b-0297-42ab-a595-9857f05d81fb"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T174908Z:41cdb678-bf1a-4f68-bc14-570600492fdc"
+ "WESTUS:20200529T162702Z:dafaa20b-0297-42ab-a595-9857f05d81fb"
],
- "Date": [
- "Fri, 13 Mar 2020 17:49:07 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODkxOC1hNDI0MGRhNi1lZjE4LTRjZjEtYTRiOC1jMjg3MjFiNjkyZTk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:27:16 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "cd0f316c-490b-47c5-9d3d-470def698211"
+ "5551e832-5b08-4b19-89f7-5b1c27920cb2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1673,59 +1679,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11983"
],
"x-ms-correlation-request-id": [
- "1d16863b-ec6d-43b2-a3be-ace444f709f7"
+ "fb9cfa77-85a1-489d-b4a3-e8b81693df93"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T174923Z:1d16863b-ec6d-43b2-a3be-ace444f709f7"
+ "WESTUS:20200529T162717Z:fb9cfa77-85a1-489d-b4a3-e8b81693df93"
],
- "Date": [
- "Fri, 13 Mar 2020 17:49:23 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODkxOC1hNDI0MGRhNi1lZjE4LTRjZjEtYTRiOC1jMjg3MjFiNjkyZTk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:27:32 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "586e9ec4-01b8-497e-9c79-a0e2ec5e98ac"
+ "357da888-0cf2-4115-8bc5-cb6989e82215"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1736,56 +1742,56 @@
"x-ms-ratelimit-remaining-subscription-reads": [
"11982"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "00e808f0-eb86-4d93-84cf-0fb29c669284"
+ "3c2c7991-601c-40c5-801e-5366502e283c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T174939Z:00e808f0-eb86-4d93-84cf-0fb29c669284"
+ "WESTUS:20200529T162732Z:3c2c7991-601c-40c5-801e-5366502e283c"
],
- "Date": [
- "Fri, 13 Mar 2020 17:49:38 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODkxOC1hNDI0MGRhNi1lZjE4LTRjZjEtYTRiOC1jMjg3MjFiNjkyZTk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:27:47 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "e7f0ef55-7426-4398-aa0d-5ead4eeba0a4"
+ "d21e81fe-c91e-4b75-8503-d42ba96e3b63"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1793,59 +1799,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11981"
],
"x-ms-correlation-request-id": [
- "67143a4b-3ef6-49ec-9a7f-2f3d5b7b6ddc"
+ "686e075c-8f53-4107-99c2-b1be3167853c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T174954Z:67143a4b-3ef6-49ec-9a7f-2f3d5b7b6ddc"
+ "WESTUS:20200529T162747Z:686e075c-8f53-4107-99c2-b1be3167853c"
],
- "Date": [
- "Fri, 13 Mar 2020 17:49:54 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODkxOC1hNDI0MGRhNi1lZjE4LTRjZjEtYTRiOC1jMjg3MjFiNjkyZTk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:28:02 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "e649b377-9b97-423c-bad0-134d0f76a585"
+ "7dd767a6-98c0-4eda-927f-416eeeb0a19b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1853,59 +1859,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11980"
],
"x-ms-correlation-request-id": [
- "de3145bd-b552-47c6-aa8f-0e10c34265ce"
+ "dc880d14-0f2c-4ac7-bff3-0ac989ecd2b1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T175009Z:de3145bd-b552-47c6-aa8f-0e10c34265ce"
+ "WESTUS:20200529T162802Z:dc880d14-0f2c-4ac7-bff3-0ac989ecd2b1"
],
- "Date": [
- "Fri, 13 Mar 2020 17:50:09 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODkxOC1hNDI0MGRhNi1lZjE4LTRjZjEtYTRiOC1jMjg3MjFiNjkyZTk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:28:17 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "f456d745-9b8d-4925-8307-727465e53321"
+ "2631f404-c760-463e-9bad-6e400cdf71b2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1913,59 +1919,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11979"
],
"x-ms-correlation-request-id": [
- "1420f5ff-8bf0-4293-8b94-b7e611673e43"
+ "07c656cb-d3b7-4c58-a7f5-3d1fa01f2e7c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T175025Z:1420f5ff-8bf0-4293-8b94-b7e611673e43"
+ "WESTUS:20200529T162818Z:07c656cb-d3b7-4c58-a7f5-3d1fa01f2e7c"
],
- "Date": [
- "Fri, 13 Mar 2020 17:50:24 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODkxOC1hNDI0MGRhNi1lZjE4LTRjZjEtYTRiOC1jMjg3MjFiNjkyZTk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:28:32 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "94e404ae-e9c5-48bf-9e80-888a1253484c"
+ "2d1ee261-6e90-43ca-b17e-c1785544d3c3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1976,56 +1982,56 @@
"x-ms-ratelimit-remaining-subscription-reads": [
"11978"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "fdb836fa-b613-495f-805c-c0fbbd3ca737"
+ "73be1790-c000-4c9d-9339-3414020fe577"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T175040Z:fdb836fa-b613-495f-805c-c0fbbd3ca737"
+ "WESTUS:20200529T162833Z:73be1790-c000-4c9d-9339-3414020fe577"
],
- "Date": [
- "Fri, 13 Mar 2020 17:50:39 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODkxOC1hNDI0MGRhNi1lZjE4LTRjZjEtYTRiOC1jMjg3MjFiNjkyZTk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:28:47 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "59f0435f-d2e8-4680-a224-4f02f05cc9fa"
+ "e383429a-7523-4e38-bf86-bd77d693a590"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2033,59 +2039,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11977"
],
"x-ms-correlation-request-id": [
- "9203b00e-c849-480e-8d5d-3f13dbfbaf69"
+ "2bdd093d-9aa8-4029-bbfe-efde113813bf"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T175056Z:9203b00e-c849-480e-8d5d-3f13dbfbaf69"
+ "WESTUS:20200529T162848Z:2bdd093d-9aa8-4029-bbfe-efde113813bf"
],
- "Date": [
- "Fri, 13 Mar 2020 17:50:55 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODkxOC1hNDI0MGRhNi1lZjE4LTRjZjEtYTRiOC1jMjg3MjFiNjkyZTk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:29:03 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "4e7d99ff-d95b-46be-93e5-fc2a307e5bb1"
+ "81960e45-ce8c-4244-a854-c75c22cdd098"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2093,59 +2099,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11976"
],
"x-ms-correlation-request-id": [
- "6949cd3c-22c6-47b0-b688-990a28494880"
+ "7a43ffec-df68-424b-b6b0-7b8440a904f1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T175111Z:6949cd3c-22c6-47b0-b688-990a28494880"
+ "WESTUS:20200529T162903Z:7a43ffec-df68-424b-b6b0-7b8440a904f1"
],
- "Date": [
- "Fri, 13 Mar 2020 17:51:10 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODkxOC1hNDI0MGRhNi1lZjE4LTRjZjEtYTRiOC1jMjg3MjFiNjkyZTk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:29:18 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "2e2fe832-1204-4b6d-aa0a-9f44a5a21504"
+ "d6c639e0-04fa-41bd-a213-c603cfae3fc3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2153,59 +2159,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11975"
],
"x-ms-correlation-request-id": [
- "db637568-140c-4eaa-92ae-63c9ae51c4dc"
+ "368fe9a3-b65b-4705-a96c-8c7a41fa9b8b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T175126Z:db637568-140c-4eaa-92ae-63c9ae51c4dc"
+ "WESTUS:20200529T162918Z:368fe9a3-b65b-4705-a96c-8c7a41fa9b8b"
],
- "Date": [
- "Fri, 13 Mar 2020 17:51:25 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODkxOC1hNDI0MGRhNi1lZjE4LTRjZjEtYTRiOC1jMjg3MjFiNjkyZTk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:29:33 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "514a3427-aff6-4776-8623-588a0366c58c"
+ "7d5c72ba-4569-4fb3-bab4-5ab9bba8dada"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2216,56 +2222,56 @@
"x-ms-ratelimit-remaining-subscription-reads": [
"11974"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "59190513-4089-4727-be01-0c7f07d91b70"
+ "f411a742-5885-4e7d-88e2-b5f121712b82"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T175142Z:59190513-4089-4727-be01-0c7f07d91b70"
+ "WESTUS:20200529T162933Z:f411a742-5885-4e7d-88e2-b5f121712b82"
],
- "Date": [
- "Fri, 13 Mar 2020 17:51:41 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODkxOC1hNDI0MGRhNi1lZjE4LTRjZjEtYTRiOC1jMjg3MjFiNjkyZTk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:29:48 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "560f58f5-6af3-4e46-b9bb-2b7736833cc1"
+ "4230fdf0-93bc-4bf7-bba9-aa01f9e27e14"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2273,59 +2279,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11973"
],
"x-ms-correlation-request-id": [
- "65c9ddc4-377b-4425-be71-76b83b6738d8"
+ "2d06d887-f53e-4220-b220-63d5dc5e4b65"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T175157Z:65c9ddc4-377b-4425-be71-76b83b6738d8"
+ "WESTUS:20200529T162949Z:2d06d887-f53e-4220-b220-63d5dc5e4b65"
],
- "Date": [
- "Fri, 13 Mar 2020 17:51:57 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODkxOC1hNDI0MGRhNi1lZjE4LTRjZjEtYTRiOC1jMjg3MjFiNjkyZTk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:30:03 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "3d72744a-c537-4523-9a8c-4aa48dd30f48"
+ "4cc2a26e-ca87-49e3-b40f-3f32d22a1e0e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2333,59 +2339,59 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11972"
],
"x-ms-correlation-request-id": [
- "5908f5af-b5fd-4a2d-b347-4e5bcc2e57d6"
+ "d665ede8-3f50-4938-8823-0f9e5dbe8866"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T175212Z:5908f5af-b5fd-4a2d-b347-4e5bcc2e57d6"
+ "WESTUS:20200529T163004Z:d665ede8-3f50-4938-8823-0f9e5dbe8866"
],
- "Date": [
- "Fri, 13 Mar 2020 17:52:12 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODkxOC1hNDI0MGRhNi1lZjE4LTRjZjEtYTRiOC1jMjg3MjFiNjkyZTk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:30:18 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01"
],
"Retry-After": [
"15"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "4097afa3-2a26-4163-9733-9c652048e70b"
+ "5ea61a79-e543-45d9-987b-bc853883dfe0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2393,53 +2399,53 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11971"
],
"x-ms-correlation-request-id": [
- "8d76d393-1d34-4fc1-aab1-0120316dc7c2"
+ "d8a8a019-08a1-4881-b863-83120b81e08a"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T175228Z:8d76d393-1d34-4fc1-aab1-0120316dc7c2"
+ "WESTUS:20200529T163019Z:d8a8a019-08a1-4881-b863-83120b81e08a"
],
- "Date": [
- "Fri, 13 Mar 2020 17:52:27 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODkxOC1hNDI0MGRhNi1lZjE4LTRjZjEtYTRiOC1jMjg3MjFiNjkyZTk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:30:33 GMT"
+ ],
"Pragma": [
"no-cache"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "60436797-e74b-4ad5-881c-9771ce28c6be"
+ "f7b66477-246f-46cc-83e9-234b3f5e1e04"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2450,50 +2456,50 @@
"x-ms-ratelimit-remaining-subscription-reads": [
"11970"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-correlation-request-id": [
- "73392cdf-3b2d-483b-8753-46e025281345"
+ "73893411-a3d7-444d-99cc-68cf0fb1aac6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T175243Z:73392cdf-3b2d-483b-8753-46e025281345"
+ "WESTUS:20200529T163034Z:73893411-a3d7-444d-99cc-68cf0fb1aac6"
],
- "Date": [
- "Fri, 13 Mar 2020 17:52:42 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet8918-a4240da6-ef18-4cf1-a4b8-c28721b692e9?api-version=2020-03-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0ODkxOC1hNDI0MGRhNi1lZjE4LTRjZjEtYTRiOC1jMjg3MjFiNjkyZTk/YXBpLXZlcnNpb249MjAyMC0wMy0wMQ==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/providers/Microsoft.Batch/locations/eastus/accountOperationResults/azsmnet1882-cf9de990-f5ff-4056-8645-32476ebe669c?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQmF0Y2gvbG9jYXRpb25zL2Vhc3R1cy9hY2NvdW50T3BlcmF0aW9uUmVzdWx0cy9henNtbmV0MTg4Mi1jZjlkZTk5MC1mNWZmLTQwNTYtODY0NS0zMjQ3NmViZTY2OWM/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Batch.BatchManagementClient/9.0.0.0"
+ "Microsoft.Azure.Management.Batch.BatchManagementClient/10.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:30:33 GMT"
+ ],
"Pragma": [
"no-cache"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-request-id": [
- "b1e53203-452d-4e92-a76e-44ca64bb2b24"
+ "df4a42dc-407c-43b2-a7c5-36cf212670f7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2501,45 +2507,39 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
"11969"
],
"x-ms-correlation-request-id": [
- "78a87453-3f6b-416c-9aad-6f5b24d6e555"
+ "dfc25eda-b2e3-4013-ab3b-75c52c67d993"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T175243Z:78a87453-3f6b-416c-9aad-6f5b24d6e555"
+ "WESTUS:20200529T163034Z:dfc25eda-b2e3-4013-ab3b-75c52c67d993"
],
- "Date": [
- "Fri, 13 Mar 2020 17:52:43 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/resourcegroups/azsmnet6300?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2MzAwP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourcegroups/azsmnet6894?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL3Jlc291cmNlZ3JvdXBzL2F6c21uZXQ2ODk0P2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "96a7577d-b625-472f-9d4c-91a187d7b6e8"
+ "c77de29c-ae96-4121-9979-1a4b779ea7bd"
],
- "Accept-Language": [
+ "accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -2549,11 +2549,14 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:30:36 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjMwMC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjg5NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
],
"Retry-After": [
"15"
@@ -2562,13 +2565,13 @@
"14999"
],
"x-ms-request-id": [
- "e8d15d85-c8ec-466e-a119-4b973c932473"
+ "53c9a7cd-e45a-46ae-a524-99397b53f676"
],
"x-ms-correlation-request-id": [
- "e8d15d85-c8ec-466e-a119-4b973c932473"
+ "53c9a7cd-e45a-46ae-a524-99397b53f676"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T175250Z:e8d15d85-c8ec-466e-a119-4b973c932473"
+ "WESTUS:20200529T163036Z:53c9a7cd-e45a-46ae-a524-99397b53f676"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2576,27 +2579,24 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Fri, 13 Mar 2020 17:52:49 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjMwMC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOak13TUMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjg5NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOamc1TkMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -2606,11 +2606,14 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:30:51 GMT"
+ ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjMwMC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
+ "https://management.azure.com/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjg5NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
],
"Retry-After": [
"15"
@@ -2619,13 +2622,13 @@
"11999"
],
"x-ms-request-id": [
- "aefd8352-1541-47f9-ae7c-4ab03b581d50"
+ "d1ece2d7-2beb-4588-8ccb-cd9e8aac80ee"
],
"x-ms-correlation-request-id": [
- "aefd8352-1541-47f9-ae7c-4ab03b581d50"
+ "d1ece2d7-2beb-4588-8ccb-cd9e8aac80ee"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T175305Z:aefd8352-1541-47f9-ae7c-4ab03b581d50"
+ "WESTUS:20200529T163051Z:d1ece2d7-2beb-4588-8ccb-cd9e8aac80ee"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2633,84 +2636,24 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Fri, 13 Mar 2020 17:53:05 GMT"
- ],
- "Expires": [
- "-1"
- ],
"Content-Length": [
"0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjMwMC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOak13TUMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28325.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjMwMC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
- ],
- "x-ms-request-id": [
- "defd9a50-0693-4923-849a-ed691e710243"
- ],
- "x-ms-correlation-request-id": [
- "defd9a50-0693-4923-849a-ed691e710243"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200313T175320Z:defd9a50-0693-4923-849a-ed691e710243"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Fri, 13 Mar 2020 17:53:20 GMT"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjMwMC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOak13TUMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjg5NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOamc1TkMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -2720,83 +2663,23 @@
"Cache-Control": [
"no-cache"
],
- "Pragma": [
- "no-cache"
- ],
- "Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjMwMC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
- ],
- "Retry-After": [
- "15"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
- ],
- "x-ms-request-id": [
- "8052ab83-0dee-4895-920c-03a554eac99a"
- ],
- "x-ms-correlation-request-id": [
- "8052ab83-0dee-4895-920c-03a554eac99a"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200313T175336Z:8052ab83-0dee-4895-920c-03a554eac99a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
"Date": [
- "Fri, 13 Mar 2020 17:53:35 GMT"
- ],
- "Expires": [
- "-1"
- ],
- "Content-Length": [
- "0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjMwMC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOak13TUMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28325.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
+ "Fri, 29 May 2020 16:31:06 GMT"
],
"Pragma": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjMwMC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10"
- ],
- "Retry-After": [
- "15"
- ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11998"
],
"x-ms-request-id": [
- "44c19d0a-9292-435e-8e87-d84e328f41c5"
+ "4eeaab98-7a8a-457d-91c2-d24655978d37"
],
"x-ms-correlation-request-id": [
- "44c19d0a-9292-435e-8e87-d84e328f41c5"
+ "4eeaab98-7a8a-457d-91c2-d24655978d37"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T175351Z:44c19d0a-9292-435e-8e87-d84e328f41c5"
+ "WESTUS:20200529T163106Z:4eeaab98-7a8a-457d-91c2-d24655978d37"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2804,78 +2687,24 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Fri, 13 Mar 2020 17:53:51 GMT"
- ],
- "Expires": [
- "-1"
- ],
"Content-Length": [
"0"
- ]
- },
- "ResponseBody": "",
- "StatusCode": 202
- },
- {
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjMwMC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOak13TUMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.28325.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
- ],
- "x-ms-request-id": [
- "1b2d7bea-223c-412b-9479-36745665f25b"
- ],
- "x-ms-correlation-request-id": [
- "1b2d7bea-223c-412b-9479-36745665f25b"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20200313T175406Z:1b2d7bea-223c-412b-9479-36745665f25b"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Date": [
- "Fri, 13 Mar 2020 17:54:06 GMT"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/2915bbd6-1252-405f-8173-6c00428146d9/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjMwMC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjkxNWJiZDYtMTI1Mi00MDVmLTgxNzMtNmMwMDQyODE0NmQ5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOak13TUMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlNNTkVUNjg5NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjFhYmQ2NzgtMThjNS00NjYwLTlmZGQtOGM1YmE2YjZmZTFmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xOTlRrVlVOamc1TkMxRlFWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbVZoYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.28325.01",
+ "FxVersion/4.6.26614.01",
"OSName/Windows",
"OSVersion/Microsoft.Windows.10.0.18363.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
@@ -2885,20 +2714,23 @@
"Cache-Control": [
"no-cache"
],
+ "Date": [
+ "Fri, 29 May 2020 16:31:06 GMT"
+ ],
"Pragma": [
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11997"
],
"x-ms-request-id": [
- "73fefe26-dc19-4a62-9b7e-8e429051cce5"
+ "f68668fa-78e0-4d8b-9121-a9235fd09b43"
],
"x-ms-correlation-request-id": [
- "73fefe26-dc19-4a62-9b7e-8e429051cce5"
+ "f68668fa-78e0-4d8b-9121-a9235fd09b43"
],
"x-ms-routing-request-id": [
- "WESTUS:20200313T175407Z:73fefe26-dc19-4a62-9b7e-8e429051cce5"
+ "WESTUS:20200529T163107Z:f68668fa-78e0-4d8b-9121-a9235fd09b43"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2906,14 +2738,11 @@
"X-Content-Type-Options": [
"nosniff"
],
- "Date": [
- "Fri, 13 Mar 2020 17:54:06 GMT"
+ "Content-Length": [
+ "0"
],
"Expires": [
"-1"
- ],
- "Content-Length": [
- "0"
]
},
"ResponseBody": "",
@@ -2922,11 +2751,11 @@
],
"Names": {
"BatchPoolEndToEndAsync": [
- "azsmnet6300",
- "azsmnet8918"
+ "azsmnet6894",
+ "azsmnet1882"
]
},
"Variables": {
- "SubscriptionId": "2915bbd6-1252-405f-8173-6c00428146d9"
+ "SubscriptionId": "21abd678-18c5-4660-9fdd-8c5ba6b6fe1f"
}
}
\ No newline at end of file