From c6f73144c97bae99a31130dbd231aa85dbcf52cd Mon Sep 17 00:00:00 2001
From: Dhawal Jain <41853104+dhawal777@users.noreply.github.com>
Date: Thu, 19 Nov 2020 06:22:16 +0530
Subject: [PATCH] SDK refresh to support new API version 2020-11-01 (#16871)
* SDK refresh to support new API version 2020-11-01
* Corrected package release notes.
* Corrected breaking change
---
.../mgmtmetadata/databox_resource-manager.txt | 12 +-
.../AzSdk.RP.props | 2 +-
.../src/Generated/DataBoxManagementClient.cs | 2 +-
.../src/Generated/JobsOperations.cs | 90 +-
.../src/Generated/Models/DoubleEncryption.cs | 66 +
.../Generated/Models/EncryptionPreferences.cs | 54 +
.../Generated/Models/IdentityProperties.cs | 60 +
.../src/Generated/Models/KeyEncryptionKey.cs | 11 +-
.../src/Generated/Models/Preferences.cs | 11 +-
.../src/Generated/Models/ResourceIdentity.cs | 13 +-
.../Models/ShareCredentialDetails.cs | 5 +-
.../Models/ShareDestinationFormatType.cs | 11 +-
.../Generated/Models/UserAssignedIdentity.cs | 61 +
.../Models/UserAssignedProperties.cs | 53 +
.../src/Generated/Operations.cs | 16 +-
.../SdkInfo_DataBoxManagementClient.cs | 12 +-
.../src/Generated/ServiceOperations.cs | 60 +-
.../Microsoft.Azure.Management.DataBox.csproj | 10 +-
.../src/Properties/AssemblyInfo.cs | 2 +-
.../JobCRUDTests/CmkEnablementTest.json | 426 +++----
.../CreateJobWithUserAssignedIdentity.json | 344 +++++
.../JobCRUDTests/DevicePasswordTest.json | 174 +--
.../JobCRUDTests/DoubleEncryptionTest.json | 1123 +++++++++++++++++
.../TestExportJobCRUDOperations.json | 635 +++++-----
.../JobCRUDTests/TestJobCRUDOperations.json | 637 +++++-----
.../JobCRUDTests/TestScheduledJob.json | 625 ++++-----
.../UpdateSystemAssignedToUserAssigned.json | 806 ++++++++++++
.../TestBookShipmentPickup.json | 40 +-
.../JobsActionsTests/TestListCredentials.json | 38 +-
.../OperationsTests/TestOperationsAPI.json | 42 +-
.../TestAvailableSkus.json | 38 +-
.../TestRegionConfiguration.json | 38 +-
...estRegionConfigurationByResourceGroup.json | 40 +-
.../TestValidateAddress.json | 38 +-
.../TestValidateInputs.json | 38 +-
.../TestValidateInputsByResourceGroup.json | 40 +-
.../TestValidateInputsSpecificToExport.json | 38 +-
...InputsSpecificToExportByResourceGroup.json | 40 +-
.../tests/Tests/JobCRUDTests.cs | 277 ++++
39 files changed, 4475 insertions(+), 1553 deletions(-)
create mode 100644 sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/DoubleEncryption.cs
create mode 100644 sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/EncryptionPreferences.cs
create mode 100644 sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/IdentityProperties.cs
create mode 100644 sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/UserAssignedIdentity.cs
create mode 100644 sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/UserAssignedProperties.cs
create mode 100644 sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobCRUDTests/CreateJobWithUserAssignedIdentity.json
create mode 100644 sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobCRUDTests/DoubleEncryptionTest.json
create mode 100644 sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobCRUDTests/UpdateSystemAssignedToUserAssigned.json
diff --git a/eng/mgmt/mgmtmetadata/databox_resource-manager.txt b/eng/mgmt/mgmtmetadata/databox_resource-manager.txt
index b87b1171fb5aa..ac6748b40b1b7 100644
--- a/eng/mgmt/mgmtmetadata/databox_resource-manager.txt
+++ b/eng/mgmt/mgmtmetadata/databox_resource-manager.txt
@@ -1,14 +1,14 @@
-Installing AutoRest version: latest
+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/databox/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=D:\1\oldProcess\azure-sdk-for-net\sdk
-2020-09-01 11:52:38 UTC
+cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/databox/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=D:\1\StorSimpleExpress\SDKRefresh11\azure-sdk-for-net\sdk
+2020-11-08 06:35:04 UTC
Azure-rest-api-specs repository information
GitHub fork: Azure
Branch: master
-Commit: e77323387ae041bf21a51ae61bf3a1ce95541a3f
+Commit: 82831834a7ce4b999d6fec363c0391da80ac2674
AutoRest information
-Requested version: latest
-Bootstrapper version: autorest@1.9.1
+Requested version: v2
+Bootstrapper version: autorest@2.0.4413
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/AzSdk.RP.props b/sdk/databox/Microsoft.Azure.Management.DataBox/AzSdk.RP.props
index dd2a7448140f8..af732987c8758 100644
--- a/sdk/databox/Microsoft.Azure.Management.DataBox/AzSdk.RP.props
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/AzSdk.RP.props
@@ -1,7 +1,7 @@
- DataBox_2020-04-01;
+ DataBox_2020-11-01;
$(PackageTags);$(CommonTags);$(AzureApiTag);
\ No newline at end of file
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/DataBoxManagementClient.cs b/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/DataBoxManagementClient.cs
index 4f3884b4aeecf..b641c5bd90d2e 100644
--- a/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/DataBoxManagementClient.cs
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/DataBoxManagementClient.cs
@@ -331,7 +331,7 @@ private void Initialize()
Jobs = new JobsOperations(this);
Service = new ServiceOperations(this);
BaseUri = new System.Uri("https://management.azure.com");
- ApiVersion = "2020-04-01";
+ ApiVersion = "2020-11-01";
AcceptLanguage = "en-US";
LongRunningOperationRetryTimeout = 30;
GenerateClientRequestId = true;
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/JobsOperations.cs b/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/JobsOperations.cs
index 7da1ec7a95dd1..e376e53af4f45 100644
--- a/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/JobsOperations.cs
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/JobsOperations.cs
@@ -84,7 +84,10 @@ internal JobsOperations(DataBoxManagementClient client)
{
throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId");
}
- string apiVersion = "2020-04-01";
+ if (Client.ApiVersion == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion");
+ }
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -92,7 +95,6 @@ internal JobsOperations(DataBoxManagementClient client)
{
_invocationId = ServiceClientTracing.NextInvocationId.ToString();
Dictionary tracingParameters = new Dictionary();
- tracingParameters.Add("apiVersion", apiVersion);
tracingParameters.Add("skipToken", skipToken);
tracingParameters.Add("cancellationToken", cancellationToken);
ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters);
@@ -102,9 +104,9 @@ internal JobsOperations(DataBoxManagementClient client)
var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.DataBox/jobs").ToString();
_url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId));
List _queryParameters = new List();
- if (apiVersion != null)
+ if (Client.ApiVersion != null)
{
- _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion)));
+ _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion)));
}
if (skipToken != null)
{
@@ -271,7 +273,10 @@ internal JobsOperations(DataBoxManagementClient client)
{
throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName");
}
- string apiVersion = "2020-04-01";
+ if (Client.ApiVersion == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion");
+ }
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -280,7 +285,6 @@ internal JobsOperations(DataBoxManagementClient client)
_invocationId = ServiceClientTracing.NextInvocationId.ToString();
Dictionary tracingParameters = new Dictionary();
tracingParameters.Add("resourceGroupName", resourceGroupName);
- tracingParameters.Add("apiVersion", apiVersion);
tracingParameters.Add("skipToken", skipToken);
tracingParameters.Add("cancellationToken", cancellationToken);
ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters);
@@ -291,9 +295,9 @@ internal JobsOperations(DataBoxManagementClient client)
_url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId));
_url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName));
List _queryParameters = new List();
- if (apiVersion != null)
+ if (Client.ApiVersion != null)
{
- _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion)));
+ _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion)));
}
if (skipToken != null)
{
@@ -484,7 +488,10 @@ internal JobsOperations(DataBoxManagementClient client)
throw new ValidationException(ValidationRules.Pattern, "jobName", "^[-\\w\\.]+$");
}
}
- string apiVersion = "2020-04-01";
+ if (Client.ApiVersion == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion");
+ }
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -494,7 +501,6 @@ internal JobsOperations(DataBoxManagementClient client)
Dictionary tracingParameters = new Dictionary();
tracingParameters.Add("resourceGroupName", resourceGroupName);
tracingParameters.Add("jobName", jobName);
- tracingParameters.Add("apiVersion", apiVersion);
tracingParameters.Add("expand", expand);
tracingParameters.Add("cancellationToken", cancellationToken);
ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters);
@@ -506,9 +512,9 @@ internal JobsOperations(DataBoxManagementClient client)
_url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName));
_url = _url.Replace("{jobName}", System.Uri.EscapeDataString(jobName));
List _queryParameters = new List();
- if (apiVersion != null)
+ if (Client.ApiVersion != null)
{
- _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion)));
+ _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion)));
}
if (expand != null)
{
@@ -782,6 +788,10 @@ internal JobsOperations(DataBoxManagementClient client)
throw new ValidationException(ValidationRules.Pattern, "jobName", "^[-\\w\\.]+$");
}
}
+ if (Client.ApiVersion == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion");
+ }
if (shipmentPickUpRequest == null)
{
throw new ValidationException(ValidationRules.CannotBeNull, "shipmentPickUpRequest");
@@ -790,7 +800,6 @@ internal JobsOperations(DataBoxManagementClient client)
{
shipmentPickUpRequest.Validate();
}
- string apiVersion = "2020-04-01";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -800,7 +809,6 @@ internal JobsOperations(DataBoxManagementClient client)
Dictionary tracingParameters = new Dictionary();
tracingParameters.Add("resourceGroupName", resourceGroupName);
tracingParameters.Add("jobName", jobName);
- tracingParameters.Add("apiVersion", apiVersion);
tracingParameters.Add("shipmentPickUpRequest", shipmentPickUpRequest);
tracingParameters.Add("cancellationToken", cancellationToken);
ServiceClientTracing.Enter(_invocationId, this, "BookShipmentPickUp", tracingParameters);
@@ -812,9 +820,9 @@ internal JobsOperations(DataBoxManagementClient client)
_url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName));
_url = _url.Replace("{jobName}", System.Uri.EscapeDataString(jobName));
List _queryParameters = new List();
- if (apiVersion != null)
+ if (Client.ApiVersion != null)
{
- _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion)));
+ _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion)));
}
if (_queryParameters.Count > 0)
{
@@ -1003,11 +1011,14 @@ internal JobsOperations(DataBoxManagementClient client)
throw new ValidationException(ValidationRules.Pattern, "jobName", "^[-\\w\\.]+$");
}
}
+ if (Client.ApiVersion == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion");
+ }
if (reason == null)
{
throw new ValidationException(ValidationRules.CannotBeNull, "reason");
}
- string apiVersion = "2020-04-01";
CancellationReason cancellationReason = new CancellationReason();
if (reason != null)
{
@@ -1022,7 +1033,6 @@ internal JobsOperations(DataBoxManagementClient client)
Dictionary tracingParameters = new Dictionary();
tracingParameters.Add("resourceGroupName", resourceGroupName);
tracingParameters.Add("jobName", jobName);
- tracingParameters.Add("apiVersion", apiVersion);
tracingParameters.Add("cancellationReason", cancellationReason);
tracingParameters.Add("cancellationToken", cancellationToken);
ServiceClientTracing.Enter(_invocationId, this, "Cancel", tracingParameters);
@@ -1034,9 +1044,9 @@ internal JobsOperations(DataBoxManagementClient client)
_url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName));
_url = _url.Replace("{jobName}", System.Uri.EscapeDataString(jobName));
List _queryParameters = new List();
- if (apiVersion != null)
+ if (Client.ApiVersion != null)
{
- _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion)));
+ _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion)));
}
if (_queryParameters.Count > 0)
{
@@ -1207,7 +1217,10 @@ internal JobsOperations(DataBoxManagementClient client)
throw new ValidationException(ValidationRules.Pattern, "jobName", "^[-\\w\\.]+$");
}
}
- string apiVersion = "2020-04-01";
+ if (Client.ApiVersion == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion");
+ }
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -1217,7 +1230,6 @@ internal JobsOperations(DataBoxManagementClient client)
Dictionary tracingParameters = new Dictionary();
tracingParameters.Add("resourceGroupName", resourceGroupName);
tracingParameters.Add("jobName", jobName);
- tracingParameters.Add("apiVersion", apiVersion);
tracingParameters.Add("cancellationToken", cancellationToken);
ServiceClientTracing.Enter(_invocationId, this, "ListCredentials", tracingParameters);
}
@@ -1228,9 +1240,9 @@ internal JobsOperations(DataBoxManagementClient client)
_url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName));
_url = _url.Replace("{jobName}", System.Uri.EscapeDataString(jobName));
List _queryParameters = new List();
- if (apiVersion != null)
+ if (Client.ApiVersion != null)
{
- _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion)));
+ _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion)));
}
if (_queryParameters.Count > 0)
{
@@ -1418,6 +1430,10 @@ internal JobsOperations(DataBoxManagementClient client)
throw new ValidationException(ValidationRules.Pattern, "jobName", "^[-\\w\\.]+$");
}
}
+ if (Client.ApiVersion == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion");
+ }
if (jobResource == null)
{
throw new ValidationException(ValidationRules.CannotBeNull, "jobResource");
@@ -1426,7 +1442,6 @@ internal JobsOperations(DataBoxManagementClient client)
{
jobResource.Validate();
}
- string apiVersion = "2020-04-01";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -1436,7 +1451,6 @@ internal JobsOperations(DataBoxManagementClient client)
Dictionary tracingParameters = new Dictionary();
tracingParameters.Add("resourceGroupName", resourceGroupName);
tracingParameters.Add("jobName", jobName);
- tracingParameters.Add("apiVersion", apiVersion);
tracingParameters.Add("jobResource", jobResource);
tracingParameters.Add("cancellationToken", cancellationToken);
ServiceClientTracing.Enter(_invocationId, this, "BeginCreate", tracingParameters);
@@ -1448,9 +1462,9 @@ internal JobsOperations(DataBoxManagementClient client)
_url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName));
_url = _url.Replace("{jobName}", System.Uri.EscapeDataString(jobName));
List _queryParameters = new List();
- if (apiVersion != null)
+ if (Client.ApiVersion != null)
{
- _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion)));
+ _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion)));
}
if (_queryParameters.Count > 0)
{
@@ -1636,7 +1650,10 @@ internal JobsOperations(DataBoxManagementClient client)
throw new ValidationException(ValidationRules.Pattern, "jobName", "^[-\\w\\.]+$");
}
}
- string apiVersion = "2020-04-01";
+ if (Client.ApiVersion == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion");
+ }
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -1646,7 +1663,6 @@ internal JobsOperations(DataBoxManagementClient client)
Dictionary tracingParameters = new Dictionary();
tracingParameters.Add("resourceGroupName", resourceGroupName);
tracingParameters.Add("jobName", jobName);
- tracingParameters.Add("apiVersion", apiVersion);
tracingParameters.Add("cancellationToken", cancellationToken);
ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters);
}
@@ -1657,9 +1673,9 @@ internal JobsOperations(DataBoxManagementClient client)
_url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName));
_url = _url.Replace("{jobName}", System.Uri.EscapeDataString(jobName));
List _queryParameters = new List();
- if (apiVersion != null)
+ if (Client.ApiVersion != null)
{
- _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion)));
+ _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion)));
}
if (_queryParameters.Count > 0)
{
@@ -1831,11 +1847,14 @@ internal JobsOperations(DataBoxManagementClient client)
throw new ValidationException(ValidationRules.Pattern, "jobName", "^[-\\w\\.]+$");
}
}
+ if (Client.ApiVersion == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion");
+ }
if (jobResourceUpdateParameter == null)
{
throw new ValidationException(ValidationRules.CannotBeNull, "jobResourceUpdateParameter");
}
- string apiVersion = "2020-04-01";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -1845,7 +1864,6 @@ internal JobsOperations(DataBoxManagementClient client)
Dictionary tracingParameters = new Dictionary();
tracingParameters.Add("resourceGroupName", resourceGroupName);
tracingParameters.Add("jobName", jobName);
- tracingParameters.Add("apiVersion", apiVersion);
tracingParameters.Add("ifMatch", ifMatch);
tracingParameters.Add("jobResourceUpdateParameter", jobResourceUpdateParameter);
tracingParameters.Add("cancellationToken", cancellationToken);
@@ -1858,9 +1876,9 @@ internal JobsOperations(DataBoxManagementClient client)
_url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName));
_url = _url.Replace("{jobName}", System.Uri.EscapeDataString(jobName));
List _queryParameters = new List();
- if (apiVersion != null)
+ if (Client.ApiVersion != null)
{
- _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion)));
+ _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion)));
}
if (_queryParameters.Count > 0)
{
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/DoubleEncryption.cs b/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/DoubleEncryption.cs
new file mode 100644
index 0000000000000..8239ea87b49c0
--- /dev/null
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/DoubleEncryption.cs
@@ -0,0 +1,66 @@
+//
+// 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.DataBox.Models
+{
+ using Newtonsoft.Json;
+ using Newtonsoft.Json.Converters;
+ using System.Runtime;
+ using System.Runtime.Serialization;
+
+ ///
+ /// Defines values for DoubleEncryption.
+ ///
+ [JsonConverter(typeof(StringEnumConverter))]
+ public enum DoubleEncryption
+ {
+ ///
+ /// Software-based encryption is enabled.
+ ///
+ [EnumMember(Value = "Enabled")]
+ Enabled,
+ ///
+ /// Software-based encryption is disabled.
+ ///
+ [EnumMember(Value = "Disabled")]
+ Disabled
+ }
+ internal static class DoubleEncryptionEnumExtension
+ {
+ internal static string ToSerializedValue(this DoubleEncryption? value)
+ {
+ return value == null ? null : ((DoubleEncryption)value).ToSerializedValue();
+ }
+
+ internal static string ToSerializedValue(this DoubleEncryption value)
+ {
+ switch( value )
+ {
+ case DoubleEncryption.Enabled:
+ return "Enabled";
+ case DoubleEncryption.Disabled:
+ return "Disabled";
+ }
+ return null;
+ }
+
+ internal static DoubleEncryption? ParseDoubleEncryption(this string value)
+ {
+ switch( value )
+ {
+ case "Enabled":
+ return DoubleEncryption.Enabled;
+ case "Disabled":
+ return DoubleEncryption.Disabled;
+ }
+ return null;
+ }
+ }
+}
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/EncryptionPreferences.cs b/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/EncryptionPreferences.cs
new file mode 100644
index 0000000000000..c1081f73f726a
--- /dev/null
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/EncryptionPreferences.cs
@@ -0,0 +1,54 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.DataBox.Models
+{
+ using Newtonsoft.Json;
+ using System.Linq;
+
+ ///
+ /// Preferences related to the Encryption.
+ ///
+ public partial class EncryptionPreferences
+ {
+ ///
+ /// Initializes a new instance of the EncryptionPreferences class.
+ ///
+ public EncryptionPreferences()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the EncryptionPreferences class.
+ ///
+ /// Defines secondary layer of
+ /// software-based encryption enablement. Possible values include:
+ /// 'Enabled', 'Disabled'
+ public EncryptionPreferences(DoubleEncryption? doubleEncryption = default(DoubleEncryption?))
+ {
+ DoubleEncryption = doubleEncryption;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets or sets defines secondary layer of software-based encryption
+ /// enablement. Possible values include: 'Enabled', 'Disabled'
+ ///
+ [JsonProperty(PropertyName = "doubleEncryption")]
+ public DoubleEncryption? DoubleEncryption { get; set; }
+
+ }
+}
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/IdentityProperties.cs b/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/IdentityProperties.cs
new file mode 100644
index 0000000000000..22d11decf8325
--- /dev/null
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/IdentityProperties.cs
@@ -0,0 +1,60 @@
+//
+// 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.DataBox.Models
+{
+ using Newtonsoft.Json;
+ using System.Linq;
+
+ ///
+ /// Managed identity properties.
+ ///
+ public partial class IdentityProperties
+ {
+ ///
+ /// Initializes a new instance of the IdentityProperties class.
+ ///
+ public IdentityProperties()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the IdentityProperties class.
+ ///
+ /// Managed service identity type.
+ /// User assigned identity
+ /// properties.
+ public IdentityProperties(string type = default(string), UserAssignedProperties userAssigned = default(UserAssignedProperties))
+ {
+ Type = type;
+ UserAssigned = userAssigned;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets or sets managed service identity type.
+ ///
+ [JsonProperty(PropertyName = "type")]
+ public string Type { get; set; }
+
+ ///
+ /// Gets or sets user assigned identity properties.
+ ///
+ [JsonProperty(PropertyName = "userAssigned")]
+ public UserAssignedProperties UserAssigned { get; set; }
+
+ }
+}
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/KeyEncryptionKey.cs b/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/KeyEncryptionKey.cs
index d658d54526638..0e4d23d6e43b6 100644
--- a/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/KeyEncryptionKey.cs
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/KeyEncryptionKey.cs
@@ -32,13 +32,16 @@ public KeyEncryptionKey()
/// Type of encryption key used for key
/// encryption. Possible values include: 'MicrosoftManaged',
/// 'CustomerManaged'
+ /// Managed identity properties used
+ /// for key encryption.
/// Key encryption key. It is required in case of
/// Customer managed KekType.
/// Kek vault resource id. It is
/// required in case of Customer managed KekType.
- public KeyEncryptionKey(KekType kekType, string kekUrl = default(string), string kekVaultResourceID = default(string))
+ public KeyEncryptionKey(KekType kekType, IdentityProperties identityProperties = default(IdentityProperties), string kekUrl = default(string), string kekVaultResourceID = default(string))
{
KekType = kekType;
+ IdentityProperties = identityProperties;
KekUrl = kekUrl;
KekVaultResourceID = kekVaultResourceID;
CustomInit();
@@ -56,6 +59,12 @@ public KeyEncryptionKey()
[JsonProperty(PropertyName = "kekType")]
public KekType KekType { get; set; }
+ ///
+ /// Gets or sets managed identity properties used for key encryption.
+ ///
+ [JsonProperty(PropertyName = "identityProperties")]
+ public IdentityProperties IdentityProperties { get; set; }
+
///
/// Gets or sets key encryption key. It is required in case of Customer
/// managed KekType.
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/Preferences.cs b/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/Preferences.cs
index 58b346a6c1463..f457279cda279 100644
--- a/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/Preferences.cs
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/Preferences.cs
@@ -35,10 +35,13 @@ public Preferences()
/// region.
/// Preferences related to the
/// shipment logistics of the sku.
- public Preferences(IList preferredDataCenterRegion = default(IList), TransportPreferences transportPreferences = default(TransportPreferences))
+ /// Preferences related to the
+ /// Encryption.
+ public Preferences(IList preferredDataCenterRegion = default(IList), TransportPreferences transportPreferences = default(TransportPreferences), EncryptionPreferences encryptionPreferences = default(EncryptionPreferences))
{
PreferredDataCenterRegion = preferredDataCenterRegion;
TransportPreferences = transportPreferences;
+ EncryptionPreferences = encryptionPreferences;
CustomInit();
}
@@ -60,6 +63,12 @@ public Preferences()
[JsonProperty(PropertyName = "transportPreferences")]
public TransportPreferences TransportPreferences { get; set; }
+ ///
+ /// Gets or sets preferences related to the Encryption.
+ ///
+ [JsonProperty(PropertyName = "encryptionPreferences")]
+ public EncryptionPreferences EncryptionPreferences { get; set; }
+
///
/// Validate the object.
///
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/ResourceIdentity.cs b/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/ResourceIdentity.cs
index 2cdc1abc7f2f2..066917529b1f2 100644
--- a/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/ResourceIdentity.cs
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/ResourceIdentity.cs
@@ -11,6 +11,8 @@
namespace Microsoft.Azure.Management.DataBox.Models
{
using Newtonsoft.Json;
+ using System.Collections;
+ using System.Collections.Generic;
using System.Linq;
///
@@ -33,11 +35,14 @@ public ResourceIdentity()
/// Service Principal Id backing the
/// Msi
/// Home Tenant Id
- public ResourceIdentity(string type = default(string), string principalId = default(string), string tenantId = default(string))
+ /// User Assigned
+ /// Identities
+ public ResourceIdentity(string type = default(string), string principalId = default(string), string tenantId = default(string), IDictionary userAssignedIdentities = default(IDictionary))
{
Type = type;
PrincipalId = principalId;
TenantId = tenantId;
+ UserAssignedIdentities = userAssignedIdentities;
CustomInit();
}
@@ -64,5 +69,11 @@ public ResourceIdentity()
[JsonProperty(PropertyName = "tenantId")]
public string TenantId { get; private set; }
+ ///
+ /// Gets or sets user Assigned Identities
+ ///
+ [JsonProperty(PropertyName = "userAssignedIdentities")]
+ public IDictionary UserAssignedIdentities { get; set; }
+
}
}
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/ShareCredentialDetails.cs b/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/ShareCredentialDetails.cs
index 5d971f64157e1..15a09e11318f4 100644
--- a/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/ShareCredentialDetails.cs
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/ShareCredentialDetails.cs
@@ -34,7 +34,7 @@ public ShareCredentialDetails()
/// Name of the share.
/// Type of the share. Possible values include:
/// 'UnknownType', 'HCS', 'BlockBlob', 'PageBlob', 'AzureFile',
- /// 'ManagedDisk'
+ /// 'ManagedDisk', 'AzurePremiumFiles'
/// User name for the share.
/// Password for the share.
/// Access protocols supported
@@ -62,7 +62,8 @@ public ShareCredentialDetails()
///
/// Gets type of the share. Possible values include: 'UnknownType',
- /// 'HCS', 'BlockBlob', 'PageBlob', 'AzureFile', 'ManagedDisk'
+ /// 'HCS', 'BlockBlob', 'PageBlob', 'AzureFile', 'ManagedDisk',
+ /// 'AzurePremiumFiles'
///
[JsonProperty(PropertyName = "shareType")]
public ShareDestinationFormatType? ShareType { get; private set; }
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/ShareDestinationFormatType.cs b/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/ShareDestinationFormatType.cs
index 398ff925fe92d..17e2d6dfbefc6 100644
--- a/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/ShareDestinationFormatType.cs
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/ShareDestinationFormatType.cs
@@ -50,7 +50,12 @@ public enum ShareDestinationFormatType
/// Azure Compute Disk.
///
[EnumMember(Value = "ManagedDisk")]
- ManagedDisk
+ ManagedDisk,
+ ///
+ /// Azure storage Premium Files format
+ ///
+ [EnumMember(Value = "AzurePremiumFiles")]
+ AzurePremiumFiles
}
internal static class ShareDestinationFormatTypeEnumExtension
{
@@ -75,6 +80,8 @@ internal static string ToSerializedValue(this ShareDestinationFormatType value)
return "AzureFile";
case ShareDestinationFormatType.ManagedDisk:
return "ManagedDisk";
+ case ShareDestinationFormatType.AzurePremiumFiles:
+ return "AzurePremiumFiles";
}
return null;
}
@@ -95,6 +102,8 @@ internal static string ToSerializedValue(this ShareDestinationFormatType value)
return ShareDestinationFormatType.AzureFile;
case "ManagedDisk":
return ShareDestinationFormatType.ManagedDisk;
+ case "AzurePremiumFiles":
+ return ShareDestinationFormatType.AzurePremiumFiles;
}
return null;
}
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/UserAssignedIdentity.cs b/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/UserAssignedIdentity.cs
new file mode 100644
index 0000000000000..af1abc4267961
--- /dev/null
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/UserAssignedIdentity.cs
@@ -0,0 +1,61 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.DataBox.Models
+{
+ using Newtonsoft.Json;
+ using System.Linq;
+
+ ///
+ /// Class defining User assigned identity details.
+ ///
+ public partial class UserAssignedIdentity
+ {
+ ///
+ /// Initializes a new instance of the UserAssignedIdentity class.
+ ///
+ public UserAssignedIdentity()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the UserAssignedIdentity class.
+ ///
+ /// The principal id of user assigned
+ /// identity.
+ /// The client id of user assigned
+ /// identity.
+ public UserAssignedIdentity(string principalId = default(string), string clientId = default(string))
+ {
+ PrincipalId = principalId;
+ ClientId = clientId;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets the principal id of user assigned identity.
+ ///
+ [JsonProperty(PropertyName = "principalId")]
+ public string PrincipalId { get; private set; }
+
+ ///
+ /// Gets the client id of user assigned identity.
+ ///
+ [JsonProperty(PropertyName = "clientId")]
+ public string ClientId { get; private set; }
+
+ }
+}
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/UserAssignedProperties.cs b/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/UserAssignedProperties.cs
new file mode 100644
index 0000000000000..664a38bffffb3
--- /dev/null
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Models/UserAssignedProperties.cs
@@ -0,0 +1,53 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.DataBox.Models
+{
+ using Newtonsoft.Json;
+ using System.Linq;
+
+ ///
+ /// User assigned identity properties.
+ ///
+ public partial class UserAssignedProperties
+ {
+ ///
+ /// Initializes a new instance of the UserAssignedProperties class.
+ ///
+ public UserAssignedProperties()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the UserAssignedProperties class.
+ ///
+ /// Arm resource id for user assigned identity
+ /// to be used to fetch MSI token.
+ public UserAssignedProperties(string resourceId = default(string))
+ {
+ ResourceId = resourceId;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets or sets arm resource id for user assigned identity to be used
+ /// to fetch MSI token.
+ ///
+ [JsonProperty(PropertyName = "resourceId")]
+ public string ResourceId { get; set; }
+
+ }
+}
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Operations.cs b/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Operations.cs
index 33f2b4b3f03a0..64623033b8053 100644
--- a/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Operations.cs
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/Operations.cs
@@ -65,12 +65,21 @@ internal Operations(DataBoxManagementClient client)
///
/// Thrown when unable to deserialize the response
///
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ ///
+ /// Thrown when a required parameter is null
+ ///
///
/// A response object containing the response body and response headers.
///
public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
{
- string apiVersion = "2020-04-01";
+ if (Client.ApiVersion == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion");
+ }
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -78,7 +87,6 @@ internal Operations(DataBoxManagementClient client)
{
_invocationId = ServiceClientTracing.NextInvocationId.ToString();
Dictionary tracingParameters = new Dictionary();
- tracingParameters.Add("apiVersion", apiVersion);
tracingParameters.Add("cancellationToken", cancellationToken);
ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters);
}
@@ -86,9 +94,9 @@ internal Operations(DataBoxManagementClient client)
var _baseUrl = Client.BaseUri.AbsoluteUri;
var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.DataBox/operations").ToString();
List _queryParameters = new List();
- if (apiVersion != null)
+ if (Client.ApiVersion != null)
{
- _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion)));
+ _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion)));
}
if (_queryParameters.Count > 0)
{
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/SdkInfo_DataBoxManagementClient.cs b/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/SdkInfo_DataBoxManagementClient.cs
index 72b5a353c879b..1930d229d475f 100644
--- a/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/SdkInfo_DataBoxManagementClient.cs
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/SdkInfo_DataBoxManagementClient.cs
@@ -19,17 +19,19 @@ public static IEnumerable> ApiInfo_DataBoxManageme
{
return new Tuple[]
{
-
+ new Tuple("DataBox", "Jobs", "2020-11-01"),
+ new Tuple("DataBox", "Operations", "2020-11-01"),
+ new Tuple("DataBox", "Service", "2020-11-01"),
}.AsEnumerable();
}
}
// BEGIN: Code Generation Metadata Section
- public static readonly String AutoRestVersion = "latest";
- public static readonly String AutoRestBootStrapperVersion = "autorest@1.9.1";
- public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/databox/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=D:\\1\\oldProcess\\azure-sdk-for-net\\sdk";
+ 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/databox/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=D:\\1\\StorSimpleExpress\\SDKRefresh11\\azure-sdk-for-net\\sdk";
public static readonly String GithubForkName = "Azure";
public static readonly String GithubBranchName = "master";
- public static readonly String GithubCommidId = "e77323387ae041bf21a51ae61bf3a1ce95541a3f";
+ public static readonly String GithubCommidId = "82831834a7ce4b999d6fec363c0391da80ac2674";
public static readonly String CodeGenerationErrors = "";
public static readonly String GithubRepoName = "azure-rest-api-specs";
// END: Code Generation Metadata Section
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/ServiceOperations.cs b/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/ServiceOperations.cs
index dc6a2d4c986fe..2bfcf8490fffc 100644
--- a/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/ServiceOperations.cs
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/src/Generated/ServiceOperations.cs
@@ -98,6 +98,10 @@ internal ServiceOperations(DataBoxManagementClient client)
{
throw new ValidationException(ValidationRules.CannotBeNull, "location");
}
+ if (Client.ApiVersion == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion");
+ }
if (availableSkuRequest == null)
{
throw new ValidationException(ValidationRules.CannotBeNull, "availableSkuRequest");
@@ -106,7 +110,6 @@ internal ServiceOperations(DataBoxManagementClient client)
{
availableSkuRequest.Validate();
}
- string apiVersion = "2020-04-01";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -116,7 +119,6 @@ internal ServiceOperations(DataBoxManagementClient client)
Dictionary tracingParameters = new Dictionary();
tracingParameters.Add("resourceGroupName", resourceGroupName);
tracingParameters.Add("location", location);
- tracingParameters.Add("apiVersion", apiVersion);
tracingParameters.Add("availableSkuRequest", availableSkuRequest);
tracingParameters.Add("cancellationToken", cancellationToken);
ServiceClientTracing.Enter(_invocationId, this, "ListAvailableSkusByResourceGroup", tracingParameters);
@@ -128,9 +130,9 @@ internal ServiceOperations(DataBoxManagementClient client)
_url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName));
_url = _url.Replace("{location}", System.Uri.EscapeDataString(location));
List _queryParameters = new List();
- if (apiVersion != null)
+ if (Client.ApiVersion != null)
{
- _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion)));
+ _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion)));
}
if (_queryParameters.Count > 0)
{
@@ -301,6 +303,10 @@ internal ServiceOperations(DataBoxManagementClient client)
{
throw new ValidationException(ValidationRules.CannotBeNull, "location");
}
+ if (Client.ApiVersion == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion");
+ }
if (validateAddress == null)
{
throw new ValidationException(ValidationRules.CannotBeNull, "validateAddress");
@@ -309,7 +315,6 @@ internal ServiceOperations(DataBoxManagementClient client)
{
validateAddress.Validate();
}
- string apiVersion = "2020-04-01";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -318,7 +323,6 @@ internal ServiceOperations(DataBoxManagementClient client)
_invocationId = ServiceClientTracing.NextInvocationId.ToString();
Dictionary tracingParameters = new Dictionary();
tracingParameters.Add("location", location);
- tracingParameters.Add("apiVersion", apiVersion);
tracingParameters.Add("validateAddress", validateAddress);
tracingParameters.Add("cancellationToken", cancellationToken);
ServiceClientTracing.Enter(_invocationId, this, "ValidateAddressMethod", tracingParameters);
@@ -329,9 +333,9 @@ internal ServiceOperations(DataBoxManagementClient client)
_url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId));
_url = _url.Replace("{location}", System.Uri.EscapeDataString(location));
List _queryParameters = new List();
- if (apiVersion != null)
+ if (Client.ApiVersion != null)
{
- _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion)));
+ _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion)));
}
if (_queryParameters.Count > 0)
{
@@ -507,6 +511,10 @@ internal ServiceOperations(DataBoxManagementClient client)
{
throw new ValidationException(ValidationRules.CannotBeNull, "location");
}
+ if (Client.ApiVersion == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion");
+ }
if (validationRequest == null)
{
throw new ValidationException(ValidationRules.CannotBeNull, "validationRequest");
@@ -515,7 +523,6 @@ internal ServiceOperations(DataBoxManagementClient client)
{
validationRequest.Validate();
}
- string apiVersion = "2020-04-01";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -525,7 +532,6 @@ internal ServiceOperations(DataBoxManagementClient client)
Dictionary tracingParameters = new Dictionary();
tracingParameters.Add("resourceGroupName", resourceGroupName);
tracingParameters.Add("location", location);
- tracingParameters.Add("apiVersion", apiVersion);
tracingParameters.Add("validationRequest", validationRequest);
tracingParameters.Add("cancellationToken", cancellationToken);
ServiceClientTracing.Enter(_invocationId, this, "ValidateInputsByResourceGroup", tracingParameters);
@@ -537,9 +543,9 @@ internal ServiceOperations(DataBoxManagementClient client)
_url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName));
_url = _url.Replace("{location}", System.Uri.EscapeDataString(location));
List _queryParameters = new List();
- if (apiVersion != null)
+ if (Client.ApiVersion != null)
{
- _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion)));
+ _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion)));
}
if (_queryParameters.Count > 0)
{
@@ -708,6 +714,10 @@ internal ServiceOperations(DataBoxManagementClient client)
{
throw new ValidationException(ValidationRules.CannotBeNull, "location");
}
+ if (Client.ApiVersion == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion");
+ }
if (validationRequest == null)
{
throw new ValidationException(ValidationRules.CannotBeNull, "validationRequest");
@@ -716,7 +726,6 @@ internal ServiceOperations(DataBoxManagementClient client)
{
validationRequest.Validate();
}
- string apiVersion = "2020-04-01";
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
@@ -725,7 +734,6 @@ internal ServiceOperations(DataBoxManagementClient client)
_invocationId = ServiceClientTracing.NextInvocationId.ToString();
Dictionary tracingParameters = new Dictionary();
tracingParameters.Add("location", location);
- tracingParameters.Add("apiVersion", apiVersion);
tracingParameters.Add("validationRequest", validationRequest);
tracingParameters.Add("cancellationToken", cancellationToken);
ServiceClientTracing.Enter(_invocationId, this, "ValidateInputs", tracingParameters);
@@ -736,9 +744,9 @@ internal ServiceOperations(DataBoxManagementClient client)
_url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId));
_url = _url.Replace("{location}", System.Uri.EscapeDataString(location));
List _queryParameters = new List();
- if (apiVersion != null)
+ if (Client.ApiVersion != null)
{
- _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion)));
+ _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion)));
}
if (_queryParameters.Count > 0)
{
@@ -910,11 +918,14 @@ internal ServiceOperations(DataBoxManagementClient client)
{
throw new ValidationException(ValidationRules.CannotBeNull, "location");
}
+ if (Client.ApiVersion == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion");
+ }
if (scheduleAvailabilityRequest != null)
{
scheduleAvailabilityRequest.Validate();
}
- string apiVersion = "2020-04-01";
RegionConfigurationRequest regionConfigurationRequest = new RegionConfigurationRequest();
if (scheduleAvailabilityRequest != null || transportAvailabilityRequest != null)
{
@@ -929,7 +940,6 @@ internal ServiceOperations(DataBoxManagementClient client)
_invocationId = ServiceClientTracing.NextInvocationId.ToString();
Dictionary tracingParameters = new Dictionary();
tracingParameters.Add("location", location);
- tracingParameters.Add("apiVersion", apiVersion);
tracingParameters.Add("regionConfigurationRequest", regionConfigurationRequest);
tracingParameters.Add("cancellationToken", cancellationToken);
ServiceClientTracing.Enter(_invocationId, this, "RegionConfiguration", tracingParameters);
@@ -940,9 +950,9 @@ internal ServiceOperations(DataBoxManagementClient client)
_url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId));
_url = _url.Replace("{location}", System.Uri.EscapeDataString(location));
List _queryParameters = new List();
- if (apiVersion != null)
+ if (Client.ApiVersion != null)
{
- _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion)));
+ _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion)));
}
if (_queryParameters.Count > 0)
{
@@ -1121,11 +1131,14 @@ internal ServiceOperations(DataBoxManagementClient client)
{
throw new ValidationException(ValidationRules.CannotBeNull, "location");
}
+ if (Client.ApiVersion == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion");
+ }
if (scheduleAvailabilityRequest != null)
{
scheduleAvailabilityRequest.Validate();
}
- string apiVersion = "2020-04-01";
RegionConfigurationRequest regionConfigurationRequest = new RegionConfigurationRequest();
if (scheduleAvailabilityRequest != null || transportAvailabilityRequest != null)
{
@@ -1141,7 +1154,6 @@ internal ServiceOperations(DataBoxManagementClient client)
Dictionary tracingParameters = new Dictionary();
tracingParameters.Add("resourceGroupName", resourceGroupName);
tracingParameters.Add("location", location);
- tracingParameters.Add("apiVersion", apiVersion);
tracingParameters.Add("regionConfigurationRequest", regionConfigurationRequest);
tracingParameters.Add("cancellationToken", cancellationToken);
ServiceClientTracing.Enter(_invocationId, this, "RegionConfigurationByResourceGroup", tracingParameters);
@@ -1153,9 +1165,9 @@ internal ServiceOperations(DataBoxManagementClient client)
_url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName));
_url = _url.Replace("{location}", System.Uri.EscapeDataString(location));
List _queryParameters = new List();
- if (apiVersion != null)
+ if (Client.ApiVersion != null)
{
- _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion)));
+ _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion)));
}
if (_queryParameters.Count > 0)
{
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/src/Microsoft.Azure.Management.DataBox.csproj b/sdk/databox/Microsoft.Azure.Management.DataBox/src/Microsoft.Azure.Management.DataBox.csproj
index db1211ee97fc5..74799981010b6 100644
--- a/sdk/databox/Microsoft.Azure.Management.DataBox/src/Microsoft.Azure.Management.DataBox.csproj
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/src/Microsoft.Azure.Management.DataBox.csproj
@@ -7,20 +7,16 @@
Microsoft.Azure.Management.DataBox
Microsoft Azure Management DataBox library
Microsoft.Azure.Management.DataBox
- 1.2.0
+ 1.3.0
AzureDataBox;DataBox;
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/src/Properties/AssemblyInfo.cs b/sdk/databox/Microsoft.Azure.Management.DataBox/src/Properties/AssemblyInfo.cs
index 8cbc0bb55c223..907a71060836e 100644
--- a/sdk/databox/Microsoft.Azure.Management.DataBox/src/Properties/AssemblyInfo.cs
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/src/Properties/AssemblyInfo.cs
@@ -8,7 +8,7 @@
[assembly: AssemblyDescription("Provides Microsoft Azure DataBox management functions for managing the Microsoft Azure DataBox service.")]
[assembly: AssemblyVersion("1.0.0")]
-[assembly: AssemblyFileVersion("1.2.0")]
+[assembly: AssemblyFileVersion("1.3.0")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Microsoft")]
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobCRUDTests/CmkEnablementTest.json b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobCRUDTests/CmkEnablementTest.json
index 32f02035796d6..ca01cb07f4c8d 100644
--- a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobCRUDTests/CmkEnablementTest.json
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobCRUDTests/CmkEnablementTest.json
@@ -1,21 +1,21 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/SdkRg1089?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlZ3JvdXBzL1Nka1JnMTA4OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/SdkRg5486?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlZ3JvdXBzL1Nka1JnNTQ4Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"westus\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "532bc465-2542-4527-9c0b-e833d2500e08"
+ "916fd265-bc40-4239-a8bc-7b8dd8f9ab78"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
],
"Content-Type": [
@@ -36,13 +36,13 @@
"1199"
],
"x-ms-request-id": [
- "0d76a7cd-bde8-4c77-ae0d-e668eb3a9cc3"
+ "6f4b3be5-7619-4af3-89e0-cfe7baec3f88"
],
"x-ms-correlation-request-id": [
- "0d76a7cd-bde8-4c77-ae0d-e668eb3a9cc3"
+ "6f4b3be5-7619-4af3-89e0-cfe7baec3f88"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T050309Z:0d76a7cd-bde8-4c77-ae0d-e668eb3a9cc3"
+ "WESTINDIA:20201110T133933Z:6f4b3be5-7619-4af3-89e0-cfe7baec3f88"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51,7 +51,7 @@
"nosniff"
],
"Date": [
- "Mon, 31 Aug 2020 05:03:09 GMT"
+ "Tue, 10 Nov 2020 13:39:32 GMT"
],
"Content-Length": [
"171"
@@ -63,26 +63,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1089\",\r\n \"name\": \"SdkRg1089\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg5486\",\r\n \"name\": \"SdkRg5486\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1089/providers/Microsoft.DataBox/jobs/SdkJob7793?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMTA4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I3NzkzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg5486/providers/Microsoft.DataBox/jobs/SdkJob2399?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnNTQ4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2IyMzk5P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"details\": {\r\n \"jobDetailsType\": \"DataBox\",\r\n \"contactDetails\": {\r\n \"contactName\": \"Public SDK Test\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/databoxbvt1/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount2\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dbfb511c-3dd1-4132-a5ee-63697d8867e6"
+ "65883d2a-0811-4e81-9894-1de7131a7fb8"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -99,37 +99,37 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/434fb99d-9c8d-42ef-bd36-0b04690f300f?api-version=2018-01-01"
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/54153d24-a46f-4398-9c06-70003f6ade45?api-version=2018-01-01"
],
"Retry-After": [
"10"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "77906645-b151-4bfb-b022-0bc2e2466fdb"
+ "86282e7f-3913-41ff-8f02-d0865e83fd9c"
],
"x-ms-client-request-id": [
- "dbfb511c-3dd1-4132-a5ee-63697d8867e6"
+ "65883d2a-0811-4e81-9894-1de7131a7fb8"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Kestrel"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "77906645-b151-4bfb-b022-0bc2e2466fdb"
+ "86282e7f-3913-41ff-8f02-d0865e83fd9c"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T050322Z:77906645-b151-4bfb-b022-0bc2e2466fdb"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T133937Z:86282e7f-3913-41ff-8f02-d0865e83fd9c"
],
"Date": [
- "Mon, 31 Aug 2020 05:03:21 GMT"
+ "Tue, 10 Nov 2020 13:39:37 GMT"
],
"Expires": [
"-1"
@@ -142,16 +142,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/434fb99d-9c8d-42ef-bd36-0b04690f300f?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNDM0ZmI5OWQtOWM4ZC00MmVmLWJkMzYtMGIwNDY5MGYzMDBmP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/54153d24-a46f-4398-9c06-70003f6ade45?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNTQxNTNkMjQtYTQ2Zi00Mzk4LTljMDYtNzAwMDNmNmFkZTQ1P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -162,37 +162,37 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1089/providers/Microsoft.DataBox/jobs/SdkJob7793?api-version=2018-01-01"
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg5486/providers/Microsoft.DataBox/jobs/SdkJob2399?api-version=2018-01-01"
],
"Retry-After": [
"10"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "47a53a73-1b9e-487c-b05b-cc4c1fcf5955"
+ "9bbcfc11-0c57-4792-8cfa-aa4e4c566fba"
],
"x-ms-client-request-id": [
- "287f5abf-0011-4ad1-a7ca-2a388d4c0d44"
+ "511075e8-3974-45b1-90fd-c1626060f3e5"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Kestrel"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11993"
],
"x-ms-correlation-request-id": [
- "47a53a73-1b9e-487c-b05b-cc4c1fcf5955"
+ "9bbcfc11-0c57-4792-8cfa-aa4e4c566fba"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T050332Z:47a53a73-1b9e-487c-b05b-cc4c1fcf5955"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T133947Z:9bbcfc11-0c57-4792-8cfa-aa4e4c566fba"
],
"Date": [
- "Mon, 31 Aug 2020 05:03:31 GMT"
+ "Tue, 10 Nov 2020 13:39:47 GMT"
],
"Expires": [
"-1"
@@ -205,16 +205,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1089/providers/Microsoft.DataBox/jobs/SdkJob7793?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMTA4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I3NzkzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg5486/providers/Microsoft.DataBox/jobs/SdkJob2399?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnNTQ4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2IyMzk5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -224,32 +224,32 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "809b8f53-43b1-421a-816b-b1082255a37d"
+ "9393ef1f-11dc-4ebb-9747-8ecbf0e2d388"
],
"x-ms-client-request-id": [
- "15356d7a-a938-42b1-93ea-ef6f92a9c3e8"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "9a1907fc-a111-477b-a222-79220c178382"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "809b8f53-43b1-421a-816b-b1082255a37d"
+ "9393ef1f-11dc-4ebb-9747-8ecbf0e2d388"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T050343Z:809b8f53-43b1-421a-816b-b1082255a37d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T133958Z:9393ef1f-11dc-4ebb-9747-8ecbf0e2d388"
],
"Date": [
- "Mon, 31 Aug 2020 05:03:42 GMT"
+ "Tue, 10 Nov 2020 13:39:57 GMT"
],
"Content-Length": [
"765"
@@ -261,20 +261,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-08-31T10:33:21.7659638+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob7793\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1089/providers/Microsoft.DataBox/jobs/SdkJob7793\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-10T19:09:36.8524788+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob2399\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg5486/providers/Microsoft.DataBox/jobs/SdkJob2399\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1089/providers/Microsoft.DataBox/jobs/SdkJob7793?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMTA4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I3NzkzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg5486/providers/Microsoft.DataBox/jobs/SdkJob2399?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnNTQ4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2IyMzk5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -284,32 +284,32 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "8cdc58cc-2dcf-40ab-a6a5-d8778da8e479"
+ "49b636cb-2293-4fc8-988c-0cc59faf574d"
],
"x-ms-client-request-id": [
- "af3d7c89-c60e-42ea-a680-c69c29c9e3f4"
+ "69be9508-cdd0-4dfc-b480-4f936d12f80c"
],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "8cdc58cc-2dcf-40ab-a6a5-d8778da8e479"
+ "49b636cb-2293-4fc8-988c-0cc59faf574d"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T050408Z:8cdc58cc-2dcf-40ab-a6a5-d8778da8e479"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T134021Z:49b636cb-2293-4fc8-988c-0cc59faf574d"
],
"Date": [
- "Mon, 31 Aug 2020 05:04:08 GMT"
+ "Tue, 10 Nov 2020 13:40:21 GMT"
],
"Content-Length": [
"892"
@@ -321,20 +321,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-08-31T10:33:21.7659638+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"36a8dd63-cc5c-4b23-87aa-8793ade741b3\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"name\": \"SdkJob7793\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1089/providers/Microsoft.DataBox/jobs/SdkJob7793\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-10T19:09:36.8524788+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"e8b4246b-b863-44a3-bbd8-27a29e44df64\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"name\": \"SdkJob2399\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg5486/providers/Microsoft.DataBox/jobs/SdkJob2399\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1089/providers/Microsoft.DataBox/jobs/SdkJob7793?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMTA4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I3NzkzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg5486/providers/Microsoft.DataBox/jobs/SdkJob2399?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnNTQ4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2IyMzk5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -344,32 +344,32 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "8261e694-15b1-417c-91c2-4130008ea99f"
+ "9a317a99-70bb-4ed6-8a24-5ec648b0c557"
],
"x-ms-client-request-id": [
- "fe206d8c-4296-40fd-a348-6c6ff32ccf2f"
+ "8d84d9ed-a4d2-498a-8ccc-57619d9cc6b2"
],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "8261e694-15b1-417c-91c2-4130008ea99f"
+ "9a317a99-70bb-4ed6-8a24-5ec648b0c557"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T050430Z:8261e694-15b1-417c-91c2-4130008ea99f"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T134044Z:9a317a99-70bb-4ed6-8a24-5ec648b0c557"
],
"Date": [
- "Mon, 31 Aug 2020 05:04:30 GMT"
+ "Tue, 10 Nov 2020 13:40:44 GMT"
],
"Content-Length": [
"892"
@@ -381,26 +381,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-08-31T10:33:21.7659638+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"36a8dd63-cc5c-4b23-87aa-8793ade741b3\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"name\": \"SdkJob7793\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1089/providers/Microsoft.DataBox/jobs/SdkJob7793\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-10T19:09:36.8524788+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"e8b4246b-b863-44a3-bbd8-27a29e44df64\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"name\": \"SdkJob2399\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg5486/providers/Microsoft.DataBox/jobs/SdkJob2399\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1089/providers/Microsoft.DataBox/jobs/SdkJob7793?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMTA4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I3NzkzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg5486/providers/Microsoft.DataBox/jobs/SdkJob2399?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnNTQ4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2IyMzk5P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "86d471a5-c185-4180-abc2-2c8a55ac76a6"
+ "9e93ff5a-2cce-49ad-8f91-efca720c84b9"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -417,37 +417,37 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/b0ec6b6f-cd3e-48a5-9ee8-1cdbe6279615?api-version=2018-01-01"
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/6149b638-a707-429c-9fd2-b6ff0093a6d1?api-version=2018-01-01"
],
"Retry-After": [
"10"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "0516b000-6729-4f61-b875-6bfb1431fca7"
+ "6f88c91c-07ad-4310-805b-0b3bcf3ec561"
],
"x-ms-client-request-id": [
- "86d471a5-c185-4180-abc2-2c8a55ac76a6"
+ "9e93ff5a-2cce-49ad-8f91-efca720c84b9"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Kestrel"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-correlation-request-id": [
- "0516b000-6729-4f61-b875-6bfb1431fca7"
+ "6f88c91c-07ad-4310-805b-0b3bcf3ec561"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T050347Z:0516b000-6729-4f61-b875-6bfb1431fca7"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T134000Z:6f88c91c-07ad-4310-805b-0b3bcf3ec561"
],
"Date": [
- "Mon, 31 Aug 2020 05:03:47 GMT"
+ "Tue, 10 Nov 2020 13:40:00 GMT"
],
"Expires": [
"-1"
@@ -460,22 +460,22 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1089/providers/Microsoft.DataBox/jobs/SdkJob7793?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMTA4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I3NzkzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg5486/providers/Microsoft.DataBox/jobs/SdkJob2399?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnNTQ4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2IyMzk5P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"properties\": {\r\n \"details\": {\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"CustomerManaged\",\r\n \"kekUrl\": \"https://sdkkeyvault.vault.azure.net/keys/SSDKEY/\",\r\n \"kekVaultResourceID\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.KeyVault/vaults/SDKKeyVault\"\r\n }\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "df658093-6534-495c-a756-80e1e01ef884"
+ "cfce61b3-f001-4044-9bc1-ef091e13f1db"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -492,37 +492,37 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/3e660dd4-1602-49b3-a81a-8022a75b66b9?api-version=2018-01-01"
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/94a7ba52-0034-484e-bed0-8ec73233ec93?api-version=2018-01-01"
],
"Retry-After": [
"10"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "91a11339-b5cb-4a1e-8cda-fc0b3b7ed8dc"
+ "39850078-f4ce-475a-baa8-f4b4780966ed"
],
"x-ms-client-request-id": [
- "df658093-6534-495c-a756-80e1e01ef884"
+ "cfce61b3-f001-4044-9bc1-ef091e13f1db"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Kestrel"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1197"
],
"x-ms-correlation-request-id": [
- "91a11339-b5cb-4a1e-8cda-fc0b3b7ed8dc"
+ "39850078-f4ce-475a-baa8-f4b4780966ed"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T050410Z:91a11339-b5cb-4a1e-8cda-fc0b3b7ed8dc"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T134023Z:39850078-f4ce-475a-baa8-f4b4780966ed"
],
"Date": [
- "Mon, 31 Aug 2020 05:04:09 GMT"
+ "Tue, 10 Nov 2020 13:40:23 GMT"
],
"Expires": [
"-1"
@@ -535,16 +535,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/b0ec6b6f-cd3e-48a5-9ee8-1cdbe6279615?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYjBlYzZiNmYtY2QzZS00OGE1LTllZTgtMWNkYmU2Mjc5NjE1P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/6149b638-a707-429c-9fd2-b6ff0093a6d1?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjE0OWI2MzgtYTcwNy00MjljLTlmZDItYjZmZjAwOTNhNmQxP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -555,37 +555,37 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1089/providers/Microsoft.DataBox/jobs/SdkJob7793?api-version=2018-01-01"
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg5486/providers/Microsoft.DataBox/jobs/SdkJob2399?api-version=2018-01-01"
],
"Retry-After": [
"10"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "1b8d69e9-8350-42fc-930c-45e86a5ec1b5"
+ "7404cf26-9999-4416-b0a9-649071472db4"
],
"x-ms-client-request-id": [
- "96526935-f378-46a6-be4f-a465d859df6c"
+ "01671704-5d6e-4c6d-aa50-8bbec55b68de"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Kestrel"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11991"
],
"x-ms-correlation-request-id": [
- "1b8d69e9-8350-42fc-930c-45e86a5ec1b5"
+ "7404cf26-9999-4416-b0a9-649071472db4"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T050357Z:1b8d69e9-8350-42fc-930c-45e86a5ec1b5"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T134011Z:7404cf26-9999-4416-b0a9-649071472db4"
],
"Date": [
- "Mon, 31 Aug 2020 05:03:57 GMT"
+ "Tue, 10 Nov 2020 13:40:11 GMT"
],
"Expires": [
"-1"
@@ -598,22 +598,22 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1089/providers/Microsoft.DataBox/jobs/SdkJob7793?api-version=2020-04-01&$expand=details",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMTA4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I3NzkzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDEmJGV4cGFuZD1kZXRhaWxz",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg5486/providers/Microsoft.DataBox/jobs/SdkJob2399?api-version=2020-11-01&$expand=details",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnNTQ4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2IyMzk5P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDEmJGV4cGFuZD1kZXRhaWxz",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "26838a2f-dc44-49ae-9b8a-c7d198b51860"
+ "c2759a97-7130-4e0c-b946-b5c62b613b79"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -623,35 +623,35 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "b291b654-1c4a-4511-a7e6-51a31759399f"
+ "561aa141-66fc-4220-becd-d2b1e3ab3c31"
],
"x-ms-client-request-id": [
- "26838a2f-dc44-49ae-9b8a-c7d198b51860"
+ "c2759a97-7130-4e0c-b946-b5c62b613b79"
],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "b291b654-1c4a-4511-a7e6-51a31759399f"
+ "561aa141-66fc-4220-becd-d2b1e3ab3c31"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T050408Z:b291b654-1c4a-4511-a7e6-51a31759399f"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T134022Z:561aa141-66fc-4220-becd-d2b1e3ab3c31"
],
"Date": [
- "Mon, 31 Aug 2020 05:04:08 GMT"
+ "Tue, 10 Nov 2020 13:40:22 GMT"
],
"Content-Length": [
- "4344"
+ "4469"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -660,26 +660,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-08-31T10:33:21.7659638+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-08-31T10:33:23.5930933+05:30\"\r\n },\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"displayName\": \"Processed\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"displayName\": \"Dispatched\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"displayName\": \"Delivered\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"displayName\": \"Picked up\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"displayName\": \"Received\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"displayName\": \"Data copy in progress\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Completed\",\r\n \"displayName\": \"Completed\",\r\n \"stageStatus\": \"None\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \"Public SDK Test\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ],\r\n \"notificationPreference\": [\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"sendNotification\": true\r\n }\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/databoxbvt1/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount2\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=DRxT5nOCj78bGPsbZ6mVYyhuOLkBkbOuqjVXXwFTHIg%3D&st=2020-08-31T04%3A54%3A08Z&se=2020-09-01T05%3A04%3A08Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"36a8dd63-cc5c-4b23-87aa-8793ade741b3\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"name\": \"SdkJob7793\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1089/providers/Microsoft.DataBox/jobs/SdkJob7793\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-10T19:09:36.8524788+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-11-10T19:09:39.7069731+05:30\"\r\n },\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"displayName\": \"Processed\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"displayName\": \"Dispatched\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"displayName\": \"Delivered\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"displayName\": \"Picked up\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"displayName\": \"Received\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"displayName\": \"Data copy in progress\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Completed\",\r\n \"displayName\": \"Completed\",\r\n \"stageStatus\": \"None\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \"Public SDK Test\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ],\r\n \"notificationPreference\": [\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"sendNotification\": true\r\n }\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/databoxbvt1/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount2\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"preferences\": {\r\n \"encryptionPreferences\": {\r\n \"doubleEncryption\": \"Disabled\"\r\n }\r\n },\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=zN%2BVTwzmHgMcxnYFOmMEa4HFYyNMLaH6s7pfeA9uNHU%3D&st=2020-11-10T13%3A30%3A22Z&se=2020-11-11T13%3A40%3A22Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"e8b4246b-b863-44a3-bbd8-27a29e44df64\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"name\": \"SdkJob2399\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg5486/providers/Microsoft.DataBox/jobs/SdkJob2399\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1089/providers/Microsoft.DataBox/jobs/SdkJob7793?api-version=2020-04-01&$expand=details",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMTA4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I3NzkzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDEmJGV4cGFuZD1kZXRhaWxz",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg5486/providers/Microsoft.DataBox/jobs/SdkJob2399?api-version=2020-11-01&$expand=details",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnNTQ4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2IyMzk5P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDEmJGV4cGFuZD1kZXRhaWxz",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "457dbdfa-897c-4db8-b517-484fe7231487"
+ "d5657878-35a4-47aa-9528-ae3ca04850ba"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -689,35 +689,35 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "8ca25448-edc8-4bc3-a8e5-46fc74ae4f9a"
+ "6c1791eb-e05d-4f7f-b3e5-f263bbbc0a1f"
],
"x-ms-client-request-id": [
- "457dbdfa-897c-4db8-b517-484fe7231487"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "d5657878-35a4-47aa-9528-ae3ca04850ba"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "8ca25448-edc8-4bc3-a8e5-46fc74ae4f9a"
+ "6c1791eb-e05d-4f7f-b3e5-f263bbbc0a1f"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T050431Z:8ca25448-edc8-4bc3-a8e5-46fc74ae4f9a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T134045Z:6c1791eb-e05d-4f7f-b3e5-f263bbbc0a1f"
],
"Date": [
- "Mon, 31 Aug 2020 05:04:30 GMT"
+ "Tue, 10 Nov 2020 13:40:44 GMT"
],
"Content-Length": [
- "4576"
+ "4778"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -726,20 +726,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-08-31T10:33:21.7659638+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-08-31T10:33:23.5930933+05:30\"\r\n },\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"displayName\": \"Processed\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"displayName\": \"Dispatched\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"displayName\": \"Delivered\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"displayName\": \"Picked up\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"displayName\": \"Received\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"displayName\": \"Data copy in progress\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Completed\",\r\n \"displayName\": \"Completed\",\r\n \"stageStatus\": \"None\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \"Public SDK Test\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ],\r\n \"notificationPreference\": [\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"sendNotification\": true\r\n }\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/databoxbvt1/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount2\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=Wqcpj%2FXyZtm5HJnI5fHYApLlpjsX36%2BRTMHkvVfcPMw%3D&st=2020-08-31T04%3A54%3A31Z&se=2020-09-01T05%3A04%3A31Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"CustomerManaged\",\r\n \"kekUrl\": \"https://sdkkeyvault.vault.azure.net/keys/SSDKEY/\",\r\n \"kekVaultResourceID\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.KeyVault/vaults/SDKKeyVault\"\r\n }\r\n },\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"36a8dd63-cc5c-4b23-87aa-8793ade741b3\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"name\": \"SdkJob7793\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1089/providers/Microsoft.DataBox/jobs/SdkJob7793\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-10T19:09:36.8524788+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-11-10T19:09:39.7069731+05:30\"\r\n },\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"displayName\": \"Processed\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"displayName\": \"Dispatched\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"displayName\": \"Delivered\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"displayName\": \"Picked up\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"displayName\": \"Received\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"displayName\": \"Data copy in progress\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Completed\",\r\n \"displayName\": \"Completed\",\r\n \"stageStatus\": \"None\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \"Public SDK Test\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ],\r\n \"notificationPreference\": [\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"sendNotification\": true\r\n }\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/databoxbvt1/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount2\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"preferences\": {\r\n \"encryptionPreferences\": {\r\n \"doubleEncryption\": \"Disabled\"\r\n }\r\n },\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=2nKFdg0EIRDbcbvEhbJK2fBMzyJxq1M0GLrjiy4%2F3mI%3D&st=2020-11-10T13%3A30%3A45Z&se=2020-11-11T13%3A40%3A45Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"CustomerManaged\",\r\n \"identityProperties\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"kekUrl\": \"https://sdkkeyvault.vault.azure.net/keys/SSDKEY/\",\r\n \"kekVaultResourceID\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.KeyVault/vaults/SDKKeyVault\"\r\n }\r\n },\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"e8b4246b-b863-44a3-bbd8-27a29e44df64\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"name\": \"SdkJob2399\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg5486/providers/Microsoft.DataBox/jobs/SdkJob2399\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/3e660dd4-1602-49b3-a81a-8022a75b66b9?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvM2U2NjBkZDQtMTYwMi00OWIzLWE4MWEtODAyMmE3NWI2NmI5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/94a7ba52-0034-484e-bed0-8ec73233ec93?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvOTRhN2JhNTItMDAzNC00ODRlLWJlZDAtOGVjNzMyMzNlYzkzP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -750,37 +750,37 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1089/providers/Microsoft.DataBox/jobs/SdkJob7793?api-version=2018-01-01"
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg5486/providers/Microsoft.DataBox/jobs/SdkJob2399?api-version=2018-01-01"
],
"Retry-After": [
"10"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "5572c11b-b954-469e-9e8e-e6a96e2399b1"
+ "7a80f7d4-2006-4fd3-8af8-a3255b9518f7"
],
"x-ms-client-request-id": [
- "667bd266-ec0f-4b45-a056-8f2934159f9e"
+ "2eb94d97-d26e-4a19-ab03-139c3f39c400"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Kestrel"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11988"
],
"x-ms-correlation-request-id": [
- "5572c11b-b954-469e-9e8e-e6a96e2399b1"
+ "7a80f7d4-2006-4fd3-8af8-a3255b9518f7"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T050420Z:5572c11b-b954-469e-9e8e-e6a96e2399b1"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T134034Z:7a80f7d4-2006-4fd3-8af8-a3255b9518f7"
],
"Date": [
- "Mon, 31 Aug 2020 05:04:19 GMT"
+ "Tue, 10 Nov 2020 13:40:34 GMT"
],
"Expires": [
"-1"
@@ -795,8 +795,8 @@
],
"Names": {
"CmkEnablementTest": [
- "SdkRg1089",
- "SdkJob7793"
+ "SdkRg5486",
+ "SdkJob2399"
]
},
"Variables": {
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobCRUDTests/CreateJobWithUserAssignedIdentity.json b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobCRUDTests/CreateJobWithUserAssignedIdentity.json
new file mode 100644
index 0000000000000..2ec88cd8b27ec
--- /dev/null
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobCRUDTests/CreateJobWithUserAssignedIdentity.json
@@ -0,0 +1,344 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/SdkRg3561?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlZ3JvdXBzL1Nka1JnMzU2MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"westus\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "0351e352-07ad-4615-807c-ff1f36c58b60"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29321.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "28"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "27896be2-4145-495c-b58c-71872fb2a145"
+ ],
+ "x-ms-correlation-request-id": [
+ "27896be2-4145-495c-b58c-71872fb2a145"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTINDIA:20201110T133236Z:27896be2-4145-495c-b58c-71872fb2a145"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 10 Nov 2020 13:32:36 GMT"
+ ],
+ "Content-Length": [
+ "171"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg3561\",\r\n \"name\": \"SdkRg3561\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg3561/providers/Microsoft.DataBox/jobs/SdkJob6119?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMzU2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I2MTE5P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"details\": {\r\n \"jobDetailsType\": \"DataBox\",\r\n \"contactDetails\": {\r\n \"contactName\": \"Public SDK Test\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/databoxbvt1/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount2\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sdkIdentity\": {}\r\n }\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d6361b2d-7a61-4a8c-9c4c-71227fdd23b0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29321.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "1318"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/7b78e3db-c1bf-4e98-81ae-9ec6891014cf?api-version=2018-01-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "87cf3046-d43a-4c72-b768-b117e9bb89a6"
+ ],
+ "x-ms-client-request-id": [
+ "d6361b2d-7a61-4a8c-9c4c-71227fdd23b0"
+ ],
+ "Server": [
+ "Kestrel"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "87cf3046-d43a-4c72-b768-b117e9bb89a6"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUSEUAP:20201110T133245Z:87cf3046-d43a-4c72-b768-b117e9bb89a6"
+ ],
+ "Date": [
+ "Tue, 10 Nov 2020 13:32:45 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/7b78e3db-c1bf-4e98-81ae-9ec6891014cf?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvN2I3OGUzZGItYzFiZi00ZTk4LTgxYWUtOWVjNjg5MTAxNGNmP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29321.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg3561/providers/Microsoft.DataBox/jobs/SdkJob6119?api-version=2018-01-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "1753d740-7e53-41e6-8b03-dbd324b2959a"
+ ],
+ "x-ms-client-request-id": [
+ "9cdd46c3-1f34-4f48-9580-d447c5e5d004"
+ ],
+ "Server": [
+ "Kestrel"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "1753d740-7e53-41e6-8b03-dbd324b2959a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUSEUAP:20201110T133255Z:1753d740-7e53-41e6-8b03-dbd324b2959a"
+ ],
+ "Date": [
+ "Tue, 10 Nov 2020 13:32:55 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg3561/providers/Microsoft.DataBox/jobs/SdkJob6119?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMzU2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I2MTE5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29321.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "dd879a86-15d7-48d9-aeb8-695ec11cd108"
+ ],
+ "x-ms-client-request-id": [
+ "2a9eb112-4049-48fa-af6e-c041bf99e99d"
+ ],
+ "Server": [
+ "Kestrel"
+ ],
+ "x-ms-correlation-request-id": [
+ "dd879a86-15d7-48d9-aeb8-695ec11cd108"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUSEUAP:20201110T133306Z:dd879a86-15d7-48d9-aeb8-695ec11cd108"
+ ],
+ "Date": [
+ "Tue, 10 Nov 2020 13:33:06 GMT"
+ ],
+ "Content-Length": [
+ "1106"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-10T19:02:44.6033179+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sdkIdentity\": {\r\n \"principalId\": \"5cba71a4-1088-4540-bacf-a7af4426c982\",\r\n \"clientId\": \"9c1eb7d3-ed10-4ef6-8b70-9bc4ddeeeda3\"\r\n }\r\n }\r\n },\r\n \"name\": \"SdkJob6119\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg3561/providers/Microsoft.DataBox/jobs/SdkJob6119\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg3561/providers/Microsoft.DataBox/jobs/SdkJob6119?api-version=2020-11-01&$expand=details",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMzU2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I2MTE5P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDEmJGV4cGFuZD1kZXRhaWxz",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8062364b-a8f3-4c7d-8b3b-f26c67b8f1e1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29321.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "1f154981-52cc-4016-abde-8d7842ef89ef"
+ ],
+ "x-ms-client-request-id": [
+ "8062364b-a8f3-4c7d-8b3b-f26c67b8f1e1"
+ ],
+ "Server": [
+ "Kestrel"
+ ],
+ "x-ms-correlation-request-id": [
+ "1f154981-52cc-4016-abde-8d7842ef89ef"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUSEUAP:20201110T133306Z:1f154981-52cc-4016-abde-8d7842ef89ef"
+ ],
+ "Date": [
+ "Tue, 10 Nov 2020 13:33:06 GMT"
+ ],
+ "Content-Length": [
+ "4683"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-10T19:02:44.6033179+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-11-10T19:02:48.0674092+05:30\"\r\n },\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"displayName\": \"Processed\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"displayName\": \"Dispatched\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"displayName\": \"Delivered\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"displayName\": \"Picked up\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"displayName\": \"Received\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"displayName\": \"Data copy in progress\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Completed\",\r\n \"displayName\": \"Completed\",\r\n \"stageStatus\": \"None\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \"Public SDK Test\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ],\r\n \"notificationPreference\": [\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"sendNotification\": true\r\n }\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/databoxbvt1/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount2\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"preferences\": {\r\n \"encryptionPreferences\": {\r\n \"doubleEncryption\": \"Disabled\"\r\n }\r\n },\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=xxSNfwo%2FECTwgy5GbeHgWlPkGIJ2q9YVve1gV8Jdhc8%3D&st=2020-11-10T13%3A23%3A06Z&se=2020-11-11T13%3A33%3A06Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sdkIdentity\": {\r\n \"principalId\": \"5cba71a4-1088-4540-bacf-a7af4426c982\",\r\n \"clientId\": \"9c1eb7d3-ed10-4ef6-8b70-9bc4ddeeeda3\"\r\n }\r\n }\r\n },\r\n \"name\": \"SdkJob6119\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg3561/providers/Microsoft.DataBox/jobs/SdkJob6119\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "CreateJobWithUserAssignedIdentity": [
+ "SdkRg3561",
+ "SdkJob6119"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "fa68082f-8ff7-4a25-95c7-ce9da541242f",
+ "SubId": "fa68082f-8ff7-4a25-95c7-ce9da541242f"
+ }
+}
\ No newline at end of file
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobCRUDTests/DevicePasswordTest.json b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobCRUDTests/DevicePasswordTest.json
index 05cb23faf7c60..2de5024077893 100644
--- a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobCRUDTests/DevicePasswordTest.json
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobCRUDTests/DevicePasswordTest.json
@@ -1,21 +1,21 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/SdkRg2089?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlZ3JvdXBzL1Nka1JnMjA4OT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/SdkRg2707?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlZ3JvdXBzL1Nka1JnMjcwNz9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"westus\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "710e0fa2-72b9-4e34-a0ba-00054c3641bc"
+ "e90970d7-b27f-4df8-9277-ca8089517a0b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
],
"Content-Type": [
@@ -36,13 +36,13 @@
"1199"
],
"x-ms-request-id": [
- "94aa645d-c6f0-47c6-875e-a045b5653b34"
+ "40ed7fe2-71f2-490d-97ab-ab10ad3e5d0a"
],
"x-ms-correlation-request-id": [
- "94aa645d-c6f0-47c6-875e-a045b5653b34"
+ "40ed7fe2-71f2-490d-97ab-ab10ad3e5d0a"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T050229Z:94aa645d-c6f0-47c6-875e-a045b5653b34"
+ "WESTINDIA:20201110T133201Z:40ed7fe2-71f2-490d-97ab-ab10ad3e5d0a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51,7 +51,7 @@
"nosniff"
],
"Date": [
- "Mon, 31 Aug 2020 05:02:29 GMT"
+ "Tue, 10 Nov 2020 13:32:00 GMT"
],
"Content-Length": [
"171"
@@ -63,26 +63,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2089\",\r\n \"name\": \"SdkRg2089\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2707\",\r\n \"name\": \"SdkRg2707\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2089/providers/Microsoft.DataBox/jobs/SdkJob9828?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMjA4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I5ODI4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2707/providers/Microsoft.DataBox/jobs/SdkJob7029?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMjcwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I3MDI5P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"details\": {\r\n \"jobDetailsType\": \"DataBox\",\r\n \"devicePassword\": \"Abcd223@22344\",\r\n \"contactDetails\": {\r\n \"contactName\": \"Public SDK Test\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/databoxbvt1/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount2\",\r\n \"sharePassword\": \"Abcd223@22344Abcd223@22344\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ae1fb751-7db0-481f-bfef-2214fed69521"
+ "0638996c-498d-4fba-9032-a36e771e17c5"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -99,37 +99,37 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/ffa0f856-87a7-4dfa-a113-05001b463bac?api-version=2018-01-01"
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/f79f6b73-7e93-425d-93aa-5f2085ca7d0f?api-version=2018-01-01"
],
"Retry-After": [
"10"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "a9b83d74-1072-47b0-9dc1-3d02f5aee04b"
+ "aa311807-2b03-4991-89d4-9a95efc7c5ec"
],
"x-ms-client-request-id": [
- "ae1fb751-7db0-481f-bfef-2214fed69521"
+ "0638996c-498d-4fba-9032-a36e771e17c5"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Kestrel"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1197"
],
"x-ms-correlation-request-id": [
- "a9b83d74-1072-47b0-9dc1-3d02f5aee04b"
+ "aa311807-2b03-4991-89d4-9a95efc7c5ec"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T050238Z:a9b83d74-1072-47b0-9dc1-3d02f5aee04b"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T133205Z:aa311807-2b03-4991-89d4-9a95efc7c5ec"
],
"Date": [
- "Mon, 31 Aug 2020 05:02:37 GMT"
+ "Tue, 10 Nov 2020 13:32:04 GMT"
],
"Expires": [
"-1"
@@ -142,16 +142,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/ffa0f856-87a7-4dfa-a113-05001b463bac?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvZmZhMGY4NTYtODdhNy00ZGZhLWExMTMtMDUwMDFiNDYzYmFjP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/f79f6b73-7e93-425d-93aa-5f2085ca7d0f?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvZjc5ZjZiNzMtN2U5My00MjVkLTkzYWEtNWYyMDg1Y2E3ZDBmP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -162,37 +162,37 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2089/providers/Microsoft.DataBox/jobs/SdkJob9828?api-version=2018-01-01"
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2707/providers/Microsoft.DataBox/jobs/SdkJob7029?api-version=2018-01-01"
],
"Retry-After": [
"10"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "94803465-52ed-4840-8cac-87b60be5c018"
+ "f547efc9-83d0-40eb-857f-86068f8cb250"
],
"x-ms-client-request-id": [
- "6d0d1013-82d7-433a-a62f-ecff991752a8"
+ "62725306-773e-4a8e-ace5-182904c5a7f3"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Kestrel"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11990"
],
"x-ms-correlation-request-id": [
- "94803465-52ed-4840-8cac-87b60be5c018"
+ "f547efc9-83d0-40eb-857f-86068f8cb250"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T050248Z:94803465-52ed-4840-8cac-87b60be5c018"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T133215Z:f547efc9-83d0-40eb-857f-86068f8cb250"
],
"Date": [
- "Mon, 31 Aug 2020 05:02:47 GMT"
+ "Tue, 10 Nov 2020 13:32:15 GMT"
],
"Expires": [
"-1"
@@ -205,16 +205,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2089/providers/Microsoft.DataBox/jobs/SdkJob9828?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMjA4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I5ODI4P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2707/providers/Microsoft.DataBox/jobs/SdkJob7029?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMjcwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I3MDI5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -224,32 +224,32 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "64159ff5-bb91-4453-b9db-d2224acadf3b"
+ "6da3bd59-a4a2-4067-b1fb-7b9514c9c132"
],
"x-ms-client-request-id": [
- "4552fe81-7f3e-4bbb-a746-79d42ffdc297"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "96c6d945-5345-4629-b732-2ea69518fbba"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "64159ff5-bb91-4453-b9db-d2224acadf3b"
+ "6da3bd59-a4a2-4067-b1fb-7b9514c9c132"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T050259Z:64159ff5-bb91-4453-b9db-d2224acadf3b"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T133226Z:6da3bd59-a4a2-4067-b1fb-7b9514c9c132"
],
"Date": [
- "Mon, 31 Aug 2020 05:02:59 GMT"
+ "Tue, 10 Nov 2020 13:32:26 GMT"
],
"Content-Length": [
"765"
@@ -261,26 +261,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-08-31T10:32:38.0125333+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob9828\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2089/providers/Microsoft.DataBox/jobs/SdkJob9828\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-10T19:02:04.3943918+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob7029\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2707/providers/Microsoft.DataBox/jobs/SdkJob7029\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2089/providers/Microsoft.DataBox/jobs/SdkJob9828?api-version=2020-04-01&$expand=details",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMjA4OS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I5ODI4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDEmJGV4cGFuZD1kZXRhaWxz",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2707/providers/Microsoft.DataBox/jobs/SdkJob7029?api-version=2020-11-01&$expand=details",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMjcwNy9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I3MDI5P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDEmJGV4cGFuZD1kZXRhaWxz",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2430fe3c-63c8-4ed9-b9eb-6dc56494b02e"
+ "0431ff0c-acc4-449d-a1d7-fad026e52e64"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -290,35 +290,35 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "dd7103bf-a9cd-46b5-b11e-7f54bd9da0d8"
+ "dea4b8c7-45fd-4c1a-80f9-f356ff1689b7"
],
"x-ms-client-request-id": [
- "2430fe3c-63c8-4ed9-b9eb-6dc56494b02e"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "0431ff0c-acc4-449d-a1d7-fad026e52e64"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "dd7103bf-a9cd-46b5-b11e-7f54bd9da0d8"
+ "dea4b8c7-45fd-4c1a-80f9-f356ff1689b7"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T050259Z:dd7103bf-a9cd-46b5-b11e-7f54bd9da0d8"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T133226Z:dea4b8c7-45fd-4c1a-80f9-f356ff1689b7"
],
"Date": [
- "Mon, 31 Aug 2020 05:02:59 GMT"
+ "Tue, 10 Nov 2020 13:32:26 GMT"
],
"Content-Length": [
- "4219"
+ "4340"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -327,14 +327,14 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-08-31T10:32:38.0125333+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-08-31T10:32:40.2019309+05:30\"\r\n },\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"displayName\": \"Processed\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"displayName\": \"Dispatched\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"displayName\": \"Delivered\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"displayName\": \"Picked up\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"displayName\": \"Received\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"displayName\": \"Data copy in progress\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Completed\",\r\n \"displayName\": \"Completed\",\r\n \"stageStatus\": \"None\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \"Public SDK Test\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ],\r\n \"notificationPreference\": [\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"sendNotification\": true\r\n }\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/databoxbvt1/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount2\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=feleNwZ%2B0bLTimllUCf5ohBVFWGegq2ArxlEjUVNct4%3D&st=2020-08-31T04%3A52%3A59Z&se=2020-09-01T05%3A02%3A59Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob9828\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2089/providers/Microsoft.DataBox/jobs/SdkJob9828\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-10T19:02:04.3943918+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-11-10T19:02:07.8895621+05:30\"\r\n },\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"displayName\": \"Processed\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"displayName\": \"Dispatched\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"displayName\": \"Delivered\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"displayName\": \"Picked up\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"displayName\": \"Received\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"displayName\": \"Data copy in progress\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Completed\",\r\n \"displayName\": \"Completed\",\r\n \"stageStatus\": \"None\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \"Public SDK Test\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ],\r\n \"notificationPreference\": [\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"sendNotification\": true\r\n }\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/databoxbvt1/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount2\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"preferences\": {\r\n \"encryptionPreferences\": {\r\n \"doubleEncryption\": \"Disabled\"\r\n }\r\n },\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=mQ19mA5yTrfUrYjZ2CsEIQAe2K192RUOrJwn1Un4GHw%3D&st=2020-11-10T13%3A22%3A26Z&se=2020-11-11T13%3A32%3A26Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob7029\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2707/providers/Microsoft.DataBox/jobs/SdkJob7029\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
"StatusCode": 200
}
],
"Names": {
"DevicePasswordTest": [
- "SdkRg2089",
- "SdkJob9828"
+ "SdkRg2707",
+ "SdkJob7029"
]
},
"Variables": {
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobCRUDTests/DoubleEncryptionTest.json b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobCRUDTests/DoubleEncryptionTest.json
new file mode 100644
index 0000000000000..4af329a0ab702
--- /dev/null
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobCRUDTests/DoubleEncryptionTest.json
@@ -0,0 +1,1123 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/SdkRg2955?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlZ3JvdXBzL1Nka1JnMjk1NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"westus\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "44dade2a-44d8-4151-8ea0-6d90afc53b05"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29321.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "28"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "f888c8fe-6e7d-4c9c-846c-7e3e76a5623f"
+ ],
+ "x-ms-correlation-request-id": [
+ "f888c8fe-6e7d-4c9c-846c-7e3e76a5623f"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201110T133315Z:f888c8fe-6e7d-4c9c-846c-7e3e76a5623f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 10 Nov 2020 13:33:14 GMT"
+ ],
+ "Content-Length": [
+ "171"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2955\",\r\n \"name\": \"SdkRg2955\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2955/providers/Microsoft.DataBox/jobs/SdkJob8176?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMjk1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I4MTc2P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"details\": {\r\n \"jobDetailsType\": \"DataBox\",\r\n \"contactDetails\": {\r\n \"contactName\": \"Public SDK Test\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\"\r\n }\r\n }\r\n ],\r\n \"preferences\": {\r\n \"encryptionPreferences\": {\r\n \"doubleEncryption\": \"Enabled\"\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "aa426baf-838b-4d75-97f2-3baa44623c64"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29321.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "1186"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/67b0d8ca-44ec-4961-ad87-9af8859fe922?api-version=2018-01-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "98584be5-5ecc-491c-adcd-b7fdfa20378d"
+ ],
+ "x-ms-client-request-id": [
+ "aa426baf-838b-4d75-97f2-3baa44623c64"
+ ],
+ "Server": [
+ "Kestrel"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-correlation-request-id": [
+ "98584be5-5ecc-491c-adcd-b7fdfa20378d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUSEUAP:20201110T133319Z:98584be5-5ecc-491c-adcd-b7fdfa20378d"
+ ],
+ "Date": [
+ "Tue, 10 Nov 2020 13:33:19 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/67b0d8ca-44ec-4961-ad87-9af8859fe922?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjdiMGQ4Y2EtNDRlYy00OTYxLWFkODctOWFmODg1OWZlOTIyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29321.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2955/providers/Microsoft.DataBox/jobs/SdkJob8176?api-version=2018-01-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c4f383ad-05bf-43e8-a08a-6ed21dd84f97"
+ ],
+ "x-ms-client-request-id": [
+ "34d17f7b-2fad-4222-9be9-59a0dac09d38"
+ ],
+ "Server": [
+ "Kestrel"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "c4f383ad-05bf-43e8-a08a-6ed21dd84f97"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUSEUAP:20201110T133331Z:c4f383ad-05bf-43e8-a08a-6ed21dd84f97"
+ ],
+ "Date": [
+ "Tue, 10 Nov 2020 13:33:31 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2955/providers/Microsoft.DataBox/jobs/SdkJob8176?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMjk1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I4MTc2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29321.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "e915ed56-fcf0-4d00-9f20-beb6e08998c0"
+ ],
+ "x-ms-client-request-id": [
+ "d20d2f79-de5d-407e-b055-107623050bac"
+ ],
+ "Server": [
+ "Kestrel"
+ ],
+ "x-ms-correlation-request-id": [
+ "e915ed56-fcf0-4d00-9f20-beb6e08998c0"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUSEUAP:20201110T133341Z:e915ed56-fcf0-4d00-9f20-beb6e08998c0"
+ ],
+ "Date": [
+ "Tue, 10 Nov 2020 13:33:41 GMT"
+ ],
+ "Content-Length": [
+ "765"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-10T19:03:19.4200679+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob8176\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2955/providers/Microsoft.DataBox/jobs/SdkJob8176\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2955/providers/Microsoft.DataBox/jobs/SdkJob8176?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMjk1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I4MTc2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29321.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "59a0386c-1732-47df-b154-18b2326dd2c5"
+ ],
+ "x-ms-client-request-id": [
+ "73d2c70e-923c-4224-a8b9-509f0ebdcd39"
+ ],
+ "Server": [
+ "Kestrel"
+ ],
+ "x-ms-correlation-request-id": [
+ "59a0386c-1732-47df-b154-18b2326dd2c5"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUSEUAP:20201110T133404Z:59a0386c-1732-47df-b154-18b2326dd2c5"
+ ],
+ "Date": [
+ "Tue, 10 Nov 2020 13:34:04 GMT"
+ ],
+ "Content-Length": [
+ "765"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-10T19:03:19.4200679+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob8176\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2955/providers/Microsoft.DataBox/jobs/SdkJob8176\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2955/providers/Microsoft.DataBox/jobs/SdkJob8176?api-version=2020-11-01&$expand=details",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMjk1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I4MTc2P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDEmJGV4cGFuZD1kZXRhaWxz",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "89ee3cd5-c216-47d6-89f6-7b3e8cfbd8b2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29321.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "af06208f-6dc7-4a8e-b7e8-5fcf296f051d"
+ ],
+ "x-ms-client-request-id": [
+ "89ee3cd5-c216-47d6-89f6-7b3e8cfbd8b2"
+ ],
+ "Server": [
+ "Kestrel"
+ ],
+ "x-ms-correlation-request-id": [
+ "af06208f-6dc7-4a8e-b7e8-5fcf296f051d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUSEUAP:20201110T133342Z:af06208f-6dc7-4a8e-b7e8-5fcf296f051d"
+ ],
+ "Date": [
+ "Tue, 10 Nov 2020 13:33:41 GMT"
+ ],
+ "Content-Length": [
+ "4385"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-10T19:03:19.4200679+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-11-10T19:03:26.6138281+05:30\"\r\n },\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"displayName\": \"Processed\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"displayName\": \"Dispatched\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"displayName\": \"Delivered\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"displayName\": \"Picked up\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"displayName\": \"Received\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"displayName\": \"Data copy in progress\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Completed\",\r\n \"displayName\": \"Completed\",\r\n \"stageStatus\": \"None\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \"Public SDK Test\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ],\r\n \"notificationPreference\": [\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"sendNotification\": true\r\n }\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"preferences\": {\r\n \"preferredDataCenterRegion\": [],\r\n \"encryptionPreferences\": {\r\n \"doubleEncryption\": \"Enabled\"\r\n }\r\n },\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=gL8nKzpUgtU8xUBHKAViZ1DuKb%2B%2FD%2FAj31lzv9pmrLo%3D&st=2020-11-10T13%3A23%3A42Z&se=2020-11-11T13%3A33%3A42Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob8176\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2955/providers/Microsoft.DataBox/jobs/SdkJob8176\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2955/providers/Microsoft.DataBox/jobs/SdkJob8176?api-version=2020-11-01&$expand=details",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMjk1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I4MTc2P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDEmJGV4cGFuZD1kZXRhaWxz",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "04b355f0-8ba2-4916-bdcd-23a7149dab61"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29321.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "37b368e6-de8e-4b4c-958e-fcc4774e72c2"
+ ],
+ "x-ms-client-request-id": [
+ "04b355f0-8ba2-4916-bdcd-23a7149dab61"
+ ],
+ "Server": [
+ "Kestrel"
+ ],
+ "x-ms-correlation-request-id": [
+ "37b368e6-de8e-4b4c-958e-fcc4774e72c2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUSEUAP:20201110T133404Z:37b368e6-de8e-4b4c-958e-fcc4774e72c2"
+ ],
+ "Date": [
+ "Tue, 10 Nov 2020 13:34:04 GMT"
+ ],
+ "Content-Length": [
+ "4378"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-10T19:03:19.4200679+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-11-10T19:03:26.6138281+05:30\"\r\n },\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"displayName\": \"Processed\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"displayName\": \"Dispatched\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"displayName\": \"Delivered\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"displayName\": \"Picked up\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"displayName\": \"Received\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"displayName\": \"Data copy in progress\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Completed\",\r\n \"displayName\": \"Completed\",\r\n \"stageStatus\": \"None\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \"Update Job\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ],\r\n \"notificationPreference\": [\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"sendNotification\": true\r\n }\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"preferences\": {\r\n \"preferredDataCenterRegion\": [],\r\n \"encryptionPreferences\": {\r\n \"doubleEncryption\": \"Enabled\"\r\n }\r\n },\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=G8%2BECCsxTrdzoGS38UiDxc%2FB3zw4KnBDlr1y0RCGEuk%3D&st=2020-11-10T13%3A24%3A04Z&se=2020-11-11T13%3A34%3A04Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob8176\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2955/providers/Microsoft.DataBox/jobs/SdkJob8176\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2955/providers/Microsoft.DataBox/jobs/SdkJob8176?api-version=2020-11-01&$expand=details",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMjk1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I4MTc2P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDEmJGV4cGFuZD1kZXRhaWxz",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d6516f54-ce45-4f7a-9883-59c22924634b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29321.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "f890dd4f-866f-4c46-b846-a07e891c8ccc"
+ ],
+ "x-ms-client-request-id": [
+ "d6516f54-ce45-4f7a-9883-59c22924634b"
+ ],
+ "Server": [
+ "Kestrel"
+ ],
+ "x-ms-correlation-request-id": [
+ "f890dd4f-866f-4c46-b846-a07e891c8ccc"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUSEUAP:20201110T133409Z:f890dd4f-866f-4c46-b846-a07e891c8ccc"
+ ],
+ "Date": [
+ "Tue, 10 Nov 2020 13:34:09 GMT"
+ ],
+ "Content-Length": [
+ "4136"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-11-10T19:03:19.4200679+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [\r\n {\r\n \"storageAccountName\": \"databoxbvttestaccount\",\r\n \"transferType\": \"ImportToAzure\",\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"accountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\",\r\n \"bytesProcessed\": 0,\r\n \"totalBytesToProcess\": 0,\r\n \"isEnumerationInProgress\": false\r\n }\r\n ],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-11-10T19:03:26.6138281+05:30\"\r\n },\r\n {\r\n \"stageName\": \"Cancelled\",\r\n \"displayName\": \"Canceled\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-11-10T19:04:08.6038094+05:30\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \"Update Job\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ],\r\n \"notificationPreference\": [\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"sendNotification\": true\r\n }\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"preferences\": {\r\n \"preferredDataCenterRegion\": [],\r\n \"encryptionPreferences\": {\r\n \"doubleEncryption\": \"Enabled\"\r\n }\r\n },\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=etz3uerqa9IzLZzVKA9IVA%2FD4E8IrG9cpuhTtHm6MeU%3D&st=2020-11-10T13%3A24%3A09Z&se=2020-11-11T13%3A34%3A09Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"cancellationReason\": \"CancelTest\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob8176\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2955/providers/Microsoft.DataBox/jobs/SdkJob8176\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2955/providers/Microsoft.DataBox/jobs/SdkJob8176?api-version=2020-11-01&$expand=details",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMjk1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I4MTc2P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDEmJGV4cGFuZD1kZXRhaWxz",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cd969542-8fd5-4555-b4bf-6e5c727705f5"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29321.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8a46f064-4eeb-46d8-ab95-c497c0db7e3b"
+ ],
+ "x-ms-client-request-id": [
+ "cd969542-8fd5-4555-b4bf-6e5c727705f5"
+ ],
+ "Server": [
+ "Kestrel"
+ ],
+ "x-ms-correlation-request-id": [
+ "8a46f064-4eeb-46d8-ab95-c497c0db7e3b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUSEUAP:20201110T133911Z:8a46f064-4eeb-46d8-ab95-c497c0db7e3b"
+ ],
+ "Date": [
+ "Tue, 10 Nov 2020 13:39:11 GMT"
+ ],
+ "Content-Length": [
+ "3637"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-11-10T19:03:19.4200679+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [\r\n {\r\n \"storageAccountName\": \"databoxbvttestaccount\",\r\n \"transferType\": \"ImportToAzure\",\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"accountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\",\r\n \"bytesProcessed\": 0,\r\n \"totalBytesToProcess\": 0,\r\n \"isEnumerationInProgress\": false\r\n }\r\n ],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-11-10T19:03:26.6138281+05:30\"\r\n },\r\n {\r\n \"stageName\": \"Cancelled\",\r\n \"displayName\": \"Canceled\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-11-10T19:04:08.6038094+05:30\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \" \",\r\n \"emailList\": [],\r\n \"notificationPreference\": []\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"preferences\": {\r\n \"preferredDataCenterRegion\": [],\r\n \"encryptionPreferences\": {\r\n \"doubleEncryption\": \"Enabled\"\r\n }\r\n },\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=YhR8yKIsYmIE9F%2F6c4YiCk7HP5G1SMIoSoqEXLe9xBc%3D&st=2020-11-10T13%3A29%3A11Z&se=2020-11-11T13%3A39%3A11Z&sp=r\",\r\n \"chainOfCustodySasKey\": \"https://wusbeta.blob.core.windows.net/chainofcustody/67b0d8ca-44ec-4961-ad87-9af8859fe922.txt?sv=2018-03-28&sr=b&sig=oJvew6lk8xdXMAIEN7dDszYiVIsHgcF8OaRoEXtbSyo%3D&st=2020-11-10T13%3A29%3A11Z&se=2020-11-10T13%3A59%3A11Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"cancellationReason\": \"CancelTest\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob8176\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2955/providers/Microsoft.DataBox/jobs/SdkJob8176\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2955/providers/Microsoft.DataBox/jobs/SdkJob8176?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMjk1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I4MTc2P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=",
+ "RequestMethod": "PATCH",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"details\": {\r\n \"contactDetails\": {\r\n \"contactName\": \"Update Job\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n }\r\n }\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "2b068775-3294-4c23-92ce-17399e7e5d55"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29321.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "584"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/ff7e679c-066f-485b-bc73-baa02af61cc7?api-version=2018-01-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "be39405d-3627-4a55-aa63-c44fdac1b221"
+ ],
+ "x-ms-client-request-id": [
+ "2b068775-3294-4c23-92ce-17399e7e5d55"
+ ],
+ "Server": [
+ "Kestrel"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-correlation-request-id": [
+ "be39405d-3627-4a55-aa63-c44fdac1b221"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUSEUAP:20201110T133343Z:be39405d-3627-4a55-aa63-c44fdac1b221"
+ ],
+ "Date": [
+ "Tue, 10 Nov 2020 13:33:43 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/ff7e679c-066f-485b-bc73-baa02af61cc7?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvZmY3ZTY3OWMtMDY2Zi00ODViLWJjNzMtYmFhMDJhZjYxY2M3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29321.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2955/providers/Microsoft.DataBox/jobs/SdkJob8176?api-version=2018-01-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "67a8c7dc-0e51-44e3-9d83-bff0421324cc"
+ ],
+ "x-ms-client-request-id": [
+ "82ac96fb-366a-47bf-8500-d5a67c534c94"
+ ],
+ "Server": [
+ "Kestrel"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-correlation-request-id": [
+ "67a8c7dc-0e51-44e3-9d83-bff0421324cc"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUSEUAP:20201110T133353Z:67a8c7dc-0e51-44e3-9d83-bff0421324cc"
+ ],
+ "Date": [
+ "Tue, 10 Nov 2020 13:33:53 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/jobs?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9qb2JzP2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "8e5b2eed-f4f5-49d0-b72c-0f7c2a42525d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29321.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-original-request-ids": [
+ "6c9d5588-d72d-44f1-9edd-9190d7c2a153",
+ "6c9d5588-d72d-44f1-9edd-9190d7c2a153",
+ "6c9d5588-d72d-44f1-9edd-9190d7c2a153",
+ "6c9d5588-d72d-44f1-9edd-9190d7c2a153",
+ "6c9d5588-d72d-44f1-9edd-9190d7c2a153",
+ "6c9d5588-d72d-44f1-9edd-9190d7c2a153",
+ "6c9d5588-d72d-44f1-9edd-9190d7c2a153",
+ "6c9d5588-d72d-44f1-9edd-9190d7c2a153",
+ "6c9d5588-d72d-44f1-9edd-9190d7c2a153",
+ "6c9d5588-d72d-44f1-9edd-9190d7c2a153",
+ "6c9d5588-d72d-44f1-9edd-9190d7c2a153",
+ "6c9d5588-d72d-44f1-9edd-9190d7c2a153"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-request-id": [
+ "6c9d5588-d72d-44f1-9edd-9190d7c2a153"
+ ],
+ "x-ms-correlation-request-id": [
+ "6c9d5588-d72d-44f1-9edd-9190d7c2a153"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUSEUAP:20201110T133407Z:6c9d5588-d72d-44f1-9edd-9190d7c2a153"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 10 Nov 2020 13:34:07 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "26574"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-09-03T14:03:58.4767711+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"T-b6595333312d\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/T-b6595333312d\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-09-03T14:05:56.0984957+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"T-b6595333312d-Clone\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/T-b6595333312d-Clone\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2018-08-30T14:44:39.77401+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"mnaustest\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/ausresgrpmn/providers/Microsoft.DataBox/jobs/mnaustest\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2018-09-10T18:03:22.2578238+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"portalcontractAUS\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/ausresgrpmn/providers/Microsoft.DataBox/jobs/portalcontractAUS\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-22T22:07:24.9860687+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/3c66da21-607e-49b4-8bdf-f25fbb8f705f/resourcegroups/shsarawa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/shsarawaIdentity\": {\r\n \"principalId\": \"ba90a4e6-a8bc-486d-ac48-d3da64d0d01d\",\r\n \"clientId\": \"9d15eff4-1af5-4b89-9575-7c33707d1203\"\r\n },\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sdkIdentity\": {\r\n \"principalId\": \"5cba71a4-1088-4540-bacf-a7af4426c982\",\r\n \"clientId\": \"9c1eb7d3-ed10-4ef6-8b70-9bc4ddeeeda3\"\r\n }\r\n }\r\n },\r\n \"name\": \"dbcmkinline-test\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxCmkTest/providers/Microsoft.DataBox/jobs/dbcmkinline-test\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2018-08-30T15:17:17.3753642+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testBB-diskAU\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/testBB/providers/Microsoft.DataBox/jobs/testBB-diskAU\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-10-29T13:42:40.7213238+05:30\",\r\n \"cancellationReason\": \"IncorrectOrder null\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"uksouth\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"degautamtestorderuk\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/ak-k8sample-RG/providers/Microsoft.DataBox/jobs/degautamtestorderuk\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-13T18:37:39.9212822+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"akvenkatmorethan10\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/AADAppShellResGrp/providers/Microsoft.DataBox/jobs/akvenkatmorethan10\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-13T18:49:12.11445+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"akvenkatmorethan10-Clone\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/AADAppShellResGrp/providers/Microsoft.DataBox/jobs/akvenkatmorethan10-Clone\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T11:12:15.5972523+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"allXML\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/allXML\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-07T15:51:08.4479315+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"bothExportAllxml\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/bothExportAllxml\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T19:44:59.2410723+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"exportAll\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/exportAll\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-15T10:28:25.8357451+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"exportest\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/exportest\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T18:31:05.3036028+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"importRegressnTest\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/importRegressnTest\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-10-13T20:15:14.9785275+05:30\",\r\n \"cancellationReason\": \"IncorrectOrder null\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"nidhijexportpremium\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/nidhijexportpremium\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-09T01:57:03.8985885+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testBotthXMLAndAll\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testBotthXMLAndAll\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-05T15:56:52.6983398+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testExportAllOrder\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testExportAllOrder\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-08-26T22:52:20.2149111+05:30\",\r\n \"cancellationReason\": \"IncorrectOrder Test \",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testlfs\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testlfs\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T17:45:25.464989+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testPayload\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testPayload\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-08-26T23:02:46.969366+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testwithoutlfs\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testwithoutlfs\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T10:43:04.8775864+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"xmlOnlyOrder\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/xmlOnlyOrder\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2018-11-27T15:17:49.0760408+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testbadresourcegroup\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat3198inh0-9)inh(il(h)_fyoin)(upf(yLASD0-FJ(hal-DSNWP0JDS0P3-0SJ93/providers/Microsoft.DataBox/jobs/testbadresourcegroup\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-21T20:39:21.9096902+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"akvenkat2302\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.DataBox/jobs/akvenkat2302\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2019-01-04T09:08:49.9928621+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"andipodtest4jan\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/andipodtest4jan\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-19T13:23:40.2533122+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned,UserAssigned\",\r\n \"principalId\": \"1860a3c8-94f0-4b81-9492-5b56a1808897\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sdkIdentity\": {\r\n \"principalId\": \"5cba71a4-1088-4540-bacf-a7af4426c982\",\r\n \"clientId\": \"9c1eb7d3-ed10-4ef6-8b70-9bc4ddeeeda3\"\r\n },\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/raginip/providers/Microsoft.ManagedIdentity/userAssignedIdentities/raginip-uai\": {\r\n \"principalId\": \"a952e4a6-1c68-460a-ba22-613bcef34862\",\r\n \"clientId\": \"75da410b-a7c6-4326-a23f-a88f11a48132\"\r\n },\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/aman-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/amanTestIdentity\": {\r\n \"principalId\": \"5474d8b4-e465-45ec-a00b-9eba1ba1e99b\",\r\n \"clientId\": \"709bfeb0-fb8f-47ee-a859-c896c90b935a\"\r\n }\r\n }\r\n },\r\n \"name\": \"cmkeditbvt\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/cmkeditbvt\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-20T17:52:38.8009853+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned,UserAssigned\",\r\n \"principalId\": \"c5360016-0471-4929-b2f4-ea9359bd49d0\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sdkIdentity\": {\r\n \"principalId\": \"5cba71a4-1088-4540-bacf-a7af4426c982\",\r\n \"clientId\": \"9c1eb7d3-ed10-4ef6-8b70-9bc4ddeeeda3\"\r\n },\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/MSIResourcegroupNew/providers/Microsoft.ManagedIdentity/userAssignedIdentities/willitwork\": {\r\n \"principalId\": \"9b2470fb-dfd5-48e6-8cfb-466b6eb46d6c\",\r\n \"clientId\": \"7a6b9ead-dccb-450c-934d-c247a8c5d5cd\"\r\n },\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/testRGSheetal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/kustoIdentity\": {\r\n \"principalId\": \"43f32868-235b-4f20-b28f-9cace9919bec\",\r\n \"clientId\": \"508a70aa-e2f1-4e3f-abde-59000131d8d0\"\r\n },\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/aman-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/amanTestIdentity\": {\r\n \"principalId\": \"5474d8b4-e465-45ec-a00b-9eba1ba1e99b\",\r\n \"clientId\": \"709bfeb0-fb8f-47ee-a859-c896c90b935a\"\r\n }\r\n }\r\n },\r\n \"name\": \"cmkeditbvt-Clone\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/cmkeditbvt-Clone\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-02T15:32:30.0725363+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned,UserAssigned\",\r\n \"principalId\": \"16321750-6832-4aeb-8af8-ca35f13ee90e\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/aman-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/amanTestIdentity\": {\r\n \"principalId\": \"5474d8b4-e465-45ec-a00b-9eba1ba1e99b\",\r\n \"clientId\": \"709bfeb0-fb8f-47ee-a859-c896c90b935a\"\r\n },\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sdkIdentity\": {\r\n \"principalId\": \"5cba71a4-1088-4540-bacf-a7af4426c982\",\r\n \"clientId\": \"9c1eb7d3-ed10-4ef6-8b70-9bc4ddeeeda3\"\r\n }\r\n }\r\n },\r\n \"name\": \"cmkeditbvt-Clone-Clone\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/cmkeditbvt-Clone-Clone\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-21T11:55:13.5245296+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned,UserAssigned\",\r\n \"principalId\": \"cea5f2c8-457d-4f2b-80a5-2aeda8b78551\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sdkIdentity\": {\r\n \"principalId\": \"5cba71a4-1088-4540-bacf-a7af4426c982\",\r\n \"clientId\": \"9c1eb7d3-ed10-4ef6-8b70-9bc4ddeeeda3\"\r\n }\r\n }\r\n },\r\n \"name\": \"cmkeditflow\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/cmkeditflow\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-21T12:50:01.5573834+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned,UserAssigned\",\r\n \"principalId\": \"bf7437d1-94b6-41ef-a557-9d9fbd358dce\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sdkIdentity\": {\r\n \"principalId\": \"5cba71a4-1088-4540-bacf-a7af4426c982\",\r\n \"clientId\": \"9c1eb7d3-ed10-4ef6-8b70-9bc4ddeeeda3\"\r\n }\r\n }\r\n },\r\n \"name\": \"cmkeditflow-Clone\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/cmkeditflow-Clone\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-28T15:20:48.1058546+05:30\",\r\n \"cancellationReason\": \"NoLongerNeeded null\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"dbtest1\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/dbtest1\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-04-14T08:51:18.2067875+05:30\",\r\n \"cancellationReason\": \"IncorrectOrder null\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"degautam14-04-Clone\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/degautam14-04-Clone\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-27T11:28:36.8848991+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"degautamDBUkImport\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/degautamDBUkImport\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n }\r\n ],\r\n \"nextLink\": \"https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/jobs?api-version=2020-11-01&%24skiptoken=fVJrb5swFP0v0bpvScCFllSqpjyAJAppYsA8vtmYEAMGFB6BVv3vdVutm6Ztkj9Y99x7zrmPl1ER982OFVk9engZebrtuPboYXRumqp%2bmE6juGguOG%2fruMXVhOMCJzEXsQl%2bbi%2fxJCr5tG5JHV1Y1bCyqKcnfKdJGjiNtdPpfqxgoI5nanQ%2fjuIZxaoiAwWcptWl7BiNL%2fXUYtGlrMtTM1nhBi%2fKfpqWpP6BKzbuBC4oH4EEpLEsjyX5%2b7c6Y5VTZnHxeFjNFOJdE8rREIG8I6nELFu5btgiJ3zfhWbehs8Soz7kO0cHm1S7AYvVsdSOYNZSgVLPkLA3a5E5u4Se8okmm1W%2fIkAViCoHPqzE3yWgyUmq7JdsnmyWcw19aSrDLp1rOznMo2Ivcr9YlvPkYEA1Ml3Bi0yDEdMVeT8jwsc7U3LQ1Txew2PgbyX8qbYL%2fUzUWLYuBA1MXHdwJLjY63Lj%2bfAA5apxiuxqGblrO4aFzLr3%2fCqlRjYgB2Eoub2TQSN2Vd3mchBnWx7ktMZ83zz5FbPy8uqYso1NuIY8ZxY4c8cN1MjbDHZRajvpX47%2b8GyTW%2frLK3haGilB4V2Q7r0YCS8FDD19exugSCb5%2be7Iw5R48EMLm%2fqzx3tGfFiGeqBQORlc3mMrC%2fpQpyY1qgCvKbMk4RXpzc65dg5HCjW2HZWaPHZ%2b24VpDCFAkmPO0s99ve%2fAXW8r4hlDLCrF9P%2bS8dHN6tr99xrENPYdKcQVFOgsbqYjOewwQO0hubldiTd6fX0D\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2955/providers/Microsoft.DataBox/jobs?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMjk1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icz9hcGktdmVyc2lvbj0yMDIwLTExLTAx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "3d583178-ba60-4b0b-9140-d3443765d7ce"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29321.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "3f8c660c-7b1e-4385-a167-89a9f77a0a2c"
+ ],
+ "x-ms-client-request-id": [
+ "3d583178-ba60-4b0b-9140-d3443765d7ce"
+ ],
+ "Server": [
+ "Kestrel"
+ ],
+ "x-ms-correlation-request-id": [
+ "3f8c660c-7b1e-4385-a167-89a9f77a0a2c"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUSEUAP:20201110T133408Z:3f8c660c-7b1e-4385-a167-89a9f77a0a2c"
+ ],
+ "Date": [
+ "Tue, 10 Nov 2020 13:34:07 GMT"
+ ],
+ "Content-Length": [
+ "898"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-10T19:03:19.4200679+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob8176\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2955/providers/Microsoft.DataBox/jobs/SdkJob8176\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2955/providers/Microsoft.DataBox/jobs/SdkJob8176/cancel?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMjk1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I4MTc2L2NhbmNlbD9hcGktdmVyc2lvbj0yMDIwLTExLTAx",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"reason\": \"CancelTest\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e85dd17b-03dd-46e1-804b-bafe8be52831"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29321.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "30"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "b29f3c00-49b9-4db9-b558-10e594de3c7e"
+ ],
+ "x-ms-client-request-id": [
+ "e85dd17b-03dd-46e1-804b-bafe8be52831"
+ ],
+ "Server": [
+ "Kestrel"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
+ ],
+ "x-ms-correlation-request-id": [
+ "b29f3c00-49b9-4db9-b558-10e594de3c7e"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUSEUAP:20201110T133409Z:b29f3c00-49b9-4db9-b558-10e594de3c7e"
+ ],
+ "Date": [
+ "Tue, 10 Nov 2020 13:34:08 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2955/providers/Microsoft.DataBox/jobs/SdkJob8176?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMjk1NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I4MTc2P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ef8881d1-b20b-4284-a76d-95b7a754284e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29321.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/67b0d8ca-44ec-4961-ad87-9af8859fe922-deleteorder?api-version=2018-01-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "a5ecd18c-15a0-47a1-98fc-9bfae4a8d521"
+ ],
+ "x-ms-client-request-id": [
+ "ef8881d1-b20b-4284-a76d-95b7a754284e"
+ ],
+ "Server": [
+ "Kestrel"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14998"
+ ],
+ "x-ms-correlation-request-id": [
+ "a5ecd18c-15a0-47a1-98fc-9bfae4a8d521"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUSEUAP:20201110T133912Z:a5ecd18c-15a0-47a1-98fc-9bfae4a8d521"
+ ],
+ "Date": [
+ "Tue, 10 Nov 2020 13:39:12 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/67b0d8ca-44ec-4961-ad87-9af8859fe922-deleteorder?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjdiMGQ4Y2EtNDRlYy00OTYxLWFkODctOWFmODg1OWZlOTIyLWRlbGV0ZW9yZGVyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29321.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "88c5404a-5ff2-463e-acf6-d2429270a22f"
+ ],
+ "x-ms-client-request-id": [
+ "21a6dbc5-110a-4c9f-8da4-f8f14de6982c"
+ ],
+ "Server": [
+ "Kestrel"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-correlation-request-id": [
+ "88c5404a-5ff2-463e-acf6-d2429270a22f"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUSEUAP:20201110T133923Z:88c5404a-5ff2-463e-acf6-d2429270a22f"
+ ],
+ "Date": [
+ "Tue, 10 Nov 2020 13:39:23 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/67b0d8ca-44ec-4961-ad87-9af8859fe922-deleteorder?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjdiMGQ4Y2EtNDRlYy00OTYxLWFkODctOWFmODg1OWZlOTIyLWRlbGV0ZW9yZGVyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29321.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "1bd54cab-28ba-490a-ace9-d96de9c2ddc4"
+ ],
+ "x-ms-client-request-id": [
+ "e275db01-3c0e-49b8-9018-9a077731d2c3"
+ ],
+ "Server": [
+ "Kestrel"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-correlation-request-id": [
+ "1bd54cab-28ba-490a-ace9-d96de9c2ddc4"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUSEUAP:20201110T133923Z:1bd54cab-28ba-490a-ace9-d96de9c2ddc4"
+ ],
+ "Date": [
+ "Tue, 10 Nov 2020 13:39:23 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 204
+ }
+ ],
+ "Names": {
+ "DoubleEncryptionTest": [
+ "SdkRg2955",
+ "SdkJob8176"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "fa68082f-8ff7-4a25-95c7-ce9da541242f",
+ "SubId": "fa68082f-8ff7-4a25-95c7-ce9da541242f"
+ }
+}
\ No newline at end of file
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobCRUDTests/TestExportJobCRUDOperations.json b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobCRUDTests/TestExportJobCRUDOperations.json
index c3a25a276aa0a..62216f2347f5a 100644
--- a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobCRUDTests/TestExportJobCRUDOperations.json
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobCRUDTests/TestExportJobCRUDOperations.json
@@ -1,21 +1,21 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/SdkRg1972?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlZ3JvdXBzL1Nka1JnMTk3Mj9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/SdkRg2281?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlZ3JvdXBzL1Nka1JnMjI4MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"westus\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dd153f53-0bc8-43b6-b0c5-a6574b5f5b57"
+ "5456bfdf-cdf5-46e7-a845-0d38cc410475"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
],
"Content-Type": [
@@ -36,13 +36,13 @@
"1199"
],
"x-ms-request-id": [
- "2cd1bb0b-0b49-483e-98cf-7444abe55c94"
+ "a5de84d0-1c8a-4dce-a988-d1b77bb0d8a3"
],
"x-ms-correlation-request-id": [
- "2cd1bb0b-0b49-483e-98cf-7444abe55c94"
+ "a5de84d0-1c8a-4dce-a988-d1b77bb0d8a3"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T050442Z:2cd1bb0b-0b49-483e-98cf-7444abe55c94"
+ "WESTINDIA:20201110T134056Z:a5de84d0-1c8a-4dce-a988-d1b77bb0d8a3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51,7 +51,7 @@
"nosniff"
],
"Date": [
- "Mon, 31 Aug 2020 05:04:42 GMT"
+ "Tue, 10 Nov 2020 13:40:56 GMT"
],
"Content-Length": [
"171"
@@ -63,26 +63,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1972\",\r\n \"name\": \"SdkRg1972\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2281\",\r\n \"name\": \"SdkRg2281\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1972/providers/Microsoft.DataBox/jobs/SdkJob2119?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMTk3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2IyMTE5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2281/providers/Microsoft.DataBox/jobs/SdkJob923?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMjI4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I5MjM/YXBpLXZlcnNpb249MjAyMC0xMS0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"details\": {\r\n \"jobDetailsType\": \"DataBox\",\r\n \"contactDetails\": {\r\n \"contactName\": \"Public SDK Test\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"dataExportDetails\": [\r\n {\r\n \"transferConfiguration\": {\r\n \"transferConfigurationType\": \"TransferAll\",\r\n \"transferAllDetails\": {\r\n \"include\": {\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"transferAllBlobs\": true,\r\n \"transferAllFiles\": true\r\n }\r\n }\r\n },\r\n \"accountDetails\": {\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.Storage/storageAccounts/aaaaaa2\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "89413f99-3217-41a1-ba18-a2699e8b78ce"
+ "961a5d70-38c7-4c25-9290-50273c949a5f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -99,37 +99,37 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/02874722-a973-4a37-befb-4bdaae230209?api-version=2018-01-01"
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/58e62127-8ce7-46f1-834b-99619b3069d4?api-version=2018-01-01"
],
"Retry-After": [
"10"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "f00f3a61-84dc-42d2-bbdc-569b79b54a93"
+ "ffdf9cc1-1450-4e81-b824-87ae426a181b"
],
"x-ms-client-request-id": [
- "89413f99-3217-41a1-ba18-a2699e8b78ce"
+ "961a5d70-38c7-4c25-9290-50273c949a5f"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Kestrel"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1198"
],
"x-ms-correlation-request-id": [
- "f00f3a61-84dc-42d2-bbdc-569b79b54a93"
+ "ffdf9cc1-1450-4e81-b824-87ae426a181b"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T050451Z:f00f3a61-84dc-42d2-bbdc-569b79b54a93"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T134059Z:ffdf9cc1-1450-4e81-b824-87ae426a181b"
],
"Date": [
- "Mon, 31 Aug 2020 05:04:50 GMT"
+ "Tue, 10 Nov 2020 13:40:59 GMT"
],
"Expires": [
"-1"
@@ -142,16 +142,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/02874722-a973-4a37-befb-4bdaae230209?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDI4NzQ3MjItYTk3My00YTM3LWJlZmItNGJkYWFlMjMwMjA5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/58e62127-8ce7-46f1-834b-99619b3069d4?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNThlNjIxMjctOGNlNy00NmYxLTgzNGItOTk2MTliMzA2OWQ0P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -162,37 +162,37 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1972/providers/Microsoft.DataBox/jobs/SdkJob2119?api-version=2018-01-01"
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2281/providers/Microsoft.DataBox/jobs/SdkJob923?api-version=2018-01-01"
],
"Retry-After": [
"10"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "dae0c452-9a17-48ed-8e87-f98a98fb27c7"
+ "63288e83-3403-4d4b-9673-abaca0c71d38"
],
"x-ms-client-request-id": [
- "82e75279-6166-4df3-bfd7-70e5d8a36284"
+ "040ab3a6-dad4-4a49-bb9b-718236a3f811"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Kestrel"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11995"
],
"x-ms-correlation-request-id": [
- "dae0c452-9a17-48ed-8e87-f98a98fb27c7"
+ "63288e83-3403-4d4b-9673-abaca0c71d38"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T050501Z:dae0c452-9a17-48ed-8e87-f98a98fb27c7"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T134110Z:63288e83-3403-4d4b-9673-abaca0c71d38"
],
"Date": [
- "Mon, 31 Aug 2020 05:05:00 GMT"
+ "Tue, 10 Nov 2020 13:41:09 GMT"
],
"Expires": [
"-1"
@@ -205,16 +205,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1972/providers/Microsoft.DataBox/jobs/SdkJob2119?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMTk3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2IyMTE5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2281/providers/Microsoft.DataBox/jobs/SdkJob923?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMjI4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I5MjM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -224,35 +224,35 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "2cd38ba2-7466-4ff2-8124-29a3db834a6d"
+ "eb9e280e-b9f7-4763-9623-2d8c704e32df"
],
"x-ms-client-request-id": [
- "505f8a25-7c52-48c5-affa-a655fedbd7a6"
+ "aea2d0d4-79c3-48c9-9e99-220cb6914b1b"
],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "2cd38ba2-7466-4ff2-8124-29a3db834a6d"
+ "eb9e280e-b9f7-4763-9623-2d8c704e32df"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T050511Z:2cd38ba2-7466-4ff2-8124-29a3db834a6d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T134120Z:eb9e280e-b9f7-4763-9623-2d8c704e32df"
],
"Date": [
- "Mon, 31 Aug 2020 05:05:10 GMT"
+ "Tue, 10 Nov 2020 13:41:20 GMT"
],
"Content-Length": [
- "767"
+ "764"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -261,20 +261,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-08-31T10:34:50.6172117+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob2119\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1972/providers/Microsoft.DataBox/jobs/SdkJob2119\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-10T19:10:58.915914+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob923\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2281/providers/Microsoft.DataBox/jobs/SdkJob923\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1972/providers/Microsoft.DataBox/jobs/SdkJob2119?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMTk3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2IyMTE5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2281/providers/Microsoft.DataBox/jobs/SdkJob923?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMjI4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I5MjM/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -284,35 +284,35 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "b095c5ab-fcd4-4cb8-8af1-e8546024f829"
+ "5e9b4f93-687f-4844-96c7-3b0c31275765"
],
"x-ms-client-request-id": [
- "2e547410-dd58-4953-bb22-c3cb774b7a34"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "804f7cd9-d529-4336-a1cb-dd485f6ad6c9"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "b095c5ab-fcd4-4cb8-8af1-e8546024f829"
+ "5e9b4f93-687f-4844-96c7-3b0c31275765"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T050533Z:b095c5ab-fcd4-4cb8-8af1-e8546024f829"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T134143Z:5e9b4f93-687f-4844-96c7-3b0c31275765"
],
"Date": [
- "Mon, 31 Aug 2020 05:05:33 GMT"
+ "Tue, 10 Nov 2020 13:41:43 GMT"
],
"Content-Length": [
- "767"
+ "764"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -321,26 +321,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-08-31T10:34:50.6172117+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob2119\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1972/providers/Microsoft.DataBox/jobs/SdkJob2119\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-10T19:10:58.915914+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob923\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2281/providers/Microsoft.DataBox/jobs/SdkJob923\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1972/providers/Microsoft.DataBox/jobs/SdkJob2119?api-version=2020-04-01&$expand=details",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMTk3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2IyMTE5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDEmJGV4cGFuZD1kZXRhaWxz",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2281/providers/Microsoft.DataBox/jobs/SdkJob923?api-version=2020-11-01&$expand=details",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMjI4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I5MjM/YXBpLXZlcnNpb249MjAyMC0xMS0wMSYkZXhwYW5kPWRldGFpbHM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0a3bccf1-b696-4e53-a103-41a8c05a63dd"
+ "df3206bf-4b52-495f-b3fa-2f8f13f2015a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -350,35 +350,35 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "4f6ff878-4d71-47db-b9f6-272e93a5465b"
+ "79a6304c-8846-44ed-a058-97a5935b15b8"
],
"x-ms-client-request-id": [
- "0a3bccf1-b696-4e53-a103-41a8c05a63dd"
+ "df3206bf-4b52-495f-b3fa-2f8f13f2015a"
],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "4f6ff878-4d71-47db-b9f6-272e93a5465b"
+ "79a6304c-8846-44ed-a058-97a5935b15b8"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T050512Z:4f6ff878-4d71-47db-b9f6-272e93a5465b"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T134121Z:79a6304c-8846-44ed-a058-97a5935b15b8"
],
"Date": [
- "Mon, 31 Aug 2020 05:05:11 GMT"
+ "Tue, 10 Nov 2020 13:41:20 GMT"
],
"Content-Length": [
- "4664"
+ "4782"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -387,26 +387,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-08-31T10:34:50.6172117+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-08-31T10:34:52.2891665+05:30\"\r\n },\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"displayName\": \"Processed\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"displayName\": \"Data copy in progress\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"displayName\": \"Dispatched\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"displayName\": \"Delivered\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"displayName\": \"Picked up\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"displayName\": \"Received\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Completed\",\r\n \"displayName\": \"Completed\",\r\n \"stageStatus\": \"None\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \"Public SDK Test\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ],\r\n \"notificationPreference\": [\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"sendNotification\": true\r\n }\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [],\r\n \"dataExportDetails\": [\r\n {\r\n \"transferConfiguration\": {\r\n \"transferConfigurationType\": \"TransferAll\",\r\n \"transferFilterDetails\": {},\r\n \"transferAllDetails\": {\r\n \"include\": {\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"transferAllBlobs\": true,\r\n \"transferAllFiles\": true\r\n }\r\n }\r\n },\r\n \"logCollectionLevel\": \"Error\",\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.Storage/storageAccounts/aaaaaa2\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=JaNW8Fu1Tl1aS7VRFN4iU2W%2F93pvfumE2NqxYpBGjZY%3D&st=2020-08-31T04%3A55%3A12Z&se=2020-09-01T05%3A05%3A12Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob2119\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1972/providers/Microsoft.DataBox/jobs/SdkJob2119\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-10T19:10:58.915914+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-11-10T19:11:01.6579126+05:30\"\r\n },\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"displayName\": \"Processed\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"displayName\": \"Data copy in progress\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"displayName\": \"Dispatched\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"displayName\": \"Delivered\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"displayName\": \"Picked up\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"displayName\": \"Received\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Completed\",\r\n \"displayName\": \"Completed\",\r\n \"stageStatus\": \"None\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \"Public SDK Test\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ],\r\n \"notificationPreference\": [\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"sendNotification\": true\r\n }\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [],\r\n \"dataExportDetails\": [\r\n {\r\n \"transferConfiguration\": {\r\n \"transferConfigurationType\": \"TransferAll\",\r\n \"transferFilterDetails\": {},\r\n \"transferAllDetails\": {\r\n \"include\": {\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"transferAllBlobs\": true,\r\n \"transferAllFiles\": true\r\n }\r\n }\r\n },\r\n \"logCollectionLevel\": \"Error\",\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.Storage/storageAccounts/aaaaaa2\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"preferences\": {\r\n \"encryptionPreferences\": {\r\n \"doubleEncryption\": \"Disabled\"\r\n }\r\n },\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=d2D4Di7BFOAVrZMGretn6Vx7DC6p8kwwHskFM56ERBE%3D&st=2020-11-10T13%3A31%3A21Z&se=2020-11-11T13%3A41%3A21Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob923\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2281/providers/Microsoft.DataBox/jobs/SdkJob923\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1972/providers/Microsoft.DataBox/jobs/SdkJob2119?api-version=2020-04-01&$expand=details",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMTk3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2IyMTE5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDEmJGV4cGFuZD1kZXRhaWxz",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2281/providers/Microsoft.DataBox/jobs/SdkJob923?api-version=2020-11-01&$expand=details",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMjI4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I5MjM/YXBpLXZlcnNpb249MjAyMC0xMS0wMSYkZXhwYW5kPWRldGFpbHM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "29187f16-6755-4ec1-b3ca-7771425aaa96"
+ "d805eb77-d6be-454f-9b25-4aa8d6e91d1c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -416,35 +416,35 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "a554ad62-8851-4aa9-a0f8-da135c83eec1"
+ "9ad0aba2-34cd-4db5-99f5-900518cea7eb"
],
"x-ms-client-request-id": [
- "29187f16-6755-4ec1-b3ca-7771425aaa96"
+ "d805eb77-d6be-454f-9b25-4aa8d6e91d1c"
],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "a554ad62-8851-4aa9-a0f8-da135c83eec1"
+ "9ad0aba2-34cd-4db5-99f5-900518cea7eb"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T050534Z:a554ad62-8851-4aa9-a0f8-da135c83eec1"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T134144Z:9ad0aba2-34cd-4db5-99f5-900518cea7eb"
],
"Date": [
- "Mon, 31 Aug 2020 05:05:33 GMT"
+ "Tue, 10 Nov 2020 13:41:43 GMT"
],
"Content-Length": [
- "4663"
+ "4781"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -453,26 +453,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-08-31T10:34:50.6172117+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-08-31T10:34:52.2891665+05:30\"\r\n },\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"displayName\": \"Processed\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"displayName\": \"Data copy in progress\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"displayName\": \"Dispatched\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"displayName\": \"Delivered\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"displayName\": \"Picked up\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"displayName\": \"Received\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Completed\",\r\n \"displayName\": \"Completed\",\r\n \"stageStatus\": \"None\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \"Update Job\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ],\r\n \"notificationPreference\": [\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"sendNotification\": true\r\n }\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [],\r\n \"dataExportDetails\": [\r\n {\r\n \"transferConfiguration\": {\r\n \"transferConfigurationType\": \"TransferAll\",\r\n \"transferFilterDetails\": {},\r\n \"transferAllDetails\": {\r\n \"include\": {\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"transferAllBlobs\": true,\r\n \"transferAllFiles\": true\r\n }\r\n }\r\n },\r\n \"logCollectionLevel\": \"Error\",\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.Storage/storageAccounts/aaaaaa2\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=L1pe%2F8a748BaTFFag4y7kLENaf0s%2FMKFzEab8%2B2h5F8%3D&st=2020-08-31T04%3A55%3A33Z&se=2020-09-01T05%3A05%3A33Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob2119\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1972/providers/Microsoft.DataBox/jobs/SdkJob2119\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-10T19:10:58.915914+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-11-10T19:11:01.6579126+05:30\"\r\n },\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"displayName\": \"Processed\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"displayName\": \"Data copy in progress\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"displayName\": \"Dispatched\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"displayName\": \"Delivered\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"displayName\": \"Picked up\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"displayName\": \"Received\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Completed\",\r\n \"displayName\": \"Completed\",\r\n \"stageStatus\": \"None\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \"Update Job\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ],\r\n \"notificationPreference\": [\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"sendNotification\": true\r\n }\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [],\r\n \"dataExportDetails\": [\r\n {\r\n \"transferConfiguration\": {\r\n \"transferConfigurationType\": \"TransferAll\",\r\n \"transferFilterDetails\": {},\r\n \"transferAllDetails\": {\r\n \"include\": {\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"transferAllBlobs\": true,\r\n \"transferAllFiles\": true\r\n }\r\n }\r\n },\r\n \"logCollectionLevel\": \"Error\",\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.Storage/storageAccounts/aaaaaa2\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"preferences\": {\r\n \"encryptionPreferences\": {\r\n \"doubleEncryption\": \"Disabled\"\r\n }\r\n },\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=Mz8i%2BewjADfmWJ9YT53l%2BeUEe2NrzYGfytNC8NXCVjg%3D&st=2020-11-10T13%3A31%3A43Z&se=2020-11-11T13%3A41%3A43Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob923\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2281/providers/Microsoft.DataBox/jobs/SdkJob923\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1972/providers/Microsoft.DataBox/jobs/SdkJob2119?api-version=2020-04-01&$expand=details",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMTk3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2IyMTE5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDEmJGV4cGFuZD1kZXRhaWxz",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2281/providers/Microsoft.DataBox/jobs/SdkJob923?api-version=2020-11-01&$expand=details",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMjI4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I5MjM/YXBpLXZlcnNpb249MjAyMC0xMS0wMSYkZXhwYW5kPWRldGFpbHM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7beca3dc-5a3f-45f3-836d-c4ce616c3d2b"
+ "4d9480f9-493d-4898-b426-eeb6b999a18e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -482,35 +482,35 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "28921d3e-3bbe-4260-aadb-8bd29fdf6688"
+ "8c578637-cf6f-4d29-9df7-91424504d0d6"
],
"x-ms-client-request-id": [
- "7beca3dc-5a3f-45f3-836d-c4ce616c3d2b"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "4d9480f9-493d-4898-b426-eeb6b999a18e"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "28921d3e-3bbe-4260-aadb-8bd29fdf6688"
+ "8c578637-cf6f-4d29-9df7-91424504d0d6"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T050539Z:28921d3e-3bbe-4260-aadb-8bd29fdf6688"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T134149Z:8c578637-cf6f-4d29-9df7-91424504d0d6"
],
"Date": [
- "Mon, 31 Aug 2020 05:05:39 GMT"
+ "Tue, 10 Nov 2020 13:41:48 GMT"
],
"Content-Length": [
- "4391"
+ "4509"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -519,26 +519,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-08-31T10:34:50.6172117+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [\r\n {\r\n \"storageAccountName\": \"aaaaaa2\",\r\n \"transferType\": \"ExportFromAzure\",\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"accountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.Storage/storageAccounts/aaaaaa2\",\r\n \"bytesProcessed\": 0,\r\n \"totalBytesToProcess\": 0,\r\n \"isEnumerationInProgress\": false\r\n }\r\n ],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-08-31T10:34:52.2891665+05:30\"\r\n },\r\n {\r\n \"stageName\": \"Cancelled\",\r\n \"displayName\": \"Canceled\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-08-31T10:35:38.4834902+05:30\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \"Update Job\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ],\r\n \"notificationPreference\": [\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"sendNotification\": true\r\n }\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [],\r\n \"dataExportDetails\": [\r\n {\r\n \"transferConfiguration\": {\r\n \"transferConfigurationType\": \"TransferAll\",\r\n \"transferFilterDetails\": {},\r\n \"transferAllDetails\": {\r\n \"include\": {\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"transferAllBlobs\": true,\r\n \"transferAllFiles\": true\r\n }\r\n }\r\n },\r\n \"logCollectionLevel\": \"Error\",\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.Storage/storageAccounts/aaaaaa2\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=Dsf3E1d0zZoKWpLvGe7aJ%2FqDnDve5lc9aUOiJx7B9VA%3D&st=2020-08-31T04%3A55%3A39Z&se=2020-09-01T05%3A05%3A39Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"cancellationReason\": \"CancelTest\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob2119\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1972/providers/Microsoft.DataBox/jobs/SdkJob2119\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-11-10T19:10:58.915914+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [\r\n {\r\n \"storageAccountName\": \"aaaaaa2\",\r\n \"transferType\": \"ExportFromAzure\",\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"accountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.Storage/storageAccounts/aaaaaa2\",\r\n \"bytesProcessed\": 0,\r\n \"totalBytesToProcess\": 0,\r\n \"isEnumerationInProgress\": false\r\n }\r\n ],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-11-10T19:11:01.6579126+05:30\"\r\n },\r\n {\r\n \"stageName\": \"Cancelled\",\r\n \"displayName\": \"Canceled\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-11-10T19:11:48.1753305+05:30\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \"Update Job\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ],\r\n \"notificationPreference\": [\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"sendNotification\": true\r\n }\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [],\r\n \"dataExportDetails\": [\r\n {\r\n \"transferConfiguration\": {\r\n \"transferConfigurationType\": \"TransferAll\",\r\n \"transferFilterDetails\": {},\r\n \"transferAllDetails\": {\r\n \"include\": {\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"transferAllBlobs\": true,\r\n \"transferAllFiles\": true\r\n }\r\n }\r\n },\r\n \"logCollectionLevel\": \"Error\",\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.Storage/storageAccounts/aaaaaa2\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"preferences\": {\r\n \"encryptionPreferences\": {\r\n \"doubleEncryption\": \"Disabled\"\r\n }\r\n },\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=a9mTepNsFJ3HpdA2kIeUtDqo52lhN4ITi0sJgui1WQo%3D&st=2020-11-10T13%3A31%3A49Z&se=2020-11-11T13%3A41%3A49Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"cancellationReason\": \"CancelTest\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob923\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2281/providers/Microsoft.DataBox/jobs/SdkJob923\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1972/providers/Microsoft.DataBox/jobs/SdkJob2119?api-version=2020-04-01&$expand=details",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMTk3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2IyMTE5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDEmJGV4cGFuZD1kZXRhaWxz",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2281/providers/Microsoft.DataBox/jobs/SdkJob923?api-version=2020-11-01&$expand=details",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMjI4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I5MjM/YXBpLXZlcnNpb249MjAyMC0xMS0wMSYkZXhwYW5kPWRldGFpbHM=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "650450a3-a508-4537-a00f-c97a3cf93cfa"
+ "cf905077-355f-4232-b7d7-57ad6ed60944"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -548,35 +548,35 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "02c104e5-d2ab-47d8-9459-a3a0b232219a"
+ "17508262-7f38-416e-930c-495c90e46feb"
],
"x-ms-client-request-id": [
- "650450a3-a508-4537-a00f-c97a3cf93cfa"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "cf905077-355f-4232-b7d7-57ad6ed60944"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "02c104e5-d2ab-47d8-9459-a3a0b232219a"
+ "17508262-7f38-416e-930c-495c90e46feb"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T051041Z:02c104e5-d2ab-47d8-9459-a3a0b232219a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T134651Z:17508262-7f38-416e-930c-495c90e46feb"
],
"Date": [
- "Mon, 31 Aug 2020 05:10:40 GMT"
+ "Tue, 10 Nov 2020 13:46:51 GMT"
],
"Content-Length": [
- "3898"
+ "4014"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -585,26 +585,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-08-31T10:34:50.6172117+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [\r\n {\r\n \"storageAccountName\": \"aaaaaa2\",\r\n \"transferType\": \"ExportFromAzure\",\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"accountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.Storage/storageAccounts/aaaaaa2\",\r\n \"bytesProcessed\": 0,\r\n \"totalBytesToProcess\": 0,\r\n \"isEnumerationInProgress\": false\r\n }\r\n ],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-08-31T10:34:52.2891665+05:30\"\r\n },\r\n {\r\n \"stageName\": \"Cancelled\",\r\n \"displayName\": \"Canceled\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-08-31T10:35:38.4834902+05:30\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \" \",\r\n \"emailList\": [],\r\n \"notificationPreference\": []\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [],\r\n \"dataExportDetails\": [\r\n {\r\n \"transferConfiguration\": {\r\n \"transferConfigurationType\": \"TransferAll\",\r\n \"transferFilterDetails\": {},\r\n \"transferAllDetails\": {\r\n \"include\": {\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"transferAllBlobs\": true,\r\n \"transferAllFiles\": true\r\n }\r\n }\r\n },\r\n \"logCollectionLevel\": \"Error\",\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.Storage/storageAccounts/aaaaaa2\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=N17TDvjeOzQGveMXRKDOP2go6EWXv2BHjpZDKokxYD0%3D&st=2020-08-31T05%3A00%3A40Z&se=2020-09-01T05%3A10%3A40Z&sp=r\",\r\n \"chainOfCustodySasKey\": \"https://wusbeta.blob.core.windows.net/chainofcustody/02874722-a973-4a37-befb-4bdaae230209.txt?sv=2018-03-28&sr=b&sig=%2F%2BpYaUqhxV1uR6AJYXkPq%2FE6EyLNNTpby%2BKt7kVbyWA%3D&st=2020-08-31T05%3A00%3A40Z&se=2020-08-31T05%3A30%3A40Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"cancellationReason\": \"CancelTest\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob2119\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1972/providers/Microsoft.DataBox/jobs/SdkJob2119\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-11-10T19:10:58.915914+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [\r\n {\r\n \"storageAccountName\": \"aaaaaa2\",\r\n \"transferType\": \"ExportFromAzure\",\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"accountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.Storage/storageAccounts/aaaaaa2\",\r\n \"bytesProcessed\": 0,\r\n \"totalBytesToProcess\": 0,\r\n \"isEnumerationInProgress\": false\r\n }\r\n ],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-11-10T19:11:01.6579126+05:30\"\r\n },\r\n {\r\n \"stageName\": \"Cancelled\",\r\n \"displayName\": \"Canceled\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-11-10T19:11:48.1753305+05:30\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \" \",\r\n \"emailList\": [],\r\n \"notificationPreference\": []\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [],\r\n \"dataExportDetails\": [\r\n {\r\n \"transferConfiguration\": {\r\n \"transferConfigurationType\": \"TransferAll\",\r\n \"transferFilterDetails\": {},\r\n \"transferAllDetails\": {\r\n \"include\": {\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"transferAllBlobs\": true,\r\n \"transferAllFiles\": true\r\n }\r\n }\r\n },\r\n \"logCollectionLevel\": \"Error\",\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.Storage/storageAccounts/aaaaaa2\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"preferences\": {\r\n \"encryptionPreferences\": {\r\n \"doubleEncryption\": \"Disabled\"\r\n }\r\n },\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=d0LXQh2mccISsD4YomF5YJskl9pGJgqfFArk59NkCx8%3D&st=2020-11-10T13%3A36%3A51Z&se=2020-11-11T13%3A46%3A51Z&sp=r\",\r\n \"chainOfCustodySasKey\": \"https://wusbeta.blob.core.windows.net/chainofcustody/58e62127-8ce7-46f1-834b-99619b3069d4.txt?sv=2018-03-28&sr=b&sig=v8Ng4yubnnUB32GvrGrh1hJR2nNW4K4jy%2FIA3xTEE%2Bo%3D&st=2020-11-10T13%3A36%3A50Z&se=2020-11-10T14%3A06%3A50Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"cancellationReason\": \"CancelTest\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob923\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2281/providers/Microsoft.DataBox/jobs/SdkJob923\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1972/providers/Microsoft.DataBox/jobs/SdkJob2119?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMTk3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2IyMTE5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2281/providers/Microsoft.DataBox/jobs/SdkJob923?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMjI4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I5MjM/YXBpLXZlcnNpb249MjAyMC0xMS0wMQ==",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"properties\": {\r\n \"details\": {\r\n \"contactDetails\": {\r\n \"contactName\": \"Update Job\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n }\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fe719392-1629-4d7b-adfc-c73c280cae8a"
+ "5b419171-ede0-4598-a413-24113eb81ad3"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -621,37 +621,37 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/695561fa-37b5-4f5d-ae0c-1aa1f558130d?api-version=2018-01-01"
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/66d0ea99-bc20-4ae1-87c6-e954d4aeea0f?api-version=2018-01-01"
],
"Retry-After": [
"10"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "6f531a09-71f6-4892-b4e5-62a865b6e3dc"
+ "8e9258aa-d1ad-4d41-adad-cc9537798407"
],
"x-ms-client-request-id": [
- "fe719392-1629-4d7b-adfc-c73c280cae8a"
+ "5b419171-ede0-4598-a413-24113eb81ad3"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Kestrel"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1197"
],
"x-ms-correlation-request-id": [
- "6f531a09-71f6-4892-b4e5-62a865b6e3dc"
+ "8e9258aa-d1ad-4d41-adad-cc9537798407"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T050512Z:6f531a09-71f6-4892-b4e5-62a865b6e3dc"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T134122Z:8e9258aa-d1ad-4d41-adad-cc9537798407"
],
"Date": [
- "Mon, 31 Aug 2020 05:05:12 GMT"
+ "Tue, 10 Nov 2020 13:41:22 GMT"
],
"Expires": [
"-1"
@@ -664,16 +664,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/695561fa-37b5-4f5d-ae0c-1aa1f558130d?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjk1NTYxZmEtMzdiNS00ZjVkLWFlMGMtMWFhMWY1NTgxMzBkP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/66d0ea99-bc20-4ae1-87c6-e954d4aeea0f?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNjZkMGVhOTktYmMyMC00YWUxLTg3YzYtZTk1NGQ0YWVlYTBmP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -684,37 +684,37 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1972/providers/Microsoft.DataBox/jobs/SdkJob2119?api-version=2018-01-01"
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2281/providers/Microsoft.DataBox/jobs/SdkJob923?api-version=2018-01-01"
],
"Retry-After": [
"10"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "fc56141f-db6b-4d57-99c6-b767dd287040"
+ "fbc91a24-8f84-444c-9677-5f6aea0dea7f"
],
"x-ms-client-request-id": [
- "4e1f218e-043b-40b4-bafb-d25fa6d91d22"
+ "44eb2ac7-b73b-4699-942c-7fba51bd0650"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Kestrel"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11992"
],
"x-ms-correlation-request-id": [
- "fc56141f-db6b-4d57-99c6-b767dd287040"
+ "fbc91a24-8f84-444c-9677-5f6aea0dea7f"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T050523Z:fc56141f-db6b-4d57-99c6-b767dd287040"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T134133Z:fbc91a24-8f84-444c-9677-5f6aea0dea7f"
],
"Date": [
- "Mon, 31 Aug 2020 05:05:23 GMT"
+ "Tue, 10 Nov 2020 13:41:32 GMT"
],
"Expires": [
"-1"
@@ -727,22 +727,22 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/jobs?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9qb2JzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/jobs?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9qb2JzP2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c696e4ca-44f4-4584-9f66-70e8540678f2"
+ "58740fb0-8efd-4507-b4ce-2641f06cc8ec"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -753,29 +753,30 @@
"no-cache"
],
"x-ms-original-request-ids": [
- "391654ef-bf9e-4feb-90b5-e56d7286e668",
- "391654ef-bf9e-4feb-90b5-e56d7286e668",
- "391654ef-bf9e-4feb-90b5-e56d7286e668",
- "391654ef-bf9e-4feb-90b5-e56d7286e668",
- "391654ef-bf9e-4feb-90b5-e56d7286e668",
- "391654ef-bf9e-4feb-90b5-e56d7286e668",
- "391654ef-bf9e-4feb-90b5-e56d7286e668",
- "391654ef-bf9e-4feb-90b5-e56d7286e668",
- "391654ef-bf9e-4feb-90b5-e56d7286e668",
- "391654ef-bf9e-4feb-90b5-e56d7286e668",
- "391654ef-bf9e-4feb-90b5-e56d7286e668"
+ "06802371-28fb-4b5f-91fc-dabb0da73065",
+ "06802371-28fb-4b5f-91fc-dabb0da73065",
+ "06802371-28fb-4b5f-91fc-dabb0da73065",
+ "06802371-28fb-4b5f-91fc-dabb0da73065",
+ "06802371-28fb-4b5f-91fc-dabb0da73065",
+ "06802371-28fb-4b5f-91fc-dabb0da73065",
+ "06802371-28fb-4b5f-91fc-dabb0da73065",
+ "06802371-28fb-4b5f-91fc-dabb0da73065",
+ "06802371-28fb-4b5f-91fc-dabb0da73065",
+ "06802371-28fb-4b5f-91fc-dabb0da73065",
+ "06802371-28fb-4b5f-91fc-dabb0da73065",
+ "06802371-28fb-4b5f-91fc-dabb0da73065"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11989"
],
"x-ms-request-id": [
- "391654ef-bf9e-4feb-90b5-e56d7286e668"
+ "06802371-28fb-4b5f-91fc-dabb0da73065"
],
"x-ms-correlation-request-id": [
- "391654ef-bf9e-4feb-90b5-e56d7286e668"
+ "06802371-28fb-4b5f-91fc-dabb0da73065"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T050537Z:391654ef-bf9e-4feb-90b5-e56d7286e668"
+ "CENTRALUSEUAP:20201110T134147Z:06802371-28fb-4b5f-91fc-dabb0da73065"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -784,7 +785,7 @@
"nosniff"
],
"Date": [
- "Mon, 31 Aug 2020 05:05:37 GMT"
+ "Tue, 10 Nov 2020 13:41:47 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -793,29 +794,29 @@
"-1"
],
"Content-Length": [
- "20613"
+ "26574"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2018-08-30T14:44:39.77401+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"mnaustest\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/ausresgrpmn/providers/Microsoft.DataBox/jobs/mnaustest\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2018-09-10T18:03:22.2578238+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"portalcontractAUS\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/ausresgrpmn/providers/Microsoft.DataBox/jobs/portalcontractAUS\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2018-08-30T15:17:17.3753642+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testBB-diskAU\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/testBB/providers/Microsoft.DataBox/jobs/testBB-diskAU\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T11:12:15.5972523+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"allXML\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/allXML\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-07T15:51:08.4479315+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"bothExportAllxml\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/bothExportAllxml\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T19:44:59.2410723+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"exportAll\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/exportAll\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T18:31:05.3036028+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"importRegressnTest\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/importRegressnTest\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-09T01:57:03.8985885+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testBotthXMLAndAll\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testBotthXMLAndAll\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-05T15:56:52.6983398+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testExportAllOrder\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testExportAllOrder\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-08-26T22:52:20.2149111+05:30\",\r\n \"cancellationReason\": \"IncorrectOrder Test \",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testlfs\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testlfs\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T17:45:25.464989+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testPayload\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testPayload\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-08-26T23:02:46.969366+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testwithoutlfs\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testwithoutlfs\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T10:43:04.8775864+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"xmlOnlyOrder\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/xmlOnlyOrder\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2018-11-27T15:17:49.0760408+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testbadresourcegroup\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat3198inh0-9)inh(il(h)_fyoin)(upf(yLASD0-FJ(hal-DSNWP0JDS0P3-0SJ93/providers/Microsoft.DataBox/jobs/testbadresourcegroup\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2019-01-04T09:08:49.9928621+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"andipodtest4jan\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/andipodtest4jan\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-28T15:20:48.1058546+05:30\",\r\n \"cancellationReason\": \"NoLongerNeeded null\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"dbtest1\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/dbtest1\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-04-14T08:51:18.2067875+05:30\",\r\n \"cancellationReason\": \"IncorrectOrder null\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"degautam14-04-Clone\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/degautam14-04-Clone\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-27T18:08:30.6622356+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"degautamtestexport\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/degautamtestexport\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-21T20:41:02.3837388+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"DegautamTestExportOrder\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/DegautamTestExportOrder\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-24T07:56:23.6839464+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"degautamtestorder\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/degautamtestorder\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-04-14T08:48:21.2260174+05:30\",\r\n \"cancellationReason\": \"IncorrectOrder null\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"degautamTestOrder14-04\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/degautamTestOrder14-04\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-12T12:19:19.8627264+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"export\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/export\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-04-05T19:50:20.9692355+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"exportTestResource\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.DataBox/jobs/exportTestResource\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-04-10T15:09:45.7080012+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"sanakTestImportNew\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.DataBox/jobs/sanakTestImportNew\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-04-10T15:13:02.5724966+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"sanakTestImportOld\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.DataBox/jobs/sanakTestImportOld\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-04-20T13:39:28.1940929+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"sanakTestImportOld1\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.DataBox/jobs/sanakTestImportOld1\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-04-10T15:14:59.6879599+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"sanakTestImportOld2\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.DataBox/jobs/sanakTestImportOld2\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-07-21T23:43:34.513148+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"saranyagorder\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/saranyagorder\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/jobs?api-version=2020-04-01&%24skiptoken=dVJdb5tAEPwvVts3wnGBBCJFlT%2bAODXEPji%2b3u4A4wMOkME2dpT%2fnkujplJVv612dmdGO%2fs6afJxWLGm6icPr5PQ9HzsTR4mu2Ho%2bgdZ5qQhRc7zZrghl8M%2bv0lbLvcH2qd71g2sbXp5S%2b50oMOtpG%2b395JKoCYZWnovpbmREU1VoAq3crdvjyzL973ssHTf9u12uFmQgczaUS5b2v8kHZOOAheUjxBAIAFVAsqPb33FOr%2bt8uZxvTBUGp6KjAfnFNZHWgLmeOppyWY15e4xsetDcgEsixBf%2bSZclvp3SBebVt9A45AJNAstQELjENjGPgnVT7RYLsYFhZpANCWOUCdqTOFQ01J152xaLOdTPfjSVM%2brcqqvlKROG1fMfrHMp8XaQlpqY8Eb2BajNhZzfzrCxwdTsTa1On9Cmzh6BuRTbZVEldhxPFMIWoRifPYBmrmmMoQRWiOlG%2fymOjlWjT3fcgK7H8OoKzOrOgd%2bQBDAo18hK8ea6XElzqtnHtdZT7g7vEQdc%2br25NuKR2z0hHjNHLjjPo61NFyevabVV%2bCao388e%2fQ2%2b%2bsVCq8lDZK7uHTDPBBeGpSE5vNtHKQKrXd3G56UNES%2ftYhtXkI%2bMhqhNjFjNVOKi893JcWJkgSZndfdAfOxdBRLXc%2bNlyTaAcyNWw8G2roAvz4uJ3LC4mpNEiGHQncnEhU%2foG1SXg%2bir4m9%2f%2bCfGQrsesbl6Xj9QyZvb%2b8%3d\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-09-03T14:03:58.4767711+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"T-b6595333312d\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/T-b6595333312d\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-09-03T14:05:56.0984957+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"T-b6595333312d-Clone\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/T-b6595333312d-Clone\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2018-08-30T14:44:39.77401+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"mnaustest\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/ausresgrpmn/providers/Microsoft.DataBox/jobs/mnaustest\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2018-09-10T18:03:22.2578238+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"portalcontractAUS\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/ausresgrpmn/providers/Microsoft.DataBox/jobs/portalcontractAUS\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-22T22:07:24.9860687+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/3c66da21-607e-49b4-8bdf-f25fbb8f705f/resourcegroups/shsarawa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/shsarawaIdentity\": {\r\n \"principalId\": \"ba90a4e6-a8bc-486d-ac48-d3da64d0d01d\",\r\n \"clientId\": \"9d15eff4-1af5-4b89-9575-7c33707d1203\"\r\n },\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sdkIdentity\": {\r\n \"principalId\": \"5cba71a4-1088-4540-bacf-a7af4426c982\",\r\n \"clientId\": \"9c1eb7d3-ed10-4ef6-8b70-9bc4ddeeeda3\"\r\n }\r\n }\r\n },\r\n \"name\": \"dbcmkinline-test\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxCmkTest/providers/Microsoft.DataBox/jobs/dbcmkinline-test\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2018-08-30T15:17:17.3753642+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testBB-diskAU\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/testBB/providers/Microsoft.DataBox/jobs/testBB-diskAU\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-10-29T13:42:40.7213238+05:30\",\r\n \"cancellationReason\": \"IncorrectOrder null\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"uksouth\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"degautamtestorderuk\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/ak-k8sample-RG/providers/Microsoft.DataBox/jobs/degautamtestorderuk\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-13T18:37:39.9212822+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"akvenkatmorethan10\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/AADAppShellResGrp/providers/Microsoft.DataBox/jobs/akvenkatmorethan10\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-13T18:49:12.11445+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"akvenkatmorethan10-Clone\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/AADAppShellResGrp/providers/Microsoft.DataBox/jobs/akvenkatmorethan10-Clone\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T11:12:15.5972523+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"allXML\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/allXML\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-07T15:51:08.4479315+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"bothExportAllxml\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/bothExportAllxml\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T19:44:59.2410723+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"exportAll\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/exportAll\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-15T10:28:25.8357451+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"exportest\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/exportest\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T18:31:05.3036028+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"importRegressnTest\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/importRegressnTest\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-10-13T20:15:14.9785275+05:30\",\r\n \"cancellationReason\": \"IncorrectOrder null\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"nidhijexportpremium\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/nidhijexportpremium\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-09T01:57:03.8985885+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testBotthXMLAndAll\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testBotthXMLAndAll\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-05T15:56:52.6983398+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testExportAllOrder\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testExportAllOrder\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-08-26T22:52:20.2149111+05:30\",\r\n \"cancellationReason\": \"IncorrectOrder Test \",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testlfs\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testlfs\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T17:45:25.464989+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testPayload\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testPayload\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-08-26T23:02:46.969366+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testwithoutlfs\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testwithoutlfs\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T10:43:04.8775864+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"xmlOnlyOrder\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/xmlOnlyOrder\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2018-11-27T15:17:49.0760408+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testbadresourcegroup\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat3198inh0-9)inh(il(h)_fyoin)(upf(yLASD0-FJ(hal-DSNWP0JDS0P3-0SJ93/providers/Microsoft.DataBox/jobs/testbadresourcegroup\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-21T20:39:21.9096902+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"akvenkat2302\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.DataBox/jobs/akvenkat2302\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2019-01-04T09:08:49.9928621+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"andipodtest4jan\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/andipodtest4jan\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-19T13:23:40.2533122+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned,UserAssigned\",\r\n \"principalId\": \"1860a3c8-94f0-4b81-9492-5b56a1808897\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sdkIdentity\": {\r\n \"principalId\": \"5cba71a4-1088-4540-bacf-a7af4426c982\",\r\n \"clientId\": \"9c1eb7d3-ed10-4ef6-8b70-9bc4ddeeeda3\"\r\n },\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/raginip/providers/Microsoft.ManagedIdentity/userAssignedIdentities/raginip-uai\": {\r\n \"principalId\": \"a952e4a6-1c68-460a-ba22-613bcef34862\",\r\n \"clientId\": \"75da410b-a7c6-4326-a23f-a88f11a48132\"\r\n },\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/aman-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/amanTestIdentity\": {\r\n \"principalId\": \"5474d8b4-e465-45ec-a00b-9eba1ba1e99b\",\r\n \"clientId\": \"709bfeb0-fb8f-47ee-a859-c896c90b935a\"\r\n }\r\n }\r\n },\r\n \"name\": \"cmkeditbvt\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/cmkeditbvt\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-20T17:52:38.8009853+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned,UserAssigned\",\r\n \"principalId\": \"c5360016-0471-4929-b2f4-ea9359bd49d0\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sdkIdentity\": {\r\n \"principalId\": \"5cba71a4-1088-4540-bacf-a7af4426c982\",\r\n \"clientId\": \"9c1eb7d3-ed10-4ef6-8b70-9bc4ddeeeda3\"\r\n },\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/MSIResourcegroupNew/providers/Microsoft.ManagedIdentity/userAssignedIdentities/willitwork\": {\r\n \"principalId\": \"9b2470fb-dfd5-48e6-8cfb-466b6eb46d6c\",\r\n \"clientId\": \"7a6b9ead-dccb-450c-934d-c247a8c5d5cd\"\r\n },\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/testRGSheetal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/kustoIdentity\": {\r\n \"principalId\": \"43f32868-235b-4f20-b28f-9cace9919bec\",\r\n \"clientId\": \"508a70aa-e2f1-4e3f-abde-59000131d8d0\"\r\n },\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/aman-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/amanTestIdentity\": {\r\n \"principalId\": \"5474d8b4-e465-45ec-a00b-9eba1ba1e99b\",\r\n \"clientId\": \"709bfeb0-fb8f-47ee-a859-c896c90b935a\"\r\n }\r\n }\r\n },\r\n \"name\": \"cmkeditbvt-Clone\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/cmkeditbvt-Clone\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-02T15:32:30.0725363+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned,UserAssigned\",\r\n \"principalId\": \"16321750-6832-4aeb-8af8-ca35f13ee90e\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/aman-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/amanTestIdentity\": {\r\n \"principalId\": \"5474d8b4-e465-45ec-a00b-9eba1ba1e99b\",\r\n \"clientId\": \"709bfeb0-fb8f-47ee-a859-c896c90b935a\"\r\n },\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sdkIdentity\": {\r\n \"principalId\": \"5cba71a4-1088-4540-bacf-a7af4426c982\",\r\n \"clientId\": \"9c1eb7d3-ed10-4ef6-8b70-9bc4ddeeeda3\"\r\n }\r\n }\r\n },\r\n \"name\": \"cmkeditbvt-Clone-Clone\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/cmkeditbvt-Clone-Clone\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-21T11:55:13.5245296+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned,UserAssigned\",\r\n \"principalId\": \"cea5f2c8-457d-4f2b-80a5-2aeda8b78551\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sdkIdentity\": {\r\n \"principalId\": \"5cba71a4-1088-4540-bacf-a7af4426c982\",\r\n \"clientId\": \"9c1eb7d3-ed10-4ef6-8b70-9bc4ddeeeda3\"\r\n }\r\n }\r\n },\r\n \"name\": \"cmkeditflow\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/cmkeditflow\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-21T12:50:01.5573834+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned,UserAssigned\",\r\n \"principalId\": \"bf7437d1-94b6-41ef-a557-9d9fbd358dce\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sdkIdentity\": {\r\n \"principalId\": \"5cba71a4-1088-4540-bacf-a7af4426c982\",\r\n \"clientId\": \"9c1eb7d3-ed10-4ef6-8b70-9bc4ddeeeda3\"\r\n }\r\n }\r\n },\r\n \"name\": \"cmkeditflow-Clone\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/cmkeditflow-Clone\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-28T15:20:48.1058546+05:30\",\r\n \"cancellationReason\": \"NoLongerNeeded null\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"dbtest1\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/dbtest1\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-04-14T08:51:18.2067875+05:30\",\r\n \"cancellationReason\": \"IncorrectOrder null\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"degautam14-04-Clone\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/degautam14-04-Clone\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-27T11:28:36.8848991+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"degautamDBUkImport\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/degautamDBUkImport\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n }\r\n ],\r\n \"nextLink\": \"https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/jobs?api-version=2020-11-01&%24skiptoken=fVJrb5swFP0v0bpvScCFllSqpjyAJAppYsA8vtmYEAMGFB6BVv3vdVutm6Ztkj9Y99x7zrmPl1ER982OFVk9engZebrtuPboYXRumqp%2bmE6juGguOG%2fruMXVhOMCJzEXsQl%2bbi%2fxJCr5tG5JHV1Y1bCyqKcnfKdJGjiNtdPpfqxgoI5nanQ%2fjuIZxaoiAwWcptWl7BiNL%2fXUYtGlrMtTM1nhBi%2fKfpqWpP6BKzbuBC4oH4EEpLEsjyX5%2b7c6Y5VTZnHxeFjNFOJdE8rREIG8I6nELFu5btgiJ3zfhWbehs8Soz7kO0cHm1S7AYvVsdSOYNZSgVLPkLA3a5E5u4Se8okmm1W%2fIkAViCoHPqzE3yWgyUmq7JdsnmyWcw19aSrDLp1rOznMo2Ivcr9YlvPkYEA1Ml3Bi0yDEdMVeT8jwsc7U3LQ1Txew2PgbyX8qbYL%2fUzUWLYuBA1MXHdwJLjY63Lj%2bfAA5apxiuxqGblrO4aFzLr3%2fCqlRjYgB2Eoub2TQSN2Vd3mchBnWx7ktMZ83zz5FbPy8uqYso1NuIY8ZxY4c8cN1MjbDHZRajvpX47%2b8GyTW%2frLK3haGilB4V2Q7r0YCS8FDD19exugSCb5%2be7Iw5R48EMLm%2fqzx3tGfFiGeqBQORlc3mMrC%2fpQpyY1qgCvKbMk4RXpzc65dg5HCjW2HZWaPHZ%2b24VpDCFAkmPO0s99ve%2fAXW8r4hlDLCrF9P%2bS8dHN6tr99xrENPYdKcQVFOgsbqYjOewwQO0hubldiTd6fX0D\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1972/providers/Microsoft.DataBox/jobs?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMTk3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2281/providers/Microsoft.DataBox/jobs?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMjI4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icz9hcGktdmVyc2lvbj0yMDIwLTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c3ff9af6-4f78-4b7a-9b9c-f424b44a0fd1"
+ "97ac239d-41ca-4782-9a34-e7bf6bead839"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -825,35 +826,35 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "7f535d0a-bcaf-4769-82e2-d7910b55b5fc"
+ "4f036cef-3886-4c9c-8d1e-7c2215525c70"
],
"x-ms-client-request-id": [
- "c3ff9af6-4f78-4b7a-9b9c-f424b44a0fd1"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "97ac239d-41ca-4782-9a34-e7bf6bead839"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "7f535d0a-bcaf-4769-82e2-d7910b55b5fc"
+ "4f036cef-3886-4c9c-8d1e-7c2215525c70"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T050538Z:7f535d0a-bcaf-4769-82e2-d7910b55b5fc"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T134147Z:4f036cef-3886-4c9c-8d1e-7c2215525c70"
],
"Date": [
- "Mon, 31 Aug 2020 05:05:38 GMT"
+ "Tue, 10 Nov 2020 13:41:47 GMT"
],
"Content-Length": [
- "900"
+ "897"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -862,26 +863,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-08-31T10:34:50.6172117+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob2119\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1972/providers/Microsoft.DataBox/jobs/SdkJob2119\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-10T19:10:58.915914+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob923\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2281/providers/Microsoft.DataBox/jobs/SdkJob923\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1972/providers/Microsoft.DataBox/jobs/SdkJob2119/cancel?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMTk3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2IyMTE5L2NhbmNlbD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2281/providers/Microsoft.DataBox/jobs/SdkJob923/cancel?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMjI4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I5MjMvY2FuY2VsP2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"reason\": \"CancelTest\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ce8351a9-6338-4339-b6f2-255655c0e574"
+ "79742fec-f734-4d78-9f19-c100da627a40"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -897,32 +898,32 @@
"Pragma": [
"no-cache"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "3893b322-e0bb-4e91-9e5e-f10be5c86db6"
+ "64a98a78-b719-47ca-b7f3-784ab6271c48"
],
"x-ms-client-request-id": [
- "ce8351a9-6338-4339-b6f2-255655c0e574"
+ "79742fec-f734-4d78-9f19-c100da627a40"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Kestrel"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1194"
],
"x-ms-correlation-request-id": [
- "3893b322-e0bb-4e91-9e5e-f10be5c86db6"
+ "64a98a78-b719-47ca-b7f3-784ab6271c48"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T050538Z:3893b322-e0bb-4e91-9e5e-f10be5c86db6"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T134148Z:64a98a78-b719-47ca-b7f3-784ab6271c48"
],
"Date": [
- "Mon, 31 Aug 2020 05:05:38 GMT"
+ "Tue, 10 Nov 2020 13:41:48 GMT"
],
"Expires": [
"-1"
@@ -932,22 +933,22 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1972/providers/Microsoft.DataBox/jobs/SdkJob2119?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMTk3Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2IyMTE5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg2281/providers/Microsoft.DataBox/jobs/SdkJob923?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMjI4MS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I5MjM/YXBpLXZlcnNpb249MjAyMC0xMS0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4868a12c-b0be-4dc6-9651-78bc0bacdd68"
+ "8b8e6b4c-b44e-4b7c-8a86-6da1e478f5a8"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -958,37 +959,37 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/02874722-a973-4a37-befb-4bdaae230209-deleteorder?api-version=2018-01-01"
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/58e62127-8ce7-46f1-834b-99619b3069d4-deleteorder?api-version=2018-01-01"
],
"Retry-After": [
"10"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "1aecec40-1a84-4592-bd67-f39116083376"
+ "dd838042-fa9c-4211-aa13-a6e8b515452d"
],
"x-ms-client-request-id": [
- "4868a12c-b0be-4dc6-9651-78bc0bacdd68"
+ "8b8e6b4c-b44e-4b7c-8a86-6da1e478f5a8"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Kestrel"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
"14999"
],
"x-ms-correlation-request-id": [
- "1aecec40-1a84-4592-bd67-f39116083376"
+ "dd838042-fa9c-4211-aa13-a6e8b515452d"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T051041Z:1aecec40-1a84-4592-bd67-f39116083376"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T134652Z:dd838042-fa9c-4211-aa13-a6e8b515452d"
],
"Date": [
- "Mon, 31 Aug 2020 05:10:41 GMT"
+ "Tue, 10 Nov 2020 13:46:51 GMT"
],
"Expires": [
"-1"
@@ -1001,16 +1002,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/02874722-a973-4a37-befb-4bdaae230209-deleteorder?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDI4NzQ3MjItYTk3My00YTM3LWJlZmItNGJkYWFlMjMwMjA5LWRlbGV0ZW9yZGVyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/58e62127-8ce7-46f1-834b-99619b3069d4-deleteorder?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNThlNjIxMjctOGNlNy00NmYxLTgzNGItOTk2MTliMzA2OWQ0LWRlbGV0ZW9yZGVyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -1020,32 +1021,32 @@
"Pragma": [
"no-cache"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "83970b89-a3dc-4d53-b72c-53524e3397ab"
+ "133e3648-fdbd-4d9a-8414-663407e91fe9"
],
"x-ms-client-request-id": [
- "85eb7796-b1fc-4e98-84ba-559e00d10c52"
+ "ac7bfc84-8685-460f-ae31-cfcac3636e8a"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Kestrel"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11985"
],
"x-ms-correlation-request-id": [
- "83970b89-a3dc-4d53-b72c-53524e3397ab"
+ "133e3648-fdbd-4d9a-8414-663407e91fe9"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T051052Z:83970b89-a3dc-4d53-b72c-53524e3397ab"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T134702Z:133e3648-fdbd-4d9a-8414-663407e91fe9"
],
"Date": [
- "Mon, 31 Aug 2020 05:10:51 GMT"
+ "Tue, 10 Nov 2020 13:47:01 GMT"
],
"Expires": [
"-1"
@@ -1055,16 +1056,16 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/02874722-a973-4a37-befb-4bdaae230209-deleteorder?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMDI4NzQ3MjItYTk3My00YTM3LWJlZmItNGJkYWFlMjMwMjA5LWRlbGV0ZW9yZGVyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/58e62127-8ce7-46f1-834b-99619b3069d4-deleteorder?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNThlNjIxMjctOGNlNy00NmYxLTgzNGItOTk2MTliMzA2OWQ0LWRlbGV0ZW9yZGVyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -1074,32 +1075,32 @@
"Pragma": [
"no-cache"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "ef5fa708-78e8-47c0-af20-a2ff908c89e3"
+ "5a0f7d0f-3a2d-4980-917a-8bdba2d3baa6"
],
"x-ms-client-request-id": [
- "b9f30089-9cac-424e-91f4-5757d37ce8ba"
+ "5e6121b3-e28c-424f-affb-c5c58e7900eb"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Kestrel"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11984"
],
"x-ms-correlation-request-id": [
- "ef5fa708-78e8-47c0-af20-a2ff908c89e3"
+ "5a0f7d0f-3a2d-4980-917a-8bdba2d3baa6"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T051052Z:ef5fa708-78e8-47c0-af20-a2ff908c89e3"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T134702Z:5a0f7d0f-3a2d-4980-917a-8bdba2d3baa6"
],
"Date": [
- "Mon, 31 Aug 2020 05:10:51 GMT"
+ "Tue, 10 Nov 2020 13:47:02 GMT"
],
"Expires": [
"-1"
@@ -1111,8 +1112,8 @@
],
"Names": {
"TestExportJobCRUDOperations": [
- "SdkRg1972",
- "SdkJob2119"
+ "SdkRg2281",
+ "SdkJob923"
]
},
"Variables": {
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobCRUDTests/TestJobCRUDOperations.json b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobCRUDTests/TestJobCRUDOperations.json
index b223ba8cfe4d1..79c8567e21f69 100644
--- a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobCRUDTests/TestJobCRUDOperations.json
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobCRUDTests/TestJobCRUDOperations.json
@@ -1,21 +1,21 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/SdkRg7416?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlZ3JvdXBzL1Nka1JnNzQxNj9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/SdkRg7520?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlZ3JvdXBzL1Nka1JnNzUyMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"westus\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c01031c9-8c37-49c7-a639-c96c765ed5f8"
+ "d3206b98-31ad-4733-a2f8-453665b7dcea"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
],
"Content-Type": [
@@ -36,13 +36,13 @@
"1199"
],
"x-ms-request-id": [
- "47b78eb2-14f0-4872-9b33-320438e1ea9e"
+ "ea32cbf5-3751-4d27-b88c-d198b7cff2b8"
],
"x-ms-correlation-request-id": [
- "47b78eb2-14f0-4872-9b33-320438e1ea9e"
+ "ea32cbf5-3751-4d27-b88c-d198b7cff2b8"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T051107Z:47b78eb2-14f0-4872-9b33-320438e1ea9e"
+ "SOUTHINDIA:20201110T134711Z:ea32cbf5-3751-4d27-b88c-d198b7cff2b8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51,7 +51,7 @@
"nosniff"
],
"Date": [
- "Mon, 31 Aug 2020 05:11:07 GMT"
+ "Tue, 10 Nov 2020 13:47:11 GMT"
],
"Content-Length": [
"171"
@@ -63,26 +63,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7416\",\r\n \"name\": \"SdkRg7416\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7520\",\r\n \"name\": \"SdkRg7520\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7416/providers/Microsoft.DataBox/jobs/SdkJob9389?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnNzQxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I5Mzg5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7520/providers/Microsoft.DataBox/jobs/SdkJob7417?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnNzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I3NDE3P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"details\": {\r\n \"jobDetailsType\": \"DataBox\",\r\n \"contactDetails\": {\r\n \"contactName\": \"Public SDK Test\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "39676b80-b92e-4017-a693-06032ecdf098"
+ "7acbf4f5-4110-44b8-be97-a08175b92655"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -99,37 +99,37 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/bf49dead-e0ae-4b59-8ec4-baebe5342121?api-version=2018-01-01"
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/c4673386-4188-42b7-a918-f60b0ea265ca?api-version=2018-01-01"
],
"Retry-After": [
"10"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "218e0a62-d6bb-4361-92ef-f1212df6278f"
+ "42254472-ef2d-498e-b486-576f58bdbb5b"
],
"x-ms-client-request-id": [
- "39676b80-b92e-4017-a693-06032ecdf098"
+ "7acbf4f5-4110-44b8-be97-a08175b92655"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Kestrel"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1196"
],
"x-ms-correlation-request-id": [
- "218e0a62-d6bb-4361-92ef-f1212df6278f"
+ "42254472-ef2d-498e-b486-576f58bdbb5b"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T051118Z:218e0a62-d6bb-4361-92ef-f1212df6278f"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T134715Z:42254472-ef2d-498e-b486-576f58bdbb5b"
],
"Date": [
- "Mon, 31 Aug 2020 05:11:18 GMT"
+ "Tue, 10 Nov 2020 13:47:15 GMT"
],
"Expires": [
"-1"
@@ -142,16 +142,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/bf49dead-e0ae-4b59-8ec4-baebe5342121?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYmY0OWRlYWQtZTBhZS00YjU5LThlYzQtYmFlYmU1MzQyMTIxP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/c4673386-4188-42b7-a918-f60b0ea265ca?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYzQ2NzMzODYtNDE4OC00MmI3LWE5MTgtZjYwYjBlYTI2NWNhP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -162,37 +162,37 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7416/providers/Microsoft.DataBox/jobs/SdkJob9389?api-version=2018-01-01"
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7520/providers/Microsoft.DataBox/jobs/SdkJob7417?api-version=2018-01-01"
],
"Retry-After": [
"10"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "a7a4f4c2-9cff-4548-9012-0e91a8788ab4"
+ "e5202de0-9289-47b2-ac82-8df81ea3b560"
],
"x-ms-client-request-id": [
- "0dd4d1e9-fcf2-4344-9e02-3a2925623264"
+ "d7415bb0-8df0-46d1-99f4-926e178db65e"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Kestrel"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "11987"
],
"x-ms-correlation-request-id": [
- "a7a4f4c2-9cff-4548-9012-0e91a8788ab4"
+ "e5202de0-9289-47b2-ac82-8df81ea3b560"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T051128Z:a7a4f4c2-9cff-4548-9012-0e91a8788ab4"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T134725Z:e5202de0-9289-47b2-ac82-8df81ea3b560"
],
"Date": [
- "Mon, 31 Aug 2020 05:11:27 GMT"
+ "Tue, 10 Nov 2020 13:47:25 GMT"
],
"Expires": [
"-1"
@@ -205,16 +205,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7416/providers/Microsoft.DataBox/jobs/SdkJob9389?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnNzQxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I5Mzg5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7520/providers/Microsoft.DataBox/jobs/SdkJob7417?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnNzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I3NDE3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -224,35 +224,35 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "228b4a1d-e0d3-4c37-bffb-a2a0ff6a577f"
+ "ca2efec5-34fd-44f7-a80b-a8f331aac257"
],
"x-ms-client-request-id": [
- "c476d017-9102-4f41-a5bf-ad985fc06cfb"
+ "e6231052-fb2d-4f3a-9ec8-7b91261972b3"
],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "228b4a1d-e0d3-4c37-bffb-a2a0ff6a577f"
+ "ca2efec5-34fd-44f7-a80b-a8f331aac257"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T051139Z:228b4a1d-e0d3-4c37-bffb-a2a0ff6a577f"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T134735Z:ca2efec5-34fd-44f7-a80b-a8f331aac257"
],
"Date": [
- "Mon, 31 Aug 2020 05:11:38 GMT"
+ "Tue, 10 Nov 2020 13:47:35 GMT"
],
"Content-Length": [
- "764"
+ "765"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -261,20 +261,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-08-31T10:41:18.151064+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob9389\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7416/providers/Microsoft.DataBox/jobs/SdkJob9389\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-10T19:17:14.5101158+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob7417\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7520/providers/Microsoft.DataBox/jobs/SdkJob7417\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7416/providers/Microsoft.DataBox/jobs/SdkJob9389?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnNzQxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I5Mzg5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7520/providers/Microsoft.DataBox/jobs/SdkJob7417?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnNzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I3NDE3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -284,35 +284,35 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11983"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "4dd072a2-eacc-47f0-ab8e-f8be238ae28e"
+ "215fbeae-b5ef-495c-a81b-7e421a8feadc"
],
"x-ms-client-request-id": [
- "c57994ad-ee07-48e8-a511-56d0d8594153"
+ "5be02b9b-86f0-46ee-b04e-9f37018478e3"
],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "4dd072a2-eacc-47f0-ab8e-f8be238ae28e"
+ "215fbeae-b5ef-495c-a81b-7e421a8feadc"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T051201Z:4dd072a2-eacc-47f0-ab8e-f8be238ae28e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T134758Z:215fbeae-b5ef-495c-a81b-7e421a8feadc"
],
"Date": [
- "Mon, 31 Aug 2020 05:12:00 GMT"
+ "Tue, 10 Nov 2020 13:47:57 GMT"
],
"Content-Length": [
- "764"
+ "765"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -321,26 +321,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-08-31T10:41:18.151064+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob9389\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7416/providers/Microsoft.DataBox/jobs/SdkJob9389\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-10T19:17:14.5101158+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob7417\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7520/providers/Microsoft.DataBox/jobs/SdkJob7417\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7416/providers/Microsoft.DataBox/jobs/SdkJob9389?api-version=2020-04-01&$expand=details",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnNzQxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I5Mzg5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDEmJGV4cGFuZD1kZXRhaWxz",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7520/providers/Microsoft.DataBox/jobs/SdkJob7417?api-version=2020-11-01&$expand=details",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnNzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I3NDE3P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDEmJGV4cGFuZD1kZXRhaWxz",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dfaee287-d91f-4399-a603-19486807267b"
+ "1c89193c-2fcb-4969-9051-ef48189f6523"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -350,35 +350,35 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11985"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "abd8a0cd-7f15-45b8-bc9c-27f9f9e8cbd8"
+ "82a19129-3fbc-4d51-812a-55f5ea7a747e"
],
"x-ms-client-request-id": [
- "dfaee287-d91f-4399-a603-19486807267b"
+ "1c89193c-2fcb-4969-9051-ef48189f6523"
],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "abd8a0cd-7f15-45b8-bc9c-27f9f9e8cbd8"
+ "82a19129-3fbc-4d51-812a-55f5ea7a747e"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T051139Z:abd8a0cd-7f15-45b8-bc9c-27f9f9e8cbd8"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T134736Z:82a19129-3fbc-4d51-812a-55f5ea7a747e"
],
"Date": [
- "Mon, 31 Aug 2020 05:11:39 GMT"
+ "Tue, 10 Nov 2020 13:47:35 GMT"
],
"Content-Length": [
- "4216"
+ "4340"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -387,26 +387,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-08-31T10:41:18.151064+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-08-31T10:41:19.9853287+05:30\"\r\n },\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"displayName\": \"Processed\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"displayName\": \"Dispatched\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"displayName\": \"Delivered\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"displayName\": \"Picked up\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"displayName\": \"Received\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"displayName\": \"Data copy in progress\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Completed\",\r\n \"displayName\": \"Completed\",\r\n \"stageStatus\": \"None\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \"Public SDK Test\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ],\r\n \"notificationPreference\": [\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"sendNotification\": true\r\n }\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=CBPvADklIqgNdaHILceVbBOwabgQsXd8%2BZUb5mX3R2M%3D&st=2020-08-31T05%3A01%3A39Z&se=2020-09-01T05%3A11%3A39Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob9389\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7416/providers/Microsoft.DataBox/jobs/SdkJob9389\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-10T19:17:14.5101158+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-11-10T19:17:17.8670081+05:30\"\r\n },\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"displayName\": \"Processed\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"displayName\": \"Dispatched\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"displayName\": \"Delivered\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"displayName\": \"Picked up\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"displayName\": \"Received\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"displayName\": \"Data copy in progress\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Completed\",\r\n \"displayName\": \"Completed\",\r\n \"stageStatus\": \"None\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \"Public SDK Test\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ],\r\n \"notificationPreference\": [\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"sendNotification\": true\r\n }\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"preferences\": {\r\n \"encryptionPreferences\": {\r\n \"doubleEncryption\": \"Disabled\"\r\n }\r\n },\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=x1GgwIJAYOmcCXfrCKfNHkXXSrPCKznEb%2F9BzwnllLo%3D&st=2020-11-10T13%3A37%3A36Z&se=2020-11-11T13%3A47%3A36Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob7417\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7520/providers/Microsoft.DataBox/jobs/SdkJob7417\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7416/providers/Microsoft.DataBox/jobs/SdkJob9389?api-version=2020-04-01&$expand=details",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnNzQxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I5Mzg5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDEmJGV4cGFuZD1kZXRhaWxz",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7520/providers/Microsoft.DataBox/jobs/SdkJob7417?api-version=2020-11-01&$expand=details",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnNzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I3NDE3P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDEmJGV4cGFuZD1kZXRhaWxz",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6f276caa-d6a7-48fe-a390-4881952910f2"
+ "6675a233-26ac-4458-930f-1d334c7a8817"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -416,35 +416,35 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11982"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "f3bbabd3-22e2-4a42-bd1a-b3997cda44ca"
+ "f39a0585-1cca-4b7d-be15-6a9a4144ce54"
],
"x-ms-client-request-id": [
- "6f276caa-d6a7-48fe-a390-4881952910f2"
+ "6675a233-26ac-4458-930f-1d334c7a8817"
],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "f3bbabd3-22e2-4a42-bd1a-b3997cda44ca"
+ "f39a0585-1cca-4b7d-be15-6a9a4144ce54"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T051201Z:f3bbabd3-22e2-4a42-bd1a-b3997cda44ca"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T134758Z:f39a0585-1cca-4b7d-be15-6a9a4144ce54"
],
"Date": [
- "Mon, 31 Aug 2020 05:12:01 GMT"
+ "Tue, 10 Nov 2020 13:47:58 GMT"
],
"Content-Length": [
- "4213"
+ "4337"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -453,26 +453,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-08-31T10:41:18.151064+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-08-31T10:41:19.9853287+05:30\"\r\n },\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"displayName\": \"Processed\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"displayName\": \"Dispatched\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"displayName\": \"Delivered\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"displayName\": \"Picked up\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"displayName\": \"Received\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"displayName\": \"Data copy in progress\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Completed\",\r\n \"displayName\": \"Completed\",\r\n \"stageStatus\": \"None\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \"Update Job\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ],\r\n \"notificationPreference\": [\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"sendNotification\": true\r\n }\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=rPiygaD6lODc4%2BPV648w%2FiQSXZ4JkA6I0ANfzRwBPMo%3D&st=2020-08-31T05%3A02%3A01Z&se=2020-09-01T05%3A12%3A01Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob9389\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7416/providers/Microsoft.DataBox/jobs/SdkJob9389\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-10T19:17:14.5101158+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-11-10T19:17:17.8670081+05:30\"\r\n },\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"displayName\": \"Processed\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"displayName\": \"Dispatched\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"displayName\": \"Delivered\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"displayName\": \"Picked up\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"displayName\": \"Received\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"displayName\": \"Data copy in progress\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Completed\",\r\n \"displayName\": \"Completed\",\r\n \"stageStatus\": \"None\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \"Update Job\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ],\r\n \"notificationPreference\": [\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"sendNotification\": true\r\n }\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"preferences\": {\r\n \"encryptionPreferences\": {\r\n \"doubleEncryption\": \"Disabled\"\r\n }\r\n },\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=%2FRHFxSyOOdWiP43YlbEVsMjG310Oxx5EM%2FSr4i9p098%3D&st=2020-11-10T13%3A37%3A58Z&se=2020-11-11T13%3A47%3A58Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob7417\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7520/providers/Microsoft.DataBox/jobs/SdkJob7417\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7416/providers/Microsoft.DataBox/jobs/SdkJob9389?api-version=2020-04-01&$expand=details",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnNzQxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I5Mzg5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDEmJGV4cGFuZD1kZXRhaWxz",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7520/providers/Microsoft.DataBox/jobs/SdkJob7417?api-version=2020-11-01&$expand=details",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnNzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I3NDE3P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDEmJGV4cGFuZD1kZXRhaWxz",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b41fea57-c884-4d05-aabc-7d58bf368814"
+ "e11112c3-5b0a-4c52-a943-3ee05a6410fd"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -482,35 +482,35 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11979"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "e03979a6-87f7-4372-a126-d0ea9248214a"
+ "d5dc186d-e358-43ff-bda4-2584272642fc"
],
"x-ms-client-request-id": [
- "b41fea57-c884-4d05-aabc-7d58bf368814"
+ "e11112c3-5b0a-4c52-a943-3ee05a6410fd"
],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "e03979a6-87f7-4372-a126-d0ea9248214a"
+ "d5dc186d-e358-43ff-bda4-2584272642fc"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T051224Z:e03979a6-87f7-4372-a126-d0ea9248214a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T134804Z:d5dc186d-e358-43ff-bda4-2584272642fc"
],
"Date": [
- "Mon, 31 Aug 2020 05:12:23 GMT"
+ "Tue, 10 Nov 2020 13:48:04 GMT"
],
"Content-Length": [
- "3971"
+ "4097"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -519,26 +519,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-08-31T10:41:18.151064+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [\r\n {\r\n \"storageAccountName\": \"databoxbvttestaccount\",\r\n \"transferType\": \"ImportToAzure\",\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"accountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\",\r\n \"bytesProcessed\": 0,\r\n \"totalBytesToProcess\": 0,\r\n \"isEnumerationInProgress\": false\r\n }\r\n ],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-08-31T10:41:19.9853287+05:30\"\r\n },\r\n {\r\n \"stageName\": \"Cancelled\",\r\n \"displayName\": \"Canceled\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-08-31T10:42:23.0786947+05:30\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \"Update Job\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ],\r\n \"notificationPreference\": [\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"sendNotification\": true\r\n }\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=uvuSHtF6QGwXqQyJPaZDBg9v5Vnx%2FJzhvXWhtZoleWY%3D&st=2020-08-31T05%3A02%3A23Z&se=2020-09-01T05%3A12%3A23Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"cancellationReason\": \"CancelTest\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob9389\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7416/providers/Microsoft.DataBox/jobs/SdkJob9389\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-11-10T19:17:14.5101158+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [\r\n {\r\n \"storageAccountName\": \"databoxbvttestaccount\",\r\n \"transferType\": \"ImportToAzure\",\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"accountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\",\r\n \"bytesProcessed\": 0,\r\n \"totalBytesToProcess\": 0,\r\n \"isEnumerationInProgress\": false\r\n }\r\n ],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-11-10T19:17:17.8670081+05:30\"\r\n },\r\n {\r\n \"stageName\": \"Cancelled\",\r\n \"displayName\": \"Canceled\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-11-10T19:18:03.2414491+05:30\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \"Update Job\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ],\r\n \"notificationPreference\": [\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"sendNotification\": true\r\n }\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"preferences\": {\r\n \"encryptionPreferences\": {\r\n \"doubleEncryption\": \"Disabled\"\r\n }\r\n },\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=f%2B61VpnHz9AN8BlyO9ScjMieNuFGRJz3u1e4%2FUcvwLc%3D&st=2020-11-10T13%3A38%3A04Z&se=2020-11-11T13%3A48%3A04Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"cancellationReason\": \"CancelTest\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob7417\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7520/providers/Microsoft.DataBox/jobs/SdkJob7417\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7416/providers/Microsoft.DataBox/jobs/SdkJob9389?api-version=2020-04-01&$expand=details",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnNzQxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I5Mzg5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDEmJGV4cGFuZD1kZXRhaWxz",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7520/providers/Microsoft.DataBox/jobs/SdkJob7417?api-version=2020-11-01&$expand=details",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnNzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I3NDE3P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDEmJGV4cGFuZD1kZXRhaWxz",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "61ec134e-bee5-4a95-8127-b327544dce20"
+ "46513e76-cf48-4b93-9ab8-de0806e461b8"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -548,35 +548,35 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11985"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "1174c0e7-eee4-425f-9bbe-c18fe0c08f11"
+ "72423c7f-3aaa-4d7b-92f6-89a7e53388e8"
],
"x-ms-client-request-id": [
- "61ec134e-bee5-4a95-8127-b327544dce20"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "46513e76-cf48-4b93-9ab8-de0806e461b8"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "1174c0e7-eee4-425f-9bbe-c18fe0c08f11"
+ "72423c7f-3aaa-4d7b-92f6-89a7e53388e8"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T051725Z:1174c0e7-eee4-425f-9bbe-c18fe0c08f11"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T135306Z:72423c7f-3aaa-4d7b-92f6-89a7e53388e8"
],
"Date": [
- "Mon, 31 Aug 2020 05:17:24 GMT"
+ "Tue, 10 Nov 2020 13:53:05 GMT"
],
"Content-Length": [
- "3478"
+ "3598"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -585,26 +585,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-08-31T10:41:18.151064+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [\r\n {\r\n \"storageAccountName\": \"databoxbvttestaccount\",\r\n \"transferType\": \"ImportToAzure\",\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"accountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\",\r\n \"bytesProcessed\": 0,\r\n \"totalBytesToProcess\": 0,\r\n \"isEnumerationInProgress\": false\r\n }\r\n ],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-08-31T10:41:19.9853287+05:30\"\r\n },\r\n {\r\n \"stageName\": \"Cancelled\",\r\n \"displayName\": \"Canceled\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-08-31T10:42:23.0786947+05:30\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \" \",\r\n \"emailList\": [],\r\n \"notificationPreference\": []\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=sY9TJc90wa%2BFAVUfamexHB6SEspa3DX4pIu6kr%2BuAzg%3D&st=2020-08-31T05%3A07%3A25Z&se=2020-09-01T05%3A17%3A25Z&sp=r\",\r\n \"chainOfCustodySasKey\": \"https://wusbeta.blob.core.windows.net/chainofcustody/bf49dead-e0ae-4b59-8ec4-baebe5342121.txt?sv=2018-03-28&sr=b&sig=l93%2Bq%2FRz0yDCiJRiNcix3xAgbCFN0uOJcODfIg7GbI0%3D&st=2020-08-31T05%3A07%3A25Z&se=2020-08-31T05%3A37%3A25Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"cancellationReason\": \"CancelTest\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob9389\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7416/providers/Microsoft.DataBox/jobs/SdkJob9389\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-11-10T19:17:14.5101158+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [\r\n {\r\n \"storageAccountName\": \"databoxbvttestaccount\",\r\n \"transferType\": \"ImportToAzure\",\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"accountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\",\r\n \"bytesProcessed\": 0,\r\n \"totalBytesToProcess\": 0,\r\n \"isEnumerationInProgress\": false\r\n }\r\n ],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-11-10T19:17:17.8670081+05:30\"\r\n },\r\n {\r\n \"stageName\": \"Cancelled\",\r\n \"displayName\": \"Canceled\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-11-10T19:18:03.2414491+05:30\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \" \",\r\n \"emailList\": [],\r\n \"notificationPreference\": []\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"preferences\": {\r\n \"encryptionPreferences\": {\r\n \"doubleEncryption\": \"Disabled\"\r\n }\r\n },\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=j4hDMmU0S4wpboy%2FskxhYDnygqfiArGdD5nfg0mmu3s%3D&st=2020-11-10T13%3A43%3A06Z&se=2020-11-11T13%3A53%3A06Z&sp=r\",\r\n \"chainOfCustodySasKey\": \"https://wusbeta.blob.core.windows.net/chainofcustody/c4673386-4188-42b7-a918-f60b0ea265ca.txt?sv=2018-03-28&sr=b&sig=rKfjFpLCoLqEOtiG9mZwKYajT%2BGKXqIffJ1g9XZ3suc%3D&st=2020-11-10T13%3A43%3A06Z&se=2020-11-10T14%3A13%3A06Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"cancellationReason\": \"CancelTest\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob7417\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7520/providers/Microsoft.DataBox/jobs/SdkJob7417\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7416/providers/Microsoft.DataBox/jobs/SdkJob9389?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnNzQxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I5Mzg5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7520/providers/Microsoft.DataBox/jobs/SdkJob7417?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnNzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I3NDE3P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"properties\": {\r\n \"details\": {\r\n \"contactDetails\": {\r\n \"contactName\": \"Update Job\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n }\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7a07f370-6af8-4771-afd6-6fd3cf723225"
+ "9055c4c9-6f0f-49ad-a577-2118a97c6cf7"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -621,37 +621,37 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/d59f6a88-fd42-4f25-ae41-8a231ec31dd2?api-version=2018-01-01"
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/2c9278c2-8020-4d0f-a6ab-59d719e0b045?api-version=2018-01-01"
],
"Retry-After": [
"10"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "cee6f60b-a038-447a-afad-e7c7837fb178"
+ "ddc2613d-3901-462a-9715-41287de4dbc1"
],
"x-ms-client-request-id": [
- "7a07f370-6af8-4771-afd6-6fd3cf723225"
+ "9055c4c9-6f0f-49ad-a577-2118a97c6cf7"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Kestrel"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1195"
],
"x-ms-correlation-request-id": [
- "cee6f60b-a038-447a-afad-e7c7837fb178"
+ "ddc2613d-3901-462a-9715-41287de4dbc1"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T051140Z:cee6f60b-a038-447a-afad-e7c7837fb178"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T134737Z:ddc2613d-3901-462a-9715-41287de4dbc1"
],
"Date": [
- "Mon, 31 Aug 2020 05:11:40 GMT"
+ "Tue, 10 Nov 2020 13:47:37 GMT"
],
"Expires": [
"-1"
@@ -664,16 +664,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/d59f6a88-fd42-4f25-ae41-8a231ec31dd2?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvZDU5ZjZhODgtZmQ0Mi00ZjI1LWFlNDEtOGEyMzFlYzMxZGQyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/2c9278c2-8020-4d0f-a6ab-59d719e0b045?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMmM5Mjc4YzItODAyMC00ZDBmLWE2YWItNTlkNzE5ZTBiMDQ1P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -684,37 +684,37 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7416/providers/Microsoft.DataBox/jobs/SdkJob9389?api-version=2018-01-01"
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7520/providers/Microsoft.DataBox/jobs/SdkJob7417?api-version=2018-01-01"
],
"Retry-After": [
"10"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "0dc388c9-d8ca-47ec-833a-5c260246ce03"
+ "e97d9749-1030-4f40-b6f0-aaec530bc4f3"
],
"x-ms-client-request-id": [
- "6ccc77b4-d1dd-4b8d-b35e-2f4beb165cad"
+ "bba2e078-9bf7-45cd-a2f9-c6b9af102b3d"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Kestrel"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11984"
],
"x-ms-correlation-request-id": [
- "0dc388c9-d8ca-47ec-833a-5c260246ce03"
+ "e97d9749-1030-4f40-b6f0-aaec530bc4f3"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T051150Z:0dc388c9-d8ca-47ec-833a-5c260246ce03"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T134747Z:e97d9749-1030-4f40-b6f0-aaec530bc4f3"
],
"Date": [
- "Mon, 31 Aug 2020 05:11:50 GMT"
+ "Tue, 10 Nov 2020 13:47:47 GMT"
],
"Expires": [
"-1"
@@ -727,22 +727,22 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/jobs?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9qb2JzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/jobs?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9qb2JzP2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f6f0d750-e390-4eba-9f0f-7ef40728e9bc"
+ "863088bd-b8b5-4e4a-aa7d-b97de93a88a1"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -753,29 +753,30 @@
"no-cache"
],
"x-ms-original-request-ids": [
- "0b7b3032-99e3-4521-9568-54c92ac8cc20",
- "0b7b3032-99e3-4521-9568-54c92ac8cc20",
- "0b7b3032-99e3-4521-9568-54c92ac8cc20",
- "0b7b3032-99e3-4521-9568-54c92ac8cc20",
- "0b7b3032-99e3-4521-9568-54c92ac8cc20",
- "0b7b3032-99e3-4521-9568-54c92ac8cc20",
- "0b7b3032-99e3-4521-9568-54c92ac8cc20",
- "0b7b3032-99e3-4521-9568-54c92ac8cc20",
- "",
- "0b7b3032-99e3-4521-9568-54c92ac8cc20",
- "0b7b3032-99e3-4521-9568-54c92ac8cc20"
+ "819ed668-588c-4dbf-9c4b-637a941a6fd6",
+ "819ed668-588c-4dbf-9c4b-637a941a6fd6",
+ "819ed668-588c-4dbf-9c4b-637a941a6fd6",
+ "819ed668-588c-4dbf-9c4b-637a941a6fd6",
+ "819ed668-588c-4dbf-9c4b-637a941a6fd6",
+ "819ed668-588c-4dbf-9c4b-637a941a6fd6",
+ "819ed668-588c-4dbf-9c4b-637a941a6fd6",
+ "819ed668-588c-4dbf-9c4b-637a941a6fd6",
+ "819ed668-588c-4dbf-9c4b-637a941a6fd6",
+ "819ed668-588c-4dbf-9c4b-637a941a6fd6",
+ "819ed668-588c-4dbf-9c4b-637a941a6fd6",
+ "819ed668-588c-4dbf-9c4b-637a941a6fd6"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11981"
],
"x-ms-request-id": [
- "0b7b3032-99e3-4521-9568-54c92ac8cc20"
+ "819ed668-588c-4dbf-9c4b-637a941a6fd6"
],
"x-ms-correlation-request-id": [
- "0b7b3032-99e3-4521-9568-54c92ac8cc20"
+ "819ed668-588c-4dbf-9c4b-637a941a6fd6"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T051222Z:0b7b3032-99e3-4521-9568-54c92ac8cc20"
+ "CENTRALUSEUAP:20201110T134802Z:819ed668-588c-4dbf-9c4b-637a941a6fd6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -784,7 +785,7 @@
"nosniff"
],
"Date": [
- "Mon, 31 Aug 2020 05:12:21 GMT"
+ "Tue, 10 Nov 2020 13:48:01 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -793,29 +794,29 @@
"-1"
],
"Content-Length": [
- "20613"
+ "26574"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2018-08-30T14:44:39.77401+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"mnaustest\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/ausresgrpmn/providers/Microsoft.DataBox/jobs/mnaustest\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2018-09-10T18:03:22.2578238+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"portalcontractAUS\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/ausresgrpmn/providers/Microsoft.DataBox/jobs/portalcontractAUS\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2018-08-30T15:17:17.3753642+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testBB-diskAU\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/testBB/providers/Microsoft.DataBox/jobs/testBB-diskAU\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T11:12:15.5972523+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"allXML\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/allXML\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-07T15:51:08.4479315+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"bothExportAllxml\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/bothExportAllxml\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T19:44:59.2410723+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"exportAll\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/exportAll\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T18:31:05.3036028+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"importRegressnTest\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/importRegressnTest\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-09T01:57:03.8985885+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testBotthXMLAndAll\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testBotthXMLAndAll\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-05T15:56:52.6983398+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testExportAllOrder\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testExportAllOrder\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-08-26T22:52:20.2149111+05:30\",\r\n \"cancellationReason\": \"IncorrectOrder Test \",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testlfs\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testlfs\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T17:45:25.464989+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testPayload\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testPayload\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-08-26T23:02:46.969366+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testwithoutlfs\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testwithoutlfs\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T10:43:04.8775864+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"xmlOnlyOrder\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/xmlOnlyOrder\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2018-11-27T15:17:49.0760408+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testbadresourcegroup\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat3198inh0-9)inh(il(h)_fyoin)(upf(yLASD0-FJ(hal-DSNWP0JDS0P3-0SJ93/providers/Microsoft.DataBox/jobs/testbadresourcegroup\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2019-01-04T09:08:49.9928621+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"andipodtest4jan\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/andipodtest4jan\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-28T15:20:48.1058546+05:30\",\r\n \"cancellationReason\": \"NoLongerNeeded null\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"dbtest1\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/dbtest1\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-04-14T08:51:18.2067875+05:30\",\r\n \"cancellationReason\": \"IncorrectOrder null\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"degautam14-04-Clone\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/degautam14-04-Clone\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-27T18:08:30.6622356+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"degautamtestexport\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/degautamtestexport\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-21T20:41:02.3837388+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"DegautamTestExportOrder\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/DegautamTestExportOrder\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-24T07:56:23.6839464+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"degautamtestorder\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/degautamtestorder\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-04-14T08:48:21.2260174+05:30\",\r\n \"cancellationReason\": \"IncorrectOrder null\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"degautamTestOrder14-04\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/degautamTestOrder14-04\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-12T12:19:19.8627264+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"export\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/export\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-04-05T19:50:20.9692355+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"exportTestResource\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.DataBox/jobs/exportTestResource\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-04-10T15:09:45.7080012+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"sanakTestImportNew\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.DataBox/jobs/sanakTestImportNew\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-04-10T15:13:02.5724966+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"sanakTestImportOld\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.DataBox/jobs/sanakTestImportOld\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-04-20T13:39:28.1940929+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"sanakTestImportOld1\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.DataBox/jobs/sanakTestImportOld1\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-04-10T15:14:59.6879599+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"sanakTestImportOld2\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.DataBox/jobs/sanakTestImportOld2\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-07-21T23:43:34.513148+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"saranyagorder\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/saranyagorder\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/jobs?api-version=2020-04-01&%24skiptoken=dVJdb5tAEPwvVts3wnGBBCJFlT%2bAODXEPji%2b3u4A4wMOkME2dpT%2fnkujplJVv612dmdGO%2fs6afJxWLGm6icPr5PQ9HzsTR4mu2Ho%2bgdZ5qQhRc7zZrghl8M%2bv0lbLvcH2qd71g2sbXp5S%2b50oMOtpG%2b395JKoCYZWnovpbmREU1VoAq3crdvjyzL973ssHTf9u12uFmQgczaUS5b2v8kHZOOAheUjxBAIAFVAsqPb33FOr%2bt8uZxvTBUGp6KjAfnFNZHWgLmeOppyWY15e4xsetDcgEsixBf%2bSZclvp3SBebVt9A45AJNAstQELjENjGPgnVT7RYLsYFhZpANCWOUCdqTOFQ01J152xaLOdTPfjSVM%2brcqqvlKROG1fMfrHMp8XaQlpqY8Eb2BajNhZzfzrCxwdTsTa1On9Cmzh6BuRTbZVEldhxPFMIWoRifPYBmrmmMoQRWiOlG%2fymOjlWjT3fcgK7H8OoKzOrOgd%2bQBDAo18hK8ea6XElzqtnHtdZT7g7vEQdc%2br25NuKR2z0hHjNHLjjPo61NFyevabVV%2bCao388e%2fQ2%2b%2bsVCq8lDZK7uHTDPBBeGpSE5vNtHKQKrXd3G56UNES%2ftYhtXkI%2bMhqhNjFjNVOKi893JcWJkgSZndfdAfOxdBRLXc%2bNlyTaAcyNWw8G2roAvz4uJ3LC4mpNEiGHQncnEhU%2foG1SXg%2bir4m9%2f%2bCfGQrsesbl6Xj9QyZvb%2b8%3d\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-09-03T14:03:58.4767711+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"T-b6595333312d\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/T-b6595333312d\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-09-03T14:05:56.0984957+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"T-b6595333312d-Clone\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/T-b6595333312d-Clone\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2018-08-30T14:44:39.77401+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"mnaustest\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/ausresgrpmn/providers/Microsoft.DataBox/jobs/mnaustest\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2018-09-10T18:03:22.2578238+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"portalcontractAUS\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/ausresgrpmn/providers/Microsoft.DataBox/jobs/portalcontractAUS\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-22T22:07:24.9860687+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/3c66da21-607e-49b4-8bdf-f25fbb8f705f/resourcegroups/shsarawa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/shsarawaIdentity\": {\r\n \"principalId\": \"ba90a4e6-a8bc-486d-ac48-d3da64d0d01d\",\r\n \"clientId\": \"9d15eff4-1af5-4b89-9575-7c33707d1203\"\r\n },\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sdkIdentity\": {\r\n \"principalId\": \"5cba71a4-1088-4540-bacf-a7af4426c982\",\r\n \"clientId\": \"9c1eb7d3-ed10-4ef6-8b70-9bc4ddeeeda3\"\r\n }\r\n }\r\n },\r\n \"name\": \"dbcmkinline-test\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxCmkTest/providers/Microsoft.DataBox/jobs/dbcmkinline-test\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2018-08-30T15:17:17.3753642+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testBB-diskAU\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/testBB/providers/Microsoft.DataBox/jobs/testBB-diskAU\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-10-29T13:42:40.7213238+05:30\",\r\n \"cancellationReason\": \"IncorrectOrder null\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"uksouth\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"degautamtestorderuk\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/ak-k8sample-RG/providers/Microsoft.DataBox/jobs/degautamtestorderuk\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-13T18:37:39.9212822+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"akvenkatmorethan10\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/AADAppShellResGrp/providers/Microsoft.DataBox/jobs/akvenkatmorethan10\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-13T18:49:12.11445+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"akvenkatmorethan10-Clone\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/AADAppShellResGrp/providers/Microsoft.DataBox/jobs/akvenkatmorethan10-Clone\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T11:12:15.5972523+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"allXML\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/allXML\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-07T15:51:08.4479315+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"bothExportAllxml\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/bothExportAllxml\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T19:44:59.2410723+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"exportAll\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/exportAll\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-15T10:28:25.8357451+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"exportest\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/exportest\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T18:31:05.3036028+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"importRegressnTest\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/importRegressnTest\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-10-13T20:15:14.9785275+05:30\",\r\n \"cancellationReason\": \"IncorrectOrder null\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"nidhijexportpremium\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/nidhijexportpremium\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-09T01:57:03.8985885+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testBotthXMLAndAll\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testBotthXMLAndAll\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-05T15:56:52.6983398+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testExportAllOrder\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testExportAllOrder\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-08-26T22:52:20.2149111+05:30\",\r\n \"cancellationReason\": \"IncorrectOrder Test \",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testlfs\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testlfs\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T17:45:25.464989+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testPayload\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testPayload\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-08-26T23:02:46.969366+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testwithoutlfs\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testwithoutlfs\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T10:43:04.8775864+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"xmlOnlyOrder\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/xmlOnlyOrder\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2018-11-27T15:17:49.0760408+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testbadresourcegroup\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat3198inh0-9)inh(il(h)_fyoin)(upf(yLASD0-FJ(hal-DSNWP0JDS0P3-0SJ93/providers/Microsoft.DataBox/jobs/testbadresourcegroup\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-21T20:39:21.9096902+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"akvenkat2302\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.DataBox/jobs/akvenkat2302\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2019-01-04T09:08:49.9928621+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"andipodtest4jan\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/andipodtest4jan\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-19T13:23:40.2533122+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned,UserAssigned\",\r\n \"principalId\": \"1860a3c8-94f0-4b81-9492-5b56a1808897\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sdkIdentity\": {\r\n \"principalId\": \"5cba71a4-1088-4540-bacf-a7af4426c982\",\r\n \"clientId\": \"9c1eb7d3-ed10-4ef6-8b70-9bc4ddeeeda3\"\r\n },\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/raginip/providers/Microsoft.ManagedIdentity/userAssignedIdentities/raginip-uai\": {\r\n \"principalId\": \"a952e4a6-1c68-460a-ba22-613bcef34862\",\r\n \"clientId\": \"75da410b-a7c6-4326-a23f-a88f11a48132\"\r\n },\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/aman-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/amanTestIdentity\": {\r\n \"principalId\": \"5474d8b4-e465-45ec-a00b-9eba1ba1e99b\",\r\n \"clientId\": \"709bfeb0-fb8f-47ee-a859-c896c90b935a\"\r\n }\r\n }\r\n },\r\n \"name\": \"cmkeditbvt\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/cmkeditbvt\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-20T17:52:38.8009853+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned,UserAssigned\",\r\n \"principalId\": \"c5360016-0471-4929-b2f4-ea9359bd49d0\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sdkIdentity\": {\r\n \"principalId\": \"5cba71a4-1088-4540-bacf-a7af4426c982\",\r\n \"clientId\": \"9c1eb7d3-ed10-4ef6-8b70-9bc4ddeeeda3\"\r\n },\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/MSIResourcegroupNew/providers/Microsoft.ManagedIdentity/userAssignedIdentities/willitwork\": {\r\n \"principalId\": \"9b2470fb-dfd5-48e6-8cfb-466b6eb46d6c\",\r\n \"clientId\": \"7a6b9ead-dccb-450c-934d-c247a8c5d5cd\"\r\n },\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/testRGSheetal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/kustoIdentity\": {\r\n \"principalId\": \"43f32868-235b-4f20-b28f-9cace9919bec\",\r\n \"clientId\": \"508a70aa-e2f1-4e3f-abde-59000131d8d0\"\r\n },\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/aman-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/amanTestIdentity\": {\r\n \"principalId\": \"5474d8b4-e465-45ec-a00b-9eba1ba1e99b\",\r\n \"clientId\": \"709bfeb0-fb8f-47ee-a859-c896c90b935a\"\r\n }\r\n }\r\n },\r\n \"name\": \"cmkeditbvt-Clone\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/cmkeditbvt-Clone\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-02T15:32:30.0725363+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned,UserAssigned\",\r\n \"principalId\": \"16321750-6832-4aeb-8af8-ca35f13ee90e\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/aman-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/amanTestIdentity\": {\r\n \"principalId\": \"5474d8b4-e465-45ec-a00b-9eba1ba1e99b\",\r\n \"clientId\": \"709bfeb0-fb8f-47ee-a859-c896c90b935a\"\r\n },\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sdkIdentity\": {\r\n \"principalId\": \"5cba71a4-1088-4540-bacf-a7af4426c982\",\r\n \"clientId\": \"9c1eb7d3-ed10-4ef6-8b70-9bc4ddeeeda3\"\r\n }\r\n }\r\n },\r\n \"name\": \"cmkeditbvt-Clone-Clone\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/cmkeditbvt-Clone-Clone\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-21T11:55:13.5245296+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned,UserAssigned\",\r\n \"principalId\": \"cea5f2c8-457d-4f2b-80a5-2aeda8b78551\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sdkIdentity\": {\r\n \"principalId\": \"5cba71a4-1088-4540-bacf-a7af4426c982\",\r\n \"clientId\": \"9c1eb7d3-ed10-4ef6-8b70-9bc4ddeeeda3\"\r\n }\r\n }\r\n },\r\n \"name\": \"cmkeditflow\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/cmkeditflow\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-21T12:50:01.5573834+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned,UserAssigned\",\r\n \"principalId\": \"bf7437d1-94b6-41ef-a557-9d9fbd358dce\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sdkIdentity\": {\r\n \"principalId\": \"5cba71a4-1088-4540-bacf-a7af4426c982\",\r\n \"clientId\": \"9c1eb7d3-ed10-4ef6-8b70-9bc4ddeeeda3\"\r\n }\r\n }\r\n },\r\n \"name\": \"cmkeditflow-Clone\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/cmkeditflow-Clone\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-28T15:20:48.1058546+05:30\",\r\n \"cancellationReason\": \"NoLongerNeeded null\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"dbtest1\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/dbtest1\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-04-14T08:51:18.2067875+05:30\",\r\n \"cancellationReason\": \"IncorrectOrder null\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"degautam14-04-Clone\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/degautam14-04-Clone\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-27T11:28:36.8848991+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"degautamDBUkImport\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/degautamDBUkImport\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n }\r\n ],\r\n \"nextLink\": \"https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/jobs?api-version=2020-11-01&%24skiptoken=fVJrb5swFP0v0bpvScCFllSqpjyAJAppYsA8vtmYEAMGFB6BVv3vdVutm6Ztkj9Y99x7zrmPl1ER982OFVk9engZebrtuPboYXRumqp%2bmE6juGguOG%2fruMXVhOMCJzEXsQl%2bbi%2fxJCr5tG5JHV1Y1bCyqKcnfKdJGjiNtdPpfqxgoI5nanQ%2fjuIZxaoiAwWcptWl7BiNL%2fXUYtGlrMtTM1nhBi%2fKfpqWpP6BKzbuBC4oH4EEpLEsjyX5%2b7c6Y5VTZnHxeFjNFOJdE8rREIG8I6nELFu5btgiJ3zfhWbehs8Soz7kO0cHm1S7AYvVsdSOYNZSgVLPkLA3a5E5u4Se8okmm1W%2fIkAViCoHPqzE3yWgyUmq7JdsnmyWcw19aSrDLp1rOznMo2Ivcr9YlvPkYEA1Ml3Bi0yDEdMVeT8jwsc7U3LQ1Txew2PgbyX8qbYL%2fUzUWLYuBA1MXHdwJLjY63Lj%2bfAA5apxiuxqGblrO4aFzLr3%2fCqlRjYgB2Eoub2TQSN2Vd3mchBnWx7ktMZ83zz5FbPy8uqYso1NuIY8ZxY4c8cN1MjbDHZRajvpX47%2b8GyTW%2frLK3haGilB4V2Q7r0YCS8FDD19exugSCb5%2be7Iw5R48EMLm%2fqzx3tGfFiGeqBQORlc3mMrC%2fpQpyY1qgCvKbMk4RXpzc65dg5HCjW2HZWaPHZ%2b24VpDCFAkmPO0s99ve%2fAXW8r4hlDLCrF9P%2bS8dHN6tr99xrENPYdKcQVFOgsbqYjOewwQO0hubldiTd6fX0D\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7416/providers/Microsoft.DataBox/jobs?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnNzQxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7520/providers/Microsoft.DataBox/jobs?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnNzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icz9hcGktdmVyc2lvbj0yMDIwLTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fc70d97d-14fe-41e9-9ced-e8a15d197958"
+ "49b9ba14-0660-4f08-bd05-1689401c8c5f"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -825,35 +826,35 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11980"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "76ceeefd-5868-4220-b0a9-2701b52b49fc"
+ "98616922-6448-4e5f-9cf2-3a34a9292840"
],
"x-ms-client-request-id": [
- "fc70d97d-14fe-41e9-9ced-e8a15d197958"
+ "49b9ba14-0660-4f08-bd05-1689401c8c5f"
],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "76ceeefd-5868-4220-b0a9-2701b52b49fc"
+ "98616922-6448-4e5f-9cf2-3a34a9292840"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T051222Z:76ceeefd-5868-4220-b0a9-2701b52b49fc"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T134802Z:98616922-6448-4e5f-9cf2-3a34a9292840"
],
"Date": [
- "Mon, 31 Aug 2020 05:12:21 GMT"
+ "Tue, 10 Nov 2020 13:48:02 GMT"
],
"Content-Length": [
- "897"
+ "898"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -862,26 +863,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-08-31T10:41:18.151064+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob9389\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7416/providers/Microsoft.DataBox/jobs/SdkJob9389\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-10T19:17:14.5101158+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob7417\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7520/providers/Microsoft.DataBox/jobs/SdkJob7417\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7416/providers/Microsoft.DataBox/jobs/SdkJob9389/cancel?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnNzQxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I5Mzg5L2NhbmNlbD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7520/providers/Microsoft.DataBox/jobs/SdkJob7417/cancel?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnNzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I3NDE3L2NhbmNlbD9hcGktdmVyc2lvbj0yMDIwLTExLTAx",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"reason\": \"CancelTest\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "82d84948-4d83-4591-add8-6b43251ef0a8"
+ "31dc89a3-c0d7-4ac0-9f9a-854037515286"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -897,32 +898,32 @@
"Pragma": [
"no-cache"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "5d92f848-e2f6-42d1-87cd-1ae5a9639825"
+ "6399b4fb-0411-4751-ab96-83194b966a05"
],
"x-ms-client-request-id": [
- "82d84948-4d83-4591-add8-6b43251ef0a8"
+ "31dc89a3-c0d7-4ac0-9f9a-854037515286"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Kestrel"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1198"
],
"x-ms-correlation-request-id": [
- "5d92f848-e2f6-42d1-87cd-1ae5a9639825"
+ "6399b4fb-0411-4751-ab96-83194b966a05"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T051223Z:5d92f848-e2f6-42d1-87cd-1ae5a9639825"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T134804Z:6399b4fb-0411-4751-ab96-83194b966a05"
],
"Date": [
- "Mon, 31 Aug 2020 05:12:22 GMT"
+ "Tue, 10 Nov 2020 13:48:04 GMT"
],
"Expires": [
"-1"
@@ -932,22 +933,22 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7416/providers/Microsoft.DataBox/jobs/SdkJob9389?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnNzQxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I5Mzg5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7520/providers/Microsoft.DataBox/jobs/SdkJob7417?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnNzUyMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I3NDE3P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "142cfb1f-907b-42a5-9f25-097fd054692b"
+ "eaf07361-f218-4b52-bf33-70faf0edc3c6"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -958,37 +959,37 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/bf49dead-e0ae-4b59-8ec4-baebe5342121-deleteorder?api-version=2018-01-01"
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/c4673386-4188-42b7-a918-f60b0ea265ca-deleteorder?api-version=2018-01-01"
],
"Retry-After": [
"10"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "7ae0072e-c6cf-4649-ab09-9ea9bd09ce4c"
+ "aac8e2d9-ef65-441f-b333-2874058c0a92"
],
"x-ms-client-request-id": [
- "142cfb1f-907b-42a5-9f25-097fd054692b"
+ "eaf07361-f218-4b52-bf33-70faf0edc3c6"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Kestrel"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14999"
+ "14997"
],
"x-ms-correlation-request-id": [
- "7ae0072e-c6cf-4649-ab09-9ea9bd09ce4c"
+ "aac8e2d9-ef65-441f-b333-2874058c0a92"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T051726Z:7ae0072e-c6cf-4649-ab09-9ea9bd09ce4c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T135307Z:aac8e2d9-ef65-441f-b333-2874058c0a92"
],
"Date": [
- "Mon, 31 Aug 2020 05:17:25 GMT"
+ "Tue, 10 Nov 2020 13:53:06 GMT"
],
"Expires": [
"-1"
@@ -1001,16 +1002,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/bf49dead-e0ae-4b59-8ec4-baebe5342121-deleteorder?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYmY0OWRlYWQtZTBhZS00YjU5LThlYzQtYmFlYmU1MzQyMTIxLWRlbGV0ZW9yZGVyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/c4673386-4188-42b7-a918-f60b0ea265ca-deleteorder?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYzQ2NzMzODYtNDE4OC00MmI3LWE5MTgtZjYwYjBlYTI2NWNhLWRlbGV0ZW9yZGVyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -1020,32 +1021,32 @@
"Pragma": [
"no-cache"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "fb5b0c39-6658-4d8b-960d-a2a1a92b0d41"
+ "e61f1d8f-6341-4a82-9425-419dc7fac69d"
],
"x-ms-client-request-id": [
- "d702a83a-3e33-43ab-b82b-7792f72e7dd1"
+ "fe1230c5-a9da-487a-b0b0-c621153f6946"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Kestrel"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "11984"
],
"x-ms-correlation-request-id": [
- "fb5b0c39-6658-4d8b-960d-a2a1a92b0d41"
+ "e61f1d8f-6341-4a82-9425-419dc7fac69d"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T051736Z:fb5b0c39-6658-4d8b-960d-a2a1a92b0d41"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T135317Z:e61f1d8f-6341-4a82-9425-419dc7fac69d"
],
"Date": [
- "Mon, 31 Aug 2020 05:17:36 GMT"
+ "Tue, 10 Nov 2020 13:53:16 GMT"
],
"Expires": [
"-1"
@@ -1055,16 +1056,16 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/bf49dead-e0ae-4b59-8ec4-baebe5342121-deleteorder?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYmY0OWRlYWQtZTBhZS00YjU5LThlYzQtYmFlYmU1MzQyMTIxLWRlbGV0ZW9yZGVyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/c4673386-4188-42b7-a918-f60b0ea265ca-deleteorder?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYzQ2NzMzODYtNDE4OC00MmI3LWE5MTgtZjYwYjBlYTI2NWNhLWRlbGV0ZW9yZGVyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -1074,32 +1075,32 @@
"Pragma": [
"no-cache"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "d274144c-a642-474f-9c15-84e3fc9d63f5"
+ "c4fe388e-70fd-4717-addf-f510a93d5d59"
],
"x-ms-client-request-id": [
- "6b5ed383-ce96-4809-9fa5-5a5d2a6a0d88"
+ "4d6d0b13-dd4a-4bfd-aec0-5dfa707445cc"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Kestrel"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11983"
],
"x-ms-correlation-request-id": [
- "d274144c-a642-474f-9c15-84e3fc9d63f5"
+ "c4fe388e-70fd-4717-addf-f510a93d5d59"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T051737Z:d274144c-a642-474f-9c15-84e3fc9d63f5"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T135318Z:c4fe388e-70fd-4717-addf-f510a93d5d59"
],
"Date": [
- "Mon, 31 Aug 2020 05:17:37 GMT"
+ "Tue, 10 Nov 2020 13:53:18 GMT"
],
"Expires": [
"-1"
@@ -1111,8 +1112,8 @@
],
"Names": {
"TestJobCRUDOperations": [
- "SdkRg7416",
- "SdkJob9389"
+ "SdkRg7520",
+ "SdkJob7417"
]
},
"Variables": {
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobCRUDTests/TestScheduledJob.json b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobCRUDTests/TestScheduledJob.json
index fbdb3bec5d5d7..ce6845c9e7475 100644
--- a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobCRUDTests/TestScheduledJob.json
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobCRUDTests/TestScheduledJob.json
@@ -1,21 +1,21 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/SdkRg342?api-version=2015-11-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlZ3JvdXBzL1Nka1JnMzQyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/SdkRg9524?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlZ3JvdXBzL1Nka1JnOTUyND9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"westus\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e85a2946-bcc1-4691-bb1a-60dd5380f6bb"
+ "0727b00a-5236-46d2-8177-1ea15445489e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
"Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
],
"Content-Type": [
@@ -36,13 +36,13 @@
"1199"
],
"x-ms-request-id": [
- "4c214086-3446-41ee-88c3-df7a77963393"
+ "18400313-efab-4ea7-a993-3d41e67c011b"
],
"x-ms-correlation-request-id": [
- "4c214086-3446-41ee-88c3-df7a77963393"
+ "18400313-efab-4ea7-a993-3d41e67c011b"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T045606Z:4c214086-3446-41ee-88c3-df7a77963393"
+ "SOUTHINDIA:20201110T132541Z:18400313-efab-4ea7-a993-3d41e67c011b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51,10 +51,10 @@
"nosniff"
],
"Date": [
- "Mon, 31 Aug 2020 04:56:06 GMT"
+ "Tue, 10 Nov 2020 13:25:41 GMT"
],
"Content-Length": [
- "169"
+ "171"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -63,26 +63,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg342\",\r\n \"name\": \"SdkRg342\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg9524\",\r\n \"name\": \"SdkRg9524\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg342/providers/Microsoft.DataBox/jobs/SdkJob8534?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMzQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9qb2JzL1Nka0pvYjg1MzQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg9524/providers/Microsoft.DataBox/jobs/SdkJob4927?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnOTUyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I0OTI3P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"details\": {\r\n \"jobDetailsType\": \"DataBox\",\r\n \"contactDetails\": {\r\n \"contactName\": \"Public SDK Test\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\"\r\n }\r\n }\r\n ]\r\n },\r\n \"deliveryType\": \"Scheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"2020-09-20T04:56:03.4684805Z\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"details\": {\r\n \"jobDetailsType\": \"DataBox\",\r\n \"contactDetails\": {\r\n \"contactName\": \"Public SDK Test\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\"\r\n }\r\n }\r\n ]\r\n },\r\n \"deliveryType\": \"Scheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"2020-11-30T13:25:38.7058595Z\"\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6c7b33cf-3e51-4716-be89-56d7ac201018"
+ "419b14e0-548c-43ee-9c9e-77b39dc3d4aa"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -99,37 +99,37 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/286dffa8-eedb-48cb-9d11-7b21b2620af5?api-version=2018-01-01"
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/741c8c2c-9001-4744-829d-4b694013b36c?api-version=2018-01-01"
],
"Retry-After": [
"10"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "27899ecb-1e43-4475-9e33-4361f322e828"
+ "d577f7ad-de24-4fdc-9dee-a51d87ba8f95"
],
"x-ms-client-request-id": [
- "6c7b33cf-3e51-4716-be89-56d7ac201018"
+ "419b14e0-548c-43ee-9c9e-77b39dc3d4aa"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Kestrel"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
"x-ms-correlation-request-id": [
- "27899ecb-1e43-4475-9e33-4361f322e828"
+ "d577f7ad-de24-4fdc-9dee-a51d87ba8f95"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T045615Z:27899ecb-1e43-4475-9e33-4361f322e828"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T132546Z:d577f7ad-de24-4fdc-9dee-a51d87ba8f95"
],
"Date": [
- "Mon, 31 Aug 2020 04:56:15 GMT"
+ "Tue, 10 Nov 2020 13:25:46 GMT"
],
"Expires": [
"-1"
@@ -142,16 +142,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/286dffa8-eedb-48cb-9d11-7b21b2620af5?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjg2ZGZmYTgtZWVkYi00OGNiLTlkMTEtN2IyMWIyNjIwYWY1P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/741c8c2c-9001-4744-829d-4b694013b36c?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNzQxYzhjMmMtOTAwMS00NzQ0LTgyOWQtNGI2OTQwMTNiMzZjP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -162,37 +162,37 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg342/providers/Microsoft.DataBox/jobs/SdkJob8534?api-version=2018-01-01"
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg9524/providers/Microsoft.DataBox/jobs/SdkJob4927?api-version=2018-01-01"
],
"Retry-After": [
"10"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "2348f2d2-7ebd-437f-97e6-a45c34320c51"
+ "ffc4ad46-40fa-4598-b0e3-f03980e40b54"
],
"x-ms-client-request-id": [
- "39d8633a-e373-454f-b0b0-f4c848547245"
+ "43f56c7f-0dc2-4431-a4f6-beb5f2f37bb1"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Kestrel"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11999"
],
"x-ms-correlation-request-id": [
- "2348f2d2-7ebd-437f-97e6-a45c34320c51"
+ "ffc4ad46-40fa-4598-b0e3-f03980e40b54"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T045626Z:2348f2d2-7ebd-437f-97e6-a45c34320c51"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T132557Z:ffc4ad46-40fa-4598-b0e3-f03980e40b54"
],
"Date": [
- "Mon, 31 Aug 2020 04:56:25 GMT"
+ "Tue, 10 Nov 2020 13:25:56 GMT"
],
"Expires": [
"-1"
@@ -205,16 +205,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg342/providers/Microsoft.DataBox/jobs/SdkJob8534?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMzQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9qb2JzL1Nka0pvYjg1MzQ/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg9524/providers/Microsoft.DataBox/jobs/SdkJob4927?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnOTUyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I0OTI3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -224,35 +224,35 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "b72afb24-6462-42fa-b9f7-fe7cdbdcdf7c"
+ "b4f255c9-26cf-4f11-8fc4-7f4cf7f38512"
],
"x-ms-client-request-id": [
- "7a69a640-286a-434b-aff0-89e34bddafa9"
+ "8ad6d51f-6928-4440-8a62-0096e9c2bc45"
],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "b72afb24-6462-42fa-b9f7-fe7cdbdcdf7c"
+ "b4f255c9-26cf-4f11-8fc4-7f4cf7f38512"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T045636Z:b72afb24-6462-42fa-b9f7-fe7cdbdcdf7c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T132607Z:b4f255c9-26cf-4f11-8fc4-7f4cf7f38512"
],
"Date": [
- "Mon, 31 Aug 2020 04:56:36 GMT"
+ "Tue, 10 Nov 2020 13:26:07 GMT"
],
"Content-Length": [
- "768"
+ "769"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -261,20 +261,20 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-08-31T10:26:15.129251+05:30\",\r\n \"deliveryType\": \"Scheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"2020-09-20T10:26:03.4684805+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob8534\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg342/providers/Microsoft.DataBox/jobs/SdkJob8534\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-10T18:55:45.732966+05:30\",\r\n \"deliveryType\": \"Scheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"2020-11-30T18:55:38.7058595+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob4927\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg9524/providers/Microsoft.DataBox/jobs/SdkJob4927\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg342/providers/Microsoft.DataBox/jobs/SdkJob8534?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMzQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9qb2JzL1Nka0pvYjg1MzQ/YXBpLXZlcnNpb249MjAxOC0wMS0wMQ==",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg9524/providers/Microsoft.DataBox/jobs/SdkJob4927?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnOTUyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I0OTI3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -284,35 +284,35 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "4f3bb995-a3ac-4d0c-8cf7-6b3b10765368"
+ "5b1bcf7f-273e-4762-8584-8ec6787147cd"
],
"x-ms-client-request-id": [
- "e3a04693-755a-4318-85d6-ed8d5609bbe8"
+ "c42b7eac-9014-4d5d-bd71-d29b4457def7"
],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "4f3bb995-a3ac-4d0c-8cf7-6b3b10765368"
+ "5b1bcf7f-273e-4762-8584-8ec6787147cd"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T045658Z:4f3bb995-a3ac-4d0c-8cf7-6b3b10765368"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T132630Z:5b1bcf7f-273e-4762-8584-8ec6787147cd"
],
"Date": [
- "Mon, 31 Aug 2020 04:56:57 GMT"
+ "Tue, 10 Nov 2020 13:26:30 GMT"
],
"Content-Length": [
- "768"
+ "769"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -321,26 +321,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-08-31T10:26:15.129251+05:30\",\r\n \"deliveryType\": \"Scheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"2020-09-20T10:26:03.4684805+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob8534\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg342/providers/Microsoft.DataBox/jobs/SdkJob8534\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-10T18:55:45.732966+05:30\",\r\n \"deliveryType\": \"Scheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"2020-11-30T18:55:38.7058595+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob4927\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg9524/providers/Microsoft.DataBox/jobs/SdkJob4927\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg342/providers/Microsoft.DataBox/jobs/SdkJob8534?api-version=2020-04-01&$expand=details",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMzQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9qb2JzL1Nka0pvYjg1MzQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMSYkZXhwYW5kPWRldGFpbHM=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg9524/providers/Microsoft.DataBox/jobs/SdkJob4927?api-version=2020-11-01&$expand=details",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnOTUyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I0OTI3P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDEmJGV4cGFuZD1kZXRhaWxz",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "fe7cef7d-fa5a-4933-be35-67407d3cb966"
+ "8ab47077-f883-4bb8-bea3-8c12e94b9ab5"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -350,35 +350,35 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "3db3c743-ce7f-4cbc-b45b-e93221361caa"
+ "f3a80b4e-c034-4e67-91c9-e9ed30a8d5e0"
],
"x-ms-client-request-id": [
- "fe7cef7d-fa5a-4933-be35-67407d3cb966"
+ "8ab47077-f883-4bb8-bea3-8c12e94b9ab5"
],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "3db3c743-ce7f-4cbc-b45b-e93221361caa"
+ "f3a80b4e-c034-4e67-91c9-e9ed30a8d5e0"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T045637Z:3db3c743-ce7f-4cbc-b45b-e93221361caa"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T132608Z:f3a80b4e-c034-4e67-91c9-e9ed30a8d5e0"
],
"Date": [
- "Mon, 31 Aug 2020 04:56:36 GMT"
+ "Tue, 10 Nov 2020 13:26:07 GMT"
],
"Content-Length": [
- "4222"
+ "4342"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -387,26 +387,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-08-31T10:26:15.129251+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-08-31T10:26:16.9160528+05:30\"\r\n },\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"displayName\": \"Processed\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"displayName\": \"Dispatched\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"displayName\": \"Delivered\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"displayName\": \"Picked up\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"displayName\": \"Received\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"displayName\": \"Data copy in progress\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Completed\",\r\n \"displayName\": \"Completed\",\r\n \"stageStatus\": \"None\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \"Public SDK Test\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ],\r\n \"notificationPreference\": [\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"sendNotification\": true\r\n }\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=04NFg6h2DBgGbcqI2WlvfhK%2BvZm%2BHjlkVqmUXWAzXnA%3D&st=2020-08-31T04%3A46%3A37Z&se=2020-09-01T04%3A56%3A37Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"deliveryType\": \"Scheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"2020-09-20T10:26:03.4684805+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob8534\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg342/providers/Microsoft.DataBox/jobs/SdkJob8534\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-10T18:55:45.732966+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-11-10T18:55:52.8987263+05:30\"\r\n },\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"displayName\": \"Processed\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"displayName\": \"Dispatched\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"displayName\": \"Delivered\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"displayName\": \"Picked up\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"displayName\": \"Received\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"displayName\": \"Data copy in progress\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Completed\",\r\n \"displayName\": \"Completed\",\r\n \"stageStatus\": \"None\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \"Public SDK Test\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ],\r\n \"notificationPreference\": [\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"sendNotification\": true\r\n }\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"preferences\": {\r\n \"encryptionPreferences\": {\r\n \"doubleEncryption\": \"Disabled\"\r\n }\r\n },\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=mQyg2yYyXnrHasa7tnpAQtxMVe2kj0xHw2skCdW6mbg%3D&st=2020-11-10T13%3A16%3A08Z&se=2020-11-11T13%3A26%3A08Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"deliveryType\": \"Scheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"2020-11-30T18:55:38.7058595+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob4927\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg9524/providers/Microsoft.DataBox/jobs/SdkJob4927\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg342/providers/Microsoft.DataBox/jobs/SdkJob8534?api-version=2020-04-01&$expand=details",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMzQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9qb2JzL1Nka0pvYjg1MzQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMSYkZXhwYW5kPWRldGFpbHM=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg9524/providers/Microsoft.DataBox/jobs/SdkJob4927?api-version=2020-11-01&$expand=details",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnOTUyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I0OTI3P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDEmJGV4cGFuZD1kZXRhaWxz",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "018e3210-6ec6-40da-895a-46662b2829a2"
+ "36769123-02d6-4e38-a0e3-b4fd35cb71fe"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -416,35 +416,35 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "a1d7614c-48af-4af1-b218-8a7b7af6690e"
+ "82ea1706-e3e1-48d0-a3a0-4810a978f96a"
],
"x-ms-client-request-id": [
- "018e3210-6ec6-40da-895a-46662b2829a2"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "36769123-02d6-4e38-a0e3-b4fd35cb71fe"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "a1d7614c-48af-4af1-b218-8a7b7af6690e"
+ "82ea1706-e3e1-48d0-a3a0-4810a978f96a"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T045659Z:a1d7614c-48af-4af1-b218-8a7b7af6690e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T132631Z:82ea1706-e3e1-48d0-a3a0-4810a978f96a"
],
"Date": [
- "Mon, 31 Aug 2020 04:56:58 GMT"
+ "Tue, 10 Nov 2020 13:26:30 GMT"
],
"Content-Length": [
- "4219"
+ "4337"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -453,26 +453,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-08-31T10:26:15.129251+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-08-31T10:26:16.9160528+05:30\"\r\n },\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"displayName\": \"Processed\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"displayName\": \"Dispatched\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"displayName\": \"Delivered\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"displayName\": \"Picked up\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"displayName\": \"Received\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"displayName\": \"Data copy in progress\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Completed\",\r\n \"displayName\": \"Completed\",\r\n \"stageStatus\": \"None\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \"Update Job\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ],\r\n \"notificationPreference\": [\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"sendNotification\": true\r\n }\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=s4glYCo7vjGMzTy%2Fg%2BF1hM7No%2FcLz70jJXcv31vVZuI%3D&st=2020-08-31T04%3A46%3A58Z&se=2020-09-01T04%3A56%3A58Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"deliveryType\": \"Scheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"2020-09-20T10:26:03.4684805+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob8534\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg342/providers/Microsoft.DataBox/jobs/SdkJob8534\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-10T18:55:45.732966+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-11-10T18:55:52.8987263+05:30\"\r\n },\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"displayName\": \"Processed\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"displayName\": \"Dispatched\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"displayName\": \"Delivered\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"displayName\": \"Picked up\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"displayName\": \"Received\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"displayName\": \"Data copy in progress\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Completed\",\r\n \"displayName\": \"Completed\",\r\n \"stageStatus\": \"None\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \"Update Job\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ],\r\n \"notificationPreference\": [\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"sendNotification\": true\r\n }\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"preferences\": {\r\n \"encryptionPreferences\": {\r\n \"doubleEncryption\": \"Disabled\"\r\n }\r\n },\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=XLhwxG8EsANKzUhH57iFrIN48K9zWlPkvJov0NWF6TA%3D&st=2020-11-10T13%3A16%3A31Z&se=2020-11-11T13%3A26%3A31Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"deliveryType\": \"Scheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"2020-11-30T18:55:38.7058595+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob4927\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg9524/providers/Microsoft.DataBox/jobs/SdkJob4927\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg342/providers/Microsoft.DataBox/jobs/SdkJob8534?api-version=2020-04-01&$expand=details",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMzQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9qb2JzL1Nka0pvYjg1MzQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMSYkZXhwYW5kPWRldGFpbHM=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg9524/providers/Microsoft.DataBox/jobs/SdkJob4927?api-version=2020-11-01&$expand=details",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnOTUyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I0OTI3P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDEmJGV4cGFuZD1kZXRhaWxz",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b485fb91-7d2a-4e90-8747-7f8d06962f52"
+ "f33d413e-3394-4ed1-a3f8-e3781f839ec1"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -482,35 +482,35 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "d3ca8fb7-9b1a-4d72-85bd-cb836ddc5509"
+ "b734242f-0b61-42b4-bf82-2620e61f6b9a"
],
"x-ms-client-request-id": [
- "b485fb91-7d2a-4e90-8747-7f8d06962f52"
- ],
- "X-Powered-By": [
- "ASP.NET"
+ "f33d413e-3394-4ed1-a3f8-e3781f839ec1"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "d3ca8fb7-9b1a-4d72-85bd-cb836ddc5509"
+ "b734242f-0b61-42b4-bf82-2620e61f6b9a"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T045704Z:d3ca8fb7-9b1a-4d72-85bd-cb836ddc5509"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T132637Z:b734242f-0b61-42b4-bf82-2620e61f6b9a"
],
"Date": [
- "Mon, 31 Aug 2020 04:57:03 GMT"
+ "Tue, 10 Nov 2020 13:26:37 GMT"
],
"Content-Length": [
- "3978"
+ "4104"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -519,26 +519,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-08-31T10:26:15.129251+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [\r\n {\r\n \"storageAccountName\": \"databoxbvttestaccount\",\r\n \"transferType\": \"ImportToAzure\",\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"accountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\",\r\n \"bytesProcessed\": 0,\r\n \"totalBytesToProcess\": 0,\r\n \"isEnumerationInProgress\": false\r\n }\r\n ],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-08-31T10:26:16.9160528+05:30\"\r\n },\r\n {\r\n \"stageName\": \"Cancelled\",\r\n \"displayName\": \"Canceled\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-08-31T10:27:03.5511449+05:30\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \"Update Job\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ],\r\n \"notificationPreference\": [\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"sendNotification\": true\r\n }\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=WFCf2%2FC4L5L7DoI%2FlcQxOE0ZOsKivU%2BXwbHz1C4mAVA%3D&st=2020-08-31T04%3A47%3A04Z&se=2020-09-01T04%3A57%3A04Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"cancellationReason\": \"CancelTest\",\r\n \"deliveryType\": \"Scheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"2020-09-20T10:26:03.4684805+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob8534\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg342/providers/Microsoft.DataBox/jobs/SdkJob8534\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-11-10T18:55:45.732966+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [\r\n {\r\n \"storageAccountName\": \"databoxbvttestaccount\",\r\n \"transferType\": \"ImportToAzure\",\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"accountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\",\r\n \"bytesProcessed\": 0,\r\n \"totalBytesToProcess\": 0,\r\n \"isEnumerationInProgress\": false\r\n }\r\n ],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-11-10T18:55:52.8987263+05:30\"\r\n },\r\n {\r\n \"stageName\": \"Cancelled\",\r\n \"displayName\": \"Canceled\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-11-10T18:56:35.7245575+05:30\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \"Update Job\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ],\r\n \"notificationPreference\": [\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"sendNotification\": true\r\n }\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"preferences\": {\r\n \"encryptionPreferences\": {\r\n \"doubleEncryption\": \"Disabled\"\r\n }\r\n },\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=ibS5ByVwC6UkmhifXBJE%2F7%2Be%2FjxToyz06z1KRDX%2BGKc%3D&st=2020-11-10T13%3A16%3A37Z&se=2020-11-11T13%3A26%3A37Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"cancellationReason\": \"CancelTest\",\r\n \"deliveryType\": \"Scheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"2020-11-30T18:55:38.7058595+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob4927\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg9524/providers/Microsoft.DataBox/jobs/SdkJob4927\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg342/providers/Microsoft.DataBox/jobs/SdkJob8534?api-version=2020-04-01&$expand=details",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMzQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9qb2JzL1Nka0pvYjg1MzQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMSYkZXhwYW5kPWRldGFpbHM=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg9524/providers/Microsoft.DataBox/jobs/SdkJob4927?api-version=2020-11-01&$expand=details",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnOTUyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I0OTI3P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDEmJGV4cGFuZD1kZXRhaWxz",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a0096d5a-a6b9-4163-8b03-f6b3d2a3cd6e"
+ "7ccd5430-7bd8-481d-b234-8e049e11f712"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -548,35 +548,35 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "0ff4fd07-a268-494b-b37c-4e3180bad2fc"
+ "150f3200-961e-4e58-b0a2-45f219f97718"
],
"x-ms-client-request-id": [
- "a0096d5a-a6b9-4163-8b03-f6b3d2a3cd6e"
+ "7ccd5430-7bd8-481d-b234-8e049e11f712"
],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "0ff4fd07-a268-494b-b37c-4e3180bad2fc"
+ "150f3200-961e-4e58-b0a2-45f219f97718"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T050206Z:0ff4fd07-a268-494b-b37c-4e3180bad2fc"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T133139Z:150f3200-961e-4e58-b0a2-45f219f97718"
],
"Date": [
- "Mon, 31 Aug 2020 05:02:06 GMT"
+ "Tue, 10 Nov 2020 13:31:39 GMT"
],
"Content-Length": [
- "3475"
+ "3599"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -585,26 +585,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-08-31T10:26:15.129251+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [\r\n {\r\n \"storageAccountName\": \"databoxbvttestaccount\",\r\n \"transferType\": \"ImportToAzure\",\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"accountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\",\r\n \"bytesProcessed\": 0,\r\n \"totalBytesToProcess\": 0,\r\n \"isEnumerationInProgress\": false\r\n }\r\n ],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-08-31T10:26:16.9160528+05:30\"\r\n },\r\n {\r\n \"stageName\": \"Cancelled\",\r\n \"displayName\": \"Canceled\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-08-31T10:27:03.5511449+05:30\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \" \",\r\n \"emailList\": [],\r\n \"notificationPreference\": []\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=nGcWc9dRgY3vsPkvEC3F%2FiCATukn7ro9K64dz88wlKo%3D&st=2020-08-31T04%3A52%3A06Z&se=2020-09-01T05%3A02%3A06Z&sp=r\",\r\n \"chainOfCustodySasKey\": \"https://wusbeta.blob.core.windows.net/chainofcustody/286dffa8-eedb-48cb-9d11-7b21b2620af5.txt?sv=2018-03-28&sr=b&sig=tEVunGzzcfsGxw0WSPEXDSZh0os1Y6NxvQs7zRJ2Ato%3D&st=2020-08-31T04%3A52%3A06Z&se=2020-08-31T05%3A22%3A06Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"cancellationReason\": \"CancelTest\",\r\n \"deliveryType\": \"Scheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"2020-09-20T10:26:03.4684805+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob8534\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg342/providers/Microsoft.DataBox/jobs/SdkJob8534\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-11-10T18:55:45.732966+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [\r\n {\r\n \"storageAccountName\": \"databoxbvttestaccount\",\r\n \"transferType\": \"ImportToAzure\",\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"accountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\",\r\n \"bytesProcessed\": 0,\r\n \"totalBytesToProcess\": 0,\r\n \"isEnumerationInProgress\": false\r\n }\r\n ],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-11-10T18:55:52.8987263+05:30\"\r\n },\r\n {\r\n \"stageName\": \"Cancelled\",\r\n \"displayName\": \"Canceled\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-11-10T18:56:35.7245575+05:30\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \" \",\r\n \"emailList\": [],\r\n \"notificationPreference\": []\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"preferences\": {\r\n \"encryptionPreferences\": {\r\n \"doubleEncryption\": \"Disabled\"\r\n }\r\n },\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=t5iQf2Xs92BHba6LHEWmz35RrMS1Y6Y3ogO7s8fPBMk%3D&st=2020-11-10T13%3A21%3A39Z&se=2020-11-11T13%3A31%3A39Z&sp=r\",\r\n \"chainOfCustodySasKey\": \"https://wusbeta.blob.core.windows.net/chainofcustody/741c8c2c-9001-4744-829d-4b694013b36c.txt?sv=2018-03-28&sr=b&sig=VpZLkX2LboAw8PDMiPAb%2F5UTGRxIdCmHtR5baU9mchY%3D&st=2020-11-10T13%3A21%3A39Z&se=2020-11-10T13%3A51%3A39Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"cancellationReason\": \"CancelTest\",\r\n \"deliveryType\": \"Scheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"2020-11-30T18:55:38.7058595+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob4927\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg9524/providers/Microsoft.DataBox/jobs/SdkJob4927\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg342/providers/Microsoft.DataBox/jobs/SdkJob8534?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMzQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9qb2JzL1Nka0pvYjg1MzQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg9524/providers/Microsoft.DataBox/jobs/SdkJob4927?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnOTUyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I0OTI3P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=",
"RequestMethod": "PATCH",
"RequestBody": "{\r\n \"properties\": {\r\n \"details\": {\r\n \"contactDetails\": {\r\n \"contactName\": \"Update Job\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n }\r\n }\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "84220c8e-7aff-4dfe-bc10-9d36aecb6ebe"
+ "9a3ca1a1-23a6-437d-b4fc-68f781457884"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -621,37 +621,37 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/c1a63d7c-e901-4c32-96d2-bd229962b81f?api-version=2018-01-01"
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/4fbdd9fd-daed-4eca-bb58-dd77fcfdf18c?api-version=2018-01-01"
],
"Retry-After": [
"10"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "5ce9d297-a535-40d0-a61f-b5b2bfb6a9bc"
+ "51d60c1c-8914-403f-901c-1a04e20b4000"
],
"x-ms-client-request-id": [
- "84220c8e-7aff-4dfe-bc10-9d36aecb6ebe"
+ "9a3ca1a1-23a6-437d-b4fc-68f781457884"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Kestrel"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1198"
],
"x-ms-correlation-request-id": [
- "5ce9d297-a535-40d0-a61f-b5b2bfb6a9bc"
+ "51d60c1c-8914-403f-901c-1a04e20b4000"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T045638Z:5ce9d297-a535-40d0-a61f-b5b2bfb6a9bc"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T132609Z:51d60c1c-8914-403f-901c-1a04e20b4000"
],
"Date": [
- "Mon, 31 Aug 2020 04:56:37 GMT"
+ "Tue, 10 Nov 2020 13:26:09 GMT"
],
"Expires": [
"-1"
@@ -664,16 +664,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/c1a63d7c-e901-4c32-96d2-bd229962b81f?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvYzFhNjNkN2MtZTkwMS00YzMyLTk2ZDItYmQyMjk5NjJiODFmP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/4fbdd9fd-daed-4eca-bb58-dd77fcfdf18c?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNGZiZGQ5ZmQtZGFlZC00ZWNhLWJiNTgtZGQ3N2ZjZmRmMThjP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -684,37 +684,37 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg342/providers/Microsoft.DataBox/jobs/SdkJob8534?api-version=2018-01-01"
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg9524/providers/Microsoft.DataBox/jobs/SdkJob4927?api-version=2018-01-01"
],
"Retry-After": [
"10"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "b8e0bb79-c0df-42ab-83b5-7c2184ddb2dc"
+ "28b75b2c-3c10-4c5f-82cf-e075639445b7"
],
"x-ms-client-request-id": [
- "fc27a36a-ad4e-42d1-ad08-2816507d0489"
+ "49117271-b471-45d7-8400-c05c1fface2a"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Kestrel"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11996"
],
"x-ms-correlation-request-id": [
- "b8e0bb79-c0df-42ab-83b5-7c2184ddb2dc"
+ "28b75b2c-3c10-4c5f-82cf-e075639445b7"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T045648Z:b8e0bb79-c0df-42ab-83b5-7c2184ddb2dc"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T132619Z:28b75b2c-3c10-4c5f-82cf-e075639445b7"
],
"Date": [
- "Mon, 31 Aug 2020 04:56:47 GMT"
+ "Tue, 10 Nov 2020 13:26:19 GMT"
],
"Expires": [
"-1"
@@ -727,22 +727,22 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/jobs?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9qb2JzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/jobs?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9qb2JzP2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "76faa15a-6901-4c33-a175-aab273c43561"
+ "137e9bc8-d0b2-4619-8aac-1e5f9b094f25"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -753,29 +753,30 @@
"no-cache"
],
"x-ms-original-request-ids": [
- "07500407-3064-4ab1-bf18-3aca0f75c66a",
- "07500407-3064-4ab1-bf18-3aca0f75c66a",
- "07500407-3064-4ab1-bf18-3aca0f75c66a",
- "07500407-3064-4ab1-bf18-3aca0f75c66a",
- "07500407-3064-4ab1-bf18-3aca0f75c66a",
- "07500407-3064-4ab1-bf18-3aca0f75c66a",
- "07500407-3064-4ab1-bf18-3aca0f75c66a",
- "07500407-3064-4ab1-bf18-3aca0f75c66a",
- "07500407-3064-4ab1-bf18-3aca0f75c66a",
- "07500407-3064-4ab1-bf18-3aca0f75c66a",
- "07500407-3064-4ab1-bf18-3aca0f75c66a"
+ "84c9742e-d9f1-4c87-9db6-a0d0b0c1d0f5",
+ "84c9742e-d9f1-4c87-9db6-a0d0b0c1d0f5",
+ "84c9742e-d9f1-4c87-9db6-a0d0b0c1d0f5",
+ "84c9742e-d9f1-4c87-9db6-a0d0b0c1d0f5",
+ "84c9742e-d9f1-4c87-9db6-a0d0b0c1d0f5",
+ "84c9742e-d9f1-4c87-9db6-a0d0b0c1d0f5",
+ "84c9742e-d9f1-4c87-9db6-a0d0b0c1d0f5",
+ "84c9742e-d9f1-4c87-9db6-a0d0b0c1d0f5",
+ "84c9742e-d9f1-4c87-9db6-a0d0b0c1d0f5",
+ "84c9742e-d9f1-4c87-9db6-a0d0b0c1d0f5",
+ "84c9742e-d9f1-4c87-9db6-a0d0b0c1d0f5",
+ "84c9742e-d9f1-4c87-9db6-a0d0b0c1d0f5"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11993"
],
"x-ms-request-id": [
- "07500407-3064-4ab1-bf18-3aca0f75c66a"
+ "84c9742e-d9f1-4c87-9db6-a0d0b0c1d0f5"
],
"x-ms-correlation-request-id": [
- "07500407-3064-4ab1-bf18-3aca0f75c66a"
+ "84c9742e-d9f1-4c87-9db6-a0d0b0c1d0f5"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T045702Z:07500407-3064-4ab1-bf18-3aca0f75c66a"
+ "CENTRALUSEUAP:20201110T132634Z:84c9742e-d9f1-4c87-9db6-a0d0b0c1d0f5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -784,7 +785,7 @@
"nosniff"
],
"Date": [
- "Mon, 31 Aug 2020 04:57:01 GMT"
+ "Tue, 10 Nov 2020 13:26:34 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -793,29 +794,29 @@
"-1"
],
"Content-Length": [
- "20613"
+ "26574"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2018-08-30T14:44:39.77401+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"mnaustest\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/ausresgrpmn/providers/Microsoft.DataBox/jobs/mnaustest\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2018-09-10T18:03:22.2578238+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"portalcontractAUS\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/ausresgrpmn/providers/Microsoft.DataBox/jobs/portalcontractAUS\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2018-08-30T15:17:17.3753642+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testBB-diskAU\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/testBB/providers/Microsoft.DataBox/jobs/testBB-diskAU\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T11:12:15.5972523+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"allXML\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/allXML\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-07T15:51:08.4479315+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"bothExportAllxml\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/bothExportAllxml\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T19:44:59.2410723+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"exportAll\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/exportAll\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T18:31:05.3036028+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"importRegressnTest\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/importRegressnTest\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-09T01:57:03.8985885+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testBotthXMLAndAll\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testBotthXMLAndAll\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-05T15:56:52.6983398+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testExportAllOrder\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testExportAllOrder\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-08-26T22:52:20.2149111+05:30\",\r\n \"cancellationReason\": \"IncorrectOrder Test \",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testlfs\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testlfs\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T17:45:25.464989+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testPayload\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testPayload\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-08-26T23:02:46.969366+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testwithoutlfs\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testwithoutlfs\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T10:43:04.8775864+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"xmlOnlyOrder\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/xmlOnlyOrder\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2018-11-27T15:17:49.0760408+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testbadresourcegroup\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat3198inh0-9)inh(il(h)_fyoin)(upf(yLASD0-FJ(hal-DSNWP0JDS0P3-0SJ93/providers/Microsoft.DataBox/jobs/testbadresourcegroup\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2019-01-04T09:08:49.9928621+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"andipodtest4jan\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/andipodtest4jan\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-28T15:20:48.1058546+05:30\",\r\n \"cancellationReason\": \"NoLongerNeeded null\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"dbtest1\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/dbtest1\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-04-14T08:51:18.2067875+05:30\",\r\n \"cancellationReason\": \"IncorrectOrder null\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"degautam14-04-Clone\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/degautam14-04-Clone\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-27T18:08:30.6622356+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"degautamtestexport\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/degautamtestexport\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-21T20:41:02.3837388+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"DegautamTestExportOrder\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/DegautamTestExportOrder\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-24T07:56:23.6839464+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"degautamtestorder\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/degautamtestorder\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-04-14T08:48:21.2260174+05:30\",\r\n \"cancellationReason\": \"IncorrectOrder null\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"degautamTestOrder14-04\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/degautamTestOrder14-04\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-12T12:19:19.8627264+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"export\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/export\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-04-05T19:50:20.9692355+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"exportTestResource\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.DataBox/jobs/exportTestResource\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-04-10T15:09:45.7080012+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"sanakTestImportNew\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.DataBox/jobs/sanakTestImportNew\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-04-10T15:13:02.5724966+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"sanakTestImportOld\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.DataBox/jobs/sanakTestImportOld\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-04-20T13:39:28.1940929+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"sanakTestImportOld1\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.DataBox/jobs/sanakTestImportOld1\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-04-10T15:14:59.6879599+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"sanakTestImportOld2\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.DataBox/jobs/sanakTestImportOld2\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-07-21T23:43:34.513148+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"saranyagorder\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/saranyagorder\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/jobs?api-version=2020-04-01&%24skiptoken=dVJdb5tAEPwvVts3wnGBBCJFlT%2bAODXEPji%2b3u4A4wMOkME2dpT%2fnkujplJVv612dmdGO%2fs6afJxWLGm6icPr5PQ9HzsTR4mu2Ho%2bgdZ5qQhRc7zZrghl8M%2bv0lbLvcH2qd71g2sbXp5S%2b50oMOtpG%2b395JKoCYZWnovpbmREU1VoAq3crdvjyzL973ssHTf9u12uFmQgczaUS5b2v8kHZOOAheUjxBAIAFVAsqPb33FOr%2bt8uZxvTBUGp6KjAfnFNZHWgLmeOppyWY15e4xsetDcgEsixBf%2bSZclvp3SBebVt9A45AJNAstQELjENjGPgnVT7RYLsYFhZpANCWOUCdqTOFQ01J152xaLOdTPfjSVM%2brcqqvlKROG1fMfrHMp8XaQlpqY8Eb2BajNhZzfzrCxwdTsTa1On9Cmzh6BuRTbZVEldhxPFMIWoRifPYBmrmmMoQRWiOlG%2fymOjlWjT3fcgK7H8OoKzOrOgd%2bQBDAo18hK8ea6XElzqtnHtdZT7g7vEQdc%2br25NuKR2z0hHjNHLjjPo61NFyevabVV%2bCao388e%2fQ2%2b%2bsVCq8lDZK7uHTDPBBeGpSE5vNtHKQKrXd3G56UNES%2ftYhtXkI%2bMhqhNjFjNVOKi893JcWJkgSZndfdAfOxdBRLXc%2bNlyTaAcyNWw8G2roAvz4uJ3LC4mpNEiGHQncnEhU%2foG1SXg%2bir4m9%2f%2bCfGQrsesbl6Xj9QyZvb%2b8%3d\"\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-09-03T14:03:58.4767711+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"T-b6595333312d\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/T-b6595333312d\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-09-03T14:05:56.0984957+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"T-b6595333312d-Clone\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/T-b6595333312d-Clone\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2018-08-30T14:44:39.77401+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"mnaustest\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/ausresgrpmn/providers/Microsoft.DataBox/jobs/mnaustest\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2018-09-10T18:03:22.2578238+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"portalcontractAUS\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/ausresgrpmn/providers/Microsoft.DataBox/jobs/portalcontractAUS\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-22T22:07:24.9860687+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/3c66da21-607e-49b4-8bdf-f25fbb8f705f/resourcegroups/shsarawa/providers/Microsoft.ManagedIdentity/userAssignedIdentities/shsarawaIdentity\": {\r\n \"principalId\": \"ba90a4e6-a8bc-486d-ac48-d3da64d0d01d\",\r\n \"clientId\": \"9d15eff4-1af5-4b89-9575-7c33707d1203\"\r\n },\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sdkIdentity\": {\r\n \"principalId\": \"5cba71a4-1088-4540-bacf-a7af4426c982\",\r\n \"clientId\": \"9c1eb7d3-ed10-4ef6-8b70-9bc4ddeeeda3\"\r\n }\r\n }\r\n },\r\n \"name\": \"dbcmkinline-test\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxCmkTest/providers/Microsoft.DataBox/jobs/dbcmkinline-test\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2018-08-30T15:17:17.3753642+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testBB-diskAU\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/testBB/providers/Microsoft.DataBox/jobs/testBB-diskAU\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-10-29T13:42:40.7213238+05:30\",\r\n \"cancellationReason\": \"IncorrectOrder null\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"uksouth\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"degautamtestorderuk\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/ak-k8sample-RG/providers/Microsoft.DataBox/jobs/degautamtestorderuk\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-13T18:37:39.9212822+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"akvenkatmorethan10\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/AADAppShellResGrp/providers/Microsoft.DataBox/jobs/akvenkatmorethan10\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-13T18:49:12.11445+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"akvenkatmorethan10-Clone\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/AADAppShellResGrp/providers/Microsoft.DataBox/jobs/akvenkatmorethan10-Clone\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T11:12:15.5972523+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"allXML\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/allXML\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-07T15:51:08.4479315+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"bothExportAllxml\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/bothExportAllxml\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T19:44:59.2410723+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"exportAll\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/exportAll\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-15T10:28:25.8357451+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"exportest\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/exportest\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T18:31:05.3036028+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"importRegressnTest\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/importRegressnTest\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-10-13T20:15:14.9785275+05:30\",\r\n \"cancellationReason\": \"IncorrectOrder null\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"nidhijexportpremium\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/nidhijexportpremium\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-09T01:57:03.8985885+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testBotthXMLAndAll\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testBotthXMLAndAll\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-05T15:56:52.6983398+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testExportAllOrder\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testExportAllOrder\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-08-26T22:52:20.2149111+05:30\",\r\n \"cancellationReason\": \"IncorrectOrder Test \",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testlfs\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testlfs\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T17:45:25.464989+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testPayload\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testPayload\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-08-26T23:02:46.969366+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBoxDisk\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testwithoutlfs\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/testwithoutlfs\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-04T10:43:04.8775864+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"xmlOnlyOrder\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat12/providers/Microsoft.DataBox/jobs/xmlOnlyOrder\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2018-11-27T15:17:49.0760408+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"testbadresourcegroup\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat3198inh0-9)inh(il(h)_fyoin)(upf(yLASD0-FJ(hal-DSNWP0JDS0P3-0SJ93/providers/Microsoft.DataBox/jobs/testbadresourcegroup\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-21T20:39:21.9096902+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"akvenkat2302\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.DataBox/jobs/akvenkat2302\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2019-01-04T09:08:49.9928621+05:30\",\r\n \"cancellationReason\": \"Old job which is still in ordered state cancelled by the service\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"andipodtest4jan\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/andipodtest4jan\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-19T13:23:40.2533122+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned,UserAssigned\",\r\n \"principalId\": \"1860a3c8-94f0-4b81-9492-5b56a1808897\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sdkIdentity\": {\r\n \"principalId\": \"5cba71a4-1088-4540-bacf-a7af4426c982\",\r\n \"clientId\": \"9c1eb7d3-ed10-4ef6-8b70-9bc4ddeeeda3\"\r\n },\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/raginip/providers/Microsoft.ManagedIdentity/userAssignedIdentities/raginip-uai\": {\r\n \"principalId\": \"a952e4a6-1c68-460a-ba22-613bcef34862\",\r\n \"clientId\": \"75da410b-a7c6-4326-a23f-a88f11a48132\"\r\n },\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/aman-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/amanTestIdentity\": {\r\n \"principalId\": \"5474d8b4-e465-45ec-a00b-9eba1ba1e99b\",\r\n \"clientId\": \"709bfeb0-fb8f-47ee-a859-c896c90b935a\"\r\n }\r\n }\r\n },\r\n \"name\": \"cmkeditbvt\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/cmkeditbvt\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-20T17:52:38.8009853+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned,UserAssigned\",\r\n \"principalId\": \"c5360016-0471-4929-b2f4-ea9359bd49d0\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sdkIdentity\": {\r\n \"principalId\": \"5cba71a4-1088-4540-bacf-a7af4426c982\",\r\n \"clientId\": \"9c1eb7d3-ed10-4ef6-8b70-9bc4ddeeeda3\"\r\n },\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/MSIResourcegroupNew/providers/Microsoft.ManagedIdentity/userAssignedIdentities/willitwork\": {\r\n \"principalId\": \"9b2470fb-dfd5-48e6-8cfb-466b6eb46d6c\",\r\n \"clientId\": \"7a6b9ead-dccb-450c-934d-c247a8c5d5cd\"\r\n },\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/testRGSheetal/providers/Microsoft.ManagedIdentity/userAssignedIdentities/kustoIdentity\": {\r\n \"principalId\": \"43f32868-235b-4f20-b28f-9cace9919bec\",\r\n \"clientId\": \"508a70aa-e2f1-4e3f-abde-59000131d8d0\"\r\n },\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/aman-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/amanTestIdentity\": {\r\n \"principalId\": \"5474d8b4-e465-45ec-a00b-9eba1ba1e99b\",\r\n \"clientId\": \"709bfeb0-fb8f-47ee-a859-c896c90b935a\"\r\n }\r\n }\r\n },\r\n \"name\": \"cmkeditbvt-Clone\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/cmkeditbvt-Clone\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-02T15:32:30.0725363+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned,UserAssigned\",\r\n \"principalId\": \"16321750-6832-4aeb-8af8-ca35f13ee90e\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/aman-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/amanTestIdentity\": {\r\n \"principalId\": \"5474d8b4-e465-45ec-a00b-9eba1ba1e99b\",\r\n \"clientId\": \"709bfeb0-fb8f-47ee-a859-c896c90b935a\"\r\n },\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sdkIdentity\": {\r\n \"principalId\": \"5cba71a4-1088-4540-bacf-a7af4426c982\",\r\n \"clientId\": \"9c1eb7d3-ed10-4ef6-8b70-9bc4ddeeeda3\"\r\n }\r\n }\r\n },\r\n \"name\": \"cmkeditbvt-Clone-Clone\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/cmkeditbvt-Clone-Clone\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-21T11:55:13.5245296+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned,UserAssigned\",\r\n \"principalId\": \"cea5f2c8-457d-4f2b-80a5-2aeda8b78551\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sdkIdentity\": {\r\n \"principalId\": \"5cba71a4-1088-4540-bacf-a7af4426c982\",\r\n \"clientId\": \"9c1eb7d3-ed10-4ef6-8b70-9bc4ddeeeda3\"\r\n }\r\n }\r\n },\r\n \"name\": \"cmkeditflow\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/cmkeditflow\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-21T12:50:01.5573834+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned,UserAssigned\",\r\n \"principalId\": \"bf7437d1-94b6-41ef-a557-9d9fbd358dce\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sdkIdentity\": {\r\n \"principalId\": \"5cba71a4-1088-4540-bacf-a7af4426c982\",\r\n \"clientId\": \"9c1eb7d3-ed10-4ef6-8b70-9bc4ddeeeda3\"\r\n }\r\n }\r\n },\r\n \"name\": \"cmkeditflow-Clone\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/cmkeditflow-Clone\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ExportFromAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-05-28T15:20:48.1058546+05:30\",\r\n \"cancellationReason\": \"NoLongerNeeded null\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"dbtest1\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/dbtest1\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": false,\r\n \"isDeletable\": true,\r\n \"isShippingAddressEditable\": false,\r\n \"isPrepareToShipEnabled\": false,\r\n \"status\": \"Cancelled\",\r\n \"startTime\": \"2020-04-14T08:51:18.2067875+05:30\",\r\n \"cancellationReason\": \"IncorrectOrder null\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": false\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"degautam14-04-Clone\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/degautam14-04-Clone\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n },\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-10-27T11:28:36.8848991+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"degautamDBUkImport\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/akvenkat/providers/Microsoft.DataBox/jobs/degautamDBUkImport\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n }\r\n ],\r\n \"nextLink\": \"https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/jobs?api-version=2020-11-01&%24skiptoken=fVJrb5swFP0v0bpvScCFllSqpjyAJAppYsA8vtmYEAMGFB6BVv3vdVutm6Ztkj9Y99x7zrmPl1ER982OFVk9engZebrtuPboYXRumqp%2bmE6juGguOG%2fruMXVhOMCJzEXsQl%2bbi%2fxJCr5tG5JHV1Y1bCyqKcnfKdJGjiNtdPpfqxgoI5nanQ%2fjuIZxaoiAwWcptWl7BiNL%2fXUYtGlrMtTM1nhBi%2fKfpqWpP6BKzbuBC4oH4EEpLEsjyX5%2b7c6Y5VTZnHxeFjNFOJdE8rREIG8I6nELFu5btgiJ3zfhWbehs8Soz7kO0cHm1S7AYvVsdSOYNZSgVLPkLA3a5E5u4Se8okmm1W%2fIkAViCoHPqzE3yWgyUmq7JdsnmyWcw19aSrDLp1rOznMo2Ivcr9YlvPkYEA1Ml3Bi0yDEdMVeT8jwsc7U3LQ1Txew2PgbyX8qbYL%2fUzUWLYuBA1MXHdwJLjY63Lj%2bfAA5apxiuxqGblrO4aFzLr3%2fCqlRjYgB2Eoub2TQSN2Vd3mchBnWx7ktMZ83zz5FbPy8uqYso1NuIY8ZxY4c8cN1MjbDHZRajvpX47%2b8GyTW%2frLK3haGilB4V2Q7r0YCS8FDD19exugSCb5%2be7Iw5R48EMLm%2fqzx3tGfFiGeqBQORlc3mMrC%2fpQpyY1qgCvKbMk4RXpzc65dg5HCjW2HZWaPHZ%2b24VpDCFAkmPO0s99ve%2fAXW8r4hlDLCrF9P%2bS8dHN6tr99xrENPYdKcQVFOgsbqYjOewwQO0hubldiTd6fX0D\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg342/providers/Microsoft.DataBox/jobs?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMzQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9qb2JzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg9524/providers/Microsoft.DataBox/jobs?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnOTUyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icz9hcGktdmVyc2lvbj0yMDIwLTExLTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "beddb0c5-08c7-4f29-9993-f89f8c4d61fa"
+ "c6aa3ef4-c655-4dd4-9163-98a94215030c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -825,35 +826,35 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "58346c43-7fbe-465d-a14e-e0edc87f1904"
+ "5a73acde-59e9-444b-b17f-f623ec74c98c"
],
"x-ms-client-request-id": [
- "beddb0c5-08c7-4f29-9993-f89f8c4d61fa"
+ "c6aa3ef4-c655-4dd4-9163-98a94215030c"
],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "58346c43-7fbe-465d-a14e-e0edc87f1904"
+ "5a73acde-59e9-444b-b17f-f623ec74c98c"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T045703Z:58346c43-7fbe-465d-a14e-e0edc87f1904"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T132635Z:5a73acde-59e9-444b-b17f-f623ec74c98c"
],
"Date": [
- "Mon, 31 Aug 2020 04:57:02 GMT"
+ "Tue, 10 Nov 2020 13:26:34 GMT"
],
"Content-Length": [
- "901"
+ "902"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -862,26 +863,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-08-31T10:26:15.129251+05:30\",\r\n \"deliveryType\": \"Scheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"2020-09-20T10:26:03.4684805+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob8534\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg342/providers/Microsoft.DataBox/jobs/SdkJob8534\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-10T18:55:45.732966+05:30\",\r\n \"deliveryType\": \"Scheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"2020-11-30T18:55:38.7058595+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob4927\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg9524/providers/Microsoft.DataBox/jobs/SdkJob4927\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg342/providers/Microsoft.DataBox/jobs/SdkJob8534/cancel?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMzQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9qb2JzL1Nka0pvYjg1MzQvY2FuY2VsP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg9524/providers/Microsoft.DataBox/jobs/SdkJob4927/cancel?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnOTUyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I0OTI3L2NhbmNlbD9hcGktdmVyc2lvbj0yMDIwLTExLTAx",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"reason\": \"CancelTest\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3295b694-9935-479c-9b2d-9fd87687b693"
+ "77760fe7-293b-462e-bf0d-4bf5b480dc18"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -897,32 +898,32 @@
"Pragma": [
"no-cache"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "ffc81659-2d86-445b-a329-24444918479f"
+ "e40a7411-359c-4efb-a0a2-3a6bb02f9050"
],
"x-ms-client-request-id": [
- "3295b694-9935-479c-9b2d-9fd87687b693"
+ "77760fe7-293b-462e-bf0d-4bf5b480dc18"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Kestrel"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
],
"x-ms-correlation-request-id": [
- "ffc81659-2d86-445b-a329-24444918479f"
+ "e40a7411-359c-4efb-a0a2-3a6bb02f9050"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T045703Z:ffc81659-2d86-445b-a329-24444918479f"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T132636Z:e40a7411-359c-4efb-a0a2-3a6bb02f9050"
],
"Date": [
- "Mon, 31 Aug 2020 04:57:03 GMT"
+ "Tue, 10 Nov 2020 13:26:35 GMT"
],
"Expires": [
"-1"
@@ -932,22 +933,22 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg342/providers/Microsoft.DataBox/jobs/SdkJob8534?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMzQyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9qb2JzL1Nka0pvYjg1MzQ/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg9524/providers/Microsoft.DataBox/jobs/SdkJob4927?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnOTUyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I0OTI3P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "989be494-438f-451e-9321-9796d0f9635c"
+ "aee3eab2-1627-495d-9658-45de15e9ab50"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -958,37 +959,37 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/286dffa8-eedb-48cb-9d11-7b21b2620af5-deleteorder?api-version=2018-01-01"
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/741c8c2c-9001-4744-829d-4b694013b36c-deleteorder?api-version=2018-01-01"
],
"Retry-After": [
"10"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "1ea8b902-4ee7-45a2-a62f-b82722a46097"
+ "a117d14a-7e13-45cd-9c17-5c454a0bd5ea"
],
"x-ms-client-request-id": [
- "989be494-438f-451e-9321-9796d0f9635c"
+ "aee3eab2-1627-495d-9658-45de15e9ab50"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Kestrel"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
"14999"
],
"x-ms-correlation-request-id": [
- "1ea8b902-4ee7-45a2-a62f-b82722a46097"
+ "a117d14a-7e13-45cd-9c17-5c454a0bd5ea"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T050207Z:1ea8b902-4ee7-45a2-a62f-b82722a46097"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T133141Z:a117d14a-7e13-45cd-9c17-5c454a0bd5ea"
],
"Date": [
- "Mon, 31 Aug 2020 05:02:07 GMT"
+ "Tue, 10 Nov 2020 13:31:41 GMT"
],
"Expires": [
"-1"
@@ -1001,16 +1002,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/286dffa8-eedb-48cb-9d11-7b21b2620af5-deleteorder?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjg2ZGZmYTgtZWVkYi00OGNiLTlkMTEtN2IyMWIyNjIwYWY1LWRlbGV0ZW9yZGVyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/741c8c2c-9001-4744-829d-4b694013b36c-deleteorder?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNzQxYzhjMmMtOTAwMS00NzQ0LTgyOWQtNGI2OTQwMTNiMzZjLWRlbGV0ZW9yZGVyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -1020,32 +1021,32 @@
"Pragma": [
"no-cache"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "48e29d57-efc0-45fc-b10e-841e3b93103a"
+ "50eb4471-160e-484a-bc21-1f40e71de13b"
],
"x-ms-client-request-id": [
- "e24f4e8e-58e4-4c70-9fa8-d8ebb58e6ad3"
+ "7041f56b-c0b1-49f4-8e95-736e47d40cb8"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Kestrel"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11998"
],
"x-ms-correlation-request-id": [
- "48e29d57-efc0-45fc-b10e-841e3b93103a"
+ "50eb4471-160e-484a-bc21-1f40e71de13b"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T050217Z:48e29d57-efc0-45fc-b10e-841e3b93103a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T133151Z:50eb4471-160e-484a-bc21-1f40e71de13b"
],
"Date": [
- "Mon, 31 Aug 2020 05:02:17 GMT"
+ "Tue, 10 Nov 2020 13:31:51 GMT"
],
"Expires": [
"-1"
@@ -1055,16 +1056,16 @@
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/286dffa8-eedb-48cb-9d11-7b21b2620af5-deleteorder?api-version=2018-01-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvMjg2ZGZmYTgtZWVkYi00OGNiLTlkMTEtN2IyMWIyNjIwYWY1LWRlbGV0ZW9yZGVyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/741c8c2c-9001-4744-829d-4b694013b36c-deleteorder?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNzQxYzhjMmMtOTAwMS00NzQ0LTgyOWQtNGI2OTQwMTNiMzZjLWRlbGV0ZW9yZGVyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -1074,32 +1075,32 @@
"Pragma": [
"no-cache"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "6a0cbbab-13b1-464f-883a-bc99c83ad3d7"
+ "98d3f0a1-e083-47df-b0be-9799ce9f26c7"
],
"x-ms-client-request-id": [
- "8630a3f4-a67d-45de-94ea-a9e74d52a3f5"
+ "ce24d732-cba4-49fc-b9fd-2777cc8064da"
],
- "X-Powered-By": [
- "ASP.NET"
+ "Server": [
+ "Kestrel"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11997"
],
"x-ms-correlation-request-id": [
- "6a0cbbab-13b1-464f-883a-bc99c83ad3d7"
+ "98d3f0a1-e083-47df-b0be-9799ce9f26c7"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T050218Z:6a0cbbab-13b1-464f-883a-bc99c83ad3d7"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T133152Z:98d3f0a1-e083-47df-b0be-9799ce9f26c7"
],
"Date": [
- "Mon, 31 Aug 2020 05:02:17 GMT"
+ "Tue, 10 Nov 2020 13:31:51 GMT"
],
"Expires": [
"-1"
@@ -1111,8 +1112,8 @@
],
"Names": {
"TestScheduledJob": [
- "SdkRg342",
- "SdkJob8534"
+ "SdkRg9524",
+ "SdkJob4927"
]
},
"Variables": {
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobCRUDTests/UpdateSystemAssignedToUserAssigned.json b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobCRUDTests/UpdateSystemAssignedToUserAssigned.json
new file mode 100644
index 0000000000000..ad34f83085404
--- /dev/null
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobCRUDTests/UpdateSystemAssignedToUserAssigned.json
@@ -0,0 +1,806 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/SdkRg1365?api-version=2015-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlZ3JvdXBzL1Nka1JnMTM2NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"westus\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "dfeb5a56-d99f-4ed2-ac43-b7175ee8f79b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29321.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "28"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-request-id": [
+ "12eed0bb-46f8-49a2-a099-61d3d022e04f"
+ ],
+ "x-ms-correlation-request-id": [
+ "12eed0bb-46f8-49a2-a099-61d3d022e04f"
+ ],
+ "x-ms-routing-request-id": [
+ "SOUTHINDIA:20201110T135328Z:12eed0bb-46f8-49a2-a099-61d3d022e04f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Tue, 10 Nov 2020 13:53:28 GMT"
+ ],
+ "Content-Length": [
+ "171"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1365\",\r\n \"name\": \"SdkRg1365\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1365/providers/Microsoft.DataBox/jobs/SdkJob6501?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMTM2NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I2NTAxP2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"details\": {\r\n \"jobDetailsType\": \"DataBox\",\r\n \"contactDetails\": {\r\n \"contactName\": \"Public SDK Test\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/databoxbvt1/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount2\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9f80088e-40c8-4d53-9e8d-6952aa9518d2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29321.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "1066"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/4a4ffa6f-ce8b-4e42-9777-b1c597945eb0?api-version=2018-01-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "97b26377-baa6-4d1b-9179-bc8b9ee69ed3"
+ ],
+ "x-ms-client-request-id": [
+ "9f80088e-40c8-4d53-9e8d-6952aa9518d2"
+ ],
+ "Server": [
+ "Kestrel"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1194"
+ ],
+ "x-ms-correlation-request-id": [
+ "97b26377-baa6-4d1b-9179-bc8b9ee69ed3"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUSEUAP:20201110T135331Z:97b26377-baa6-4d1b-9179-bc8b9ee69ed3"
+ ],
+ "Date": [
+ "Tue, 10 Nov 2020 13:53:31 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/4a4ffa6f-ce8b-4e42-9777-b1c597945eb0?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNGE0ZmZhNmYtY2U4Yi00ZTQyLTk3NzctYjFjNTk3OTQ1ZWIwP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29321.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1365/providers/Microsoft.DataBox/jobs/SdkJob6501?api-version=2018-01-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "0fd1449e-cb20-4314-9a34-bba38546f2a2"
+ ],
+ "x-ms-client-request-id": [
+ "8a880cdc-b326-4606-991d-7e985e5810c4"
+ ],
+ "Server": [
+ "Kestrel"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11978"
+ ],
+ "x-ms-correlation-request-id": [
+ "0fd1449e-cb20-4314-9a34-bba38546f2a2"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUSEUAP:20201110T135342Z:0fd1449e-cb20-4314-9a34-bba38546f2a2"
+ ],
+ "Date": [
+ "Tue, 10 Nov 2020 13:53:42 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1365/providers/Microsoft.DataBox/jobs/SdkJob6501?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMTM2NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I2NTAxP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29321.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11977"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c1db8252-76b8-4298-8d0c-089ba6e3bfe1"
+ ],
+ "x-ms-client-request-id": [
+ "82664dd6-87f0-47b2-9a3c-d59804438976"
+ ],
+ "Server": [
+ "Kestrel"
+ ],
+ "x-ms-correlation-request-id": [
+ "c1db8252-76b8-4298-8d0c-089ba6e3bfe1"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUSEUAP:20201110T135352Z:c1db8252-76b8-4298-8d0c-089ba6e3bfe1"
+ ],
+ "Date": [
+ "Tue, 10 Nov 2020 13:53:52 GMT"
+ ],
+ "Content-Length": [
+ "765"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-10T19:23:31.3832871+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"name\": \"SdkJob6501\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1365/providers/Microsoft.DataBox/jobs/SdkJob6501\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1365/providers/Microsoft.DataBox/jobs/SdkJob6501?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMTM2NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I2NTAxP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29321.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11975"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "24104611-0586-4a86-b126-75de67ae1d18"
+ ],
+ "x-ms-client-request-id": [
+ "39c29e07-b104-4fad-a227-b52222024662"
+ ],
+ "Server": [
+ "Kestrel"
+ ],
+ "x-ms-correlation-request-id": [
+ "24104611-0586-4a86-b126-75de67ae1d18"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUSEUAP:20201110T135416Z:24104611-0586-4a86-b126-75de67ae1d18"
+ ],
+ "Date": [
+ "Tue, 10 Nov 2020 13:54:16 GMT"
+ ],
+ "Content-Length": [
+ "892"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-10T19:23:31.3832871+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a8cd9b65-7492-463d-a07b-26fbe7bce4a1\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"name\": \"SdkJob6501\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1365/providers/Microsoft.DataBox/jobs/SdkJob6501\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1365/providers/Microsoft.DataBox/jobs/SdkJob6501?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMTM2NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I2NTAxP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29321.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11972"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "a7da47f7-97f7-449e-8e73-27921a0bbdab"
+ ],
+ "x-ms-client-request-id": [
+ "caba0959-c0bb-49e8-bfa8-f3ebe9bead17"
+ ],
+ "Server": [
+ "Kestrel"
+ ],
+ "x-ms-correlation-request-id": [
+ "a7da47f7-97f7-449e-8e73-27921a0bbdab"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUSEUAP:20201110T135438Z:a7da47f7-97f7-449e-8e73-27921a0bbdab"
+ ],
+ "Date": [
+ "Tue, 10 Nov 2020 13:54:38 GMT"
+ ],
+ "Content-Length": [
+ "1238"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-10T19:23:31.3832871+05:30\",\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned,UserAssigned\",\r\n \"principalId\": \"a8cd9b65-7492-463d-a07b-26fbe7bce4a1\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sdkIdentity\": {\r\n \"principalId\": \"5cba71a4-1088-4540-bacf-a7af4426c982\",\r\n \"clientId\": \"9c1eb7d3-ed10-4ef6-8b70-9bc4ddeeeda3\"\r\n }\r\n }\r\n },\r\n \"name\": \"SdkJob6501\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1365/providers/Microsoft.DataBox/jobs/SdkJob6501\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1365/providers/Microsoft.DataBox/jobs/SdkJob6501?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMTM2NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I2NTAxP2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=",
+ "RequestMethod": "PATCH",
+ "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "212b52f6-c38e-4930-b23a-2a7ccb564d20"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29321.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "56"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/3c981dd9-204b-48ed-ac2d-6c3b314faaa8?api-version=2018-01-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "4b5c1fc2-8229-49da-b8bd-0655390dc771"
+ ],
+ "x-ms-client-request-id": [
+ "212b52f6-c38e-4930-b23a-2a7ccb564d20"
+ ],
+ "Server": [
+ "Kestrel"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1193"
+ ],
+ "x-ms-correlation-request-id": [
+ "4b5c1fc2-8229-49da-b8bd-0655390dc771"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUSEUAP:20201110T135355Z:4b5c1fc2-8229-49da-b8bd-0655390dc771"
+ ],
+ "Date": [
+ "Tue, 10 Nov 2020 13:53:55 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1365/providers/Microsoft.DataBox/jobs/SdkJob6501?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMTM2NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I2NTAxP2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=",
+ "RequestMethod": "PATCH",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"details\": {\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"CustomerManaged\",\r\n \"identityProperties\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssigned\": {\r\n \"resourceId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sdkIdentity\"\r\n }\r\n },\r\n \"kekUrl\": \"https://sdkkeyvault.vault.azure.net/keys/SSDKEY/\",\r\n \"kekVaultResourceID\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.KeyVault/vaults/SDKKeyVault\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned,UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sdkIdentity\": {}\r\n }\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "62515056-6bc5-4b26-840c-0280c8663e5a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29321.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "923"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/48bde836-ea6b-4e53-92ed-b23358681155?api-version=2018-01-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "19d673c4-3cbd-4662-92b5-47ca492f5a2a"
+ ],
+ "x-ms-client-request-id": [
+ "62515056-6bc5-4b26-840c-0280c8663e5a"
+ ],
+ "Server": [
+ "Kestrel"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1192"
+ ],
+ "x-ms-correlation-request-id": [
+ "19d673c4-3cbd-4662-92b5-47ca492f5a2a"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUSEUAP:20201110T135418Z:19d673c4-3cbd-4662-92b5-47ca492f5a2a"
+ ],
+ "Date": [
+ "Tue, 10 Nov 2020 13:54:17 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/3c981dd9-204b-48ed-ac2d-6c3b314faaa8?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvM2M5ODFkZDktMjA0Yi00OGVkLWFjMmQtNmMzYjMxNGZhYWE4P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29321.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1365/providers/Microsoft.DataBox/jobs/SdkJob6501?api-version=2018-01-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "33ddcb82-9763-4273-94a6-af54adf77430"
+ ],
+ "x-ms-client-request-id": [
+ "5d5d5799-8923-42c4-aeee-e23b63e1ad9f"
+ ],
+ "Server": [
+ "Kestrel"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11976"
+ ],
+ "x-ms-correlation-request-id": [
+ "33ddcb82-9763-4273-94a6-af54adf77430"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUSEUAP:20201110T135405Z:33ddcb82-9763-4273-94a6-af54adf77430"
+ ],
+ "Date": [
+ "Tue, 10 Nov 2020 13:54:05 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1365/providers/Microsoft.DataBox/jobs/SdkJob6501?api-version=2020-11-01&$expand=details",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMTM2NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I2NTAxP2FwaS12ZXJzaW9uPTIwMjAtMTEtMDEmJGV4cGFuZD1kZXRhaWxz",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e54880fd-0336-4e2c-ac78-2da1641f529d"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29321.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11974"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "c26367e0-c76d-4faa-82a5-e1d6fb8b6d0d"
+ ],
+ "x-ms-client-request-id": [
+ "e54880fd-0336-4e2c-ac78-2da1641f529d"
+ ],
+ "Server": [
+ "Kestrel"
+ ],
+ "x-ms-correlation-request-id": [
+ "c26367e0-c76d-4faa-82a5-e1d6fb8b6d0d"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUSEUAP:20201110T135416Z:c26367e0-c76d-4faa-82a5-e1d6fb8b6d0d"
+ ],
+ "Date": [
+ "Tue, 10 Nov 2020 13:54:16 GMT"
+ ],
+ "Content-Length": [
+ "4475"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-10T19:23:31.3832871+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-11-10T19:23:34.0236443+05:30\"\r\n },\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"displayName\": \"Processed\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"displayName\": \"Dispatched\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"displayName\": \"Delivered\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"displayName\": \"Picked up\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"displayName\": \"Received\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"displayName\": \"Data copy in progress\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Completed\",\r\n \"displayName\": \"Completed\",\r\n \"stageStatus\": \"None\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \"Public SDK Test\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ],\r\n \"notificationPreference\": [\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"sendNotification\": true\r\n }\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/databoxbvt1/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount2\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"preferences\": {\r\n \"encryptionPreferences\": {\r\n \"doubleEncryption\": \"Disabled\"\r\n }\r\n },\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=mhCU5%2FheMrB%2FKn8mhDs%2BefVN2ovps6%2BPuz2Z9GsqJpE%3D&st=2020-11-10T13%3A44%3A16Z&se=2020-11-11T13%3A54%3A16Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a8cd9b65-7492-463d-a07b-26fbe7bce4a1\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"name\": \"SdkJob6501\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1365/providers/Microsoft.DataBox/jobs/SdkJob6501\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1365/providers/Microsoft.DataBox/jobs/SdkJob6501?api-version=2020-11-01&$expand=details",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMTM2NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvam9icy9TZGtKb2I2NTAxP2FwaS12ZXJzaW9uPTIwMjAtMTEtMDEmJGV4cGFuZD1kZXRhaWxz",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "70c53dff-6f39-4759-81bd-ad0c2ab4636e"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.29321.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11971"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "8d768a4a-3726-4b76-89ea-db7a32e79a9b"
+ ],
+ "x-ms-client-request-id": [
+ "70c53dff-6f39-4759-81bd-ad0c2ab4636e"
+ ],
+ "Server": [
+ "Kestrel"
+ ],
+ "x-ms-correlation-request-id": [
+ "8d768a4a-3726-4b76-89ea-db7a32e79a9b"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUSEUAP:20201110T135439Z:8d768a4a-3726-4b76-89ea-db7a32e79a9b"
+ ],
+ "Date": [
+ "Tue, 10 Nov 2020 13:54:38 GMT"
+ ],
+ "Content-Length": [
+ "5341"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"properties\": {\r\n \"transferType\": \"ImportToAzure\",\r\n \"isCancellable\": true,\r\n \"isDeletable\": false,\r\n \"isShippingAddressEditable\": true,\r\n \"isPrepareToShipEnabled\": true,\r\n \"status\": \"DeviceOrdered\",\r\n \"startTime\": \"2020-11-10T19:23:31.3832871+05:30\",\r\n \"details\": {\r\n \"copyProgress\": [],\r\n \"jobStages\": [\r\n {\r\n \"stageName\": \"DeviceOrdered\",\r\n \"displayName\": \"Ordered\",\r\n \"stageStatus\": \"Succeeded\",\r\n \"stageTime\": \"2020-11-10T19:23:34.0236443+05:30\"\r\n },\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"displayName\": \"Processed\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"displayName\": \"Dispatched\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"displayName\": \"Delivered\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"displayName\": \"Picked up\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"displayName\": \"Received\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"displayName\": \"Data copy in progress\",\r\n \"stageStatus\": \"None\"\r\n },\r\n {\r\n \"stageName\": \"Completed\",\r\n \"displayName\": \"Completed\",\r\n \"stageStatus\": \"None\"\r\n }\r\n ],\r\n \"contactDetails\": {\r\n \"contactName\": \"Public SDK Test\",\r\n \"phone\": \"1234567890\",\r\n \"phoneExtension\": \"1234\",\r\n \"emailList\": [\r\n \"testing@microsoft.com\"\r\n ],\r\n \"notificationPreference\": [\r\n {\r\n \"stageName\": \"DevicePrepared\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Dispatched\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"Delivered\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"PickedUp\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"AtAzureDC\",\r\n \"sendNotification\": true\r\n },\r\n {\r\n \"stageName\": \"DataCopy\",\r\n \"sendNotification\": true\r\n }\r\n ]\r\n },\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deliveryPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"returnPackage\": {\r\n \"carrierName\": \"\",\r\n \"trackingId\": \"\",\r\n \"trackingUrl\": \"\"\r\n },\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/databoxbvt1/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount2\",\r\n \"dataAccountType\": \"StorageAccount\"\r\n }\r\n }\r\n ],\r\n \"jobDetailsType\": \"DataBox\",\r\n \"preferences\": {\r\n \"encryptionPreferences\": {\r\n \"doubleEncryption\": \"Disabled\"\r\n }\r\n },\r\n \"copyLogDetails\": [],\r\n \"reverseShipmentLabelSasKey\": \"https://wusbeta.blob.core.windows.net/customer-reverse-shipment-instructions/CustomerShipmentInstructions_MicrosoftManaged.PDF?sv=2018-03-28&sr=b&sig=%2BNlffAyWfcrb3xG5DzujtdlgzS5wJkwayTXSV3pcQaI%3D&st=2020-11-10T13%3A44%3A39Z&se=2020-11-11T13%3A54%3A39Z&sp=r\",\r\n \"keyEncryptionKey\": {\r\n \"kekType\": \"CustomerManaged\",\r\n \"identityProperties\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssigned\": {\r\n \"resourceId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sdkIdentity\"\r\n }\r\n },\r\n \"kekUrl\": \"https://sdkkeyvault.vault.azure.net/keys/SSDKEY/\",\r\n \"kekVaultResourceID\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.KeyVault/vaults/SDKKeyVault\"\r\n }\r\n },\r\n \"deliveryType\": \"NonScheduled\",\r\n \"deliveryInfo\": {\r\n \"scheduledDateTime\": \"0001-01-01T05:30:00+05:30\"\r\n },\r\n \"isCancellableWithoutFee\": true\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"DataBox\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned,UserAssigned\",\r\n \"principalId\": \"a8cd9b65-7492-463d-a07b-26fbe7bce4a1\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sdkIdentity\": {\r\n \"principalId\": \"5cba71a4-1088-4540-bacf-a7af4426c982\",\r\n \"clientId\": \"9c1eb7d3-ed10-4ef6-8b70-9bc4ddeeeda3\"\r\n }\r\n }\r\n },\r\n \"name\": \"SdkJob6501\",\r\n \"id\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1365/providers/Microsoft.DataBox/jobs/SdkJob6501\",\r\n \"type\": \"Microsoft.DataBox/jobs\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/operationResults/48bde836-ea6b-4e53-92ed-b23358681155?api-version=2018-01-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvblJlc3VsdHMvNDhiZGU4MzYtZWE2Yi00ZTUzLTkyZWQtYjIzMzU4NjgxMTU1P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDE=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29321.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://centraluseuap.management.azure.com/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg1365/providers/Microsoft.DataBox/jobs/SdkJob6501?api-version=2018-01-01"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-request-id": [
+ "83c7f785-0a63-41d5-a983-c810f4c18b60"
+ ],
+ "x-ms-client-request-id": [
+ "5fd35624-b8e1-4ee8-889a-da81310cd960"
+ ],
+ "Server": [
+ "Kestrel"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11973"
+ ],
+ "x-ms-correlation-request-id": [
+ "83c7f785-0a63-41d5-a983-c810f4c18b60"
+ ],
+ "x-ms-routing-request-id": [
+ "CENTRALUSEUAP:20201110T135428Z:83c7f785-0a63-41d5-a983-c810f4c18b60"
+ ],
+ "Date": [
+ "Tue, 10 Nov 2020 13:54:28 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ }
+ ],
+ "Names": {
+ "UpdateSystemAssignedToUserAssigned": [
+ "SdkRg1365",
+ "SdkJob6501"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "fa68082f-8ff7-4a25-95c7-ce9da541242f",
+ "SubId": "fa68082f-8ff7-4a25-95c7-ce9da541242f"
+ }
+}
\ No newline at end of file
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobsActionsTests/TestBookShipmentPickup.json b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobsActionsTests/TestBookShipmentPickup.json
index ce1bc14c65ae2..1fd1ecd091e57 100644
--- a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobsActionsTests/TestBookShipmentPickup.json
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobsActionsTests/TestBookShipmentPickup.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/bvttoolrg6/providers/Microsoft.DataBox/jobs/TJ-636646322037905056/bookShipmentPickUp?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL2J2dHRvb2xyZzYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhQm94L2pvYnMvVEotNjM2NjQ2MzIyMDM3OTA1MDU2L2Jvb2tTaGlwbWVudFBpY2tVcD9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/bvttoolrg6/providers/Microsoft.DataBox/jobs/TJ-636646322037905056/bookShipmentPickUp?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL2J2dHRvb2xyZzYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhQm94L2pvYnMvVEotNjM2NjQ2MzIyMDM3OTA1MDU2L2Jvb2tTaGlwbWVudFBpY2tVcD9hcGktdmVyc2lvbj0yMDIwLTExLTAx",
"RequestMethod": "POST",
- "RequestBody": "{\r\n \"startTime\": \"2020-08-30T18:30:00Z\",\r\n \"endTime\": \"2020-09-01T18:30:00Z\",\r\n \"shipmentLocation\": \"Front desk\"\r\n}",
+ "RequestBody": "{\r\n \"startTime\": \"2020-11-09T18:30:00Z\",\r\n \"endTime\": \"2020-11-11T18:30:00Z\",\r\n \"shipmentLocation\": \"Front desk\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3ad9d9c9-5aca-4586-a29e-f2169ea30062"
+ "985f65cb-71d7-44e5-8402-e5c7167ba912"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -32,32 +32,32 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1196"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "e033a969-770b-42fc-bf6e-d48d9f8f6199"
+ "e14575b8-add2-4d64-997a-304e9b226d05"
],
"x-ms-client-request-id": [
- "3ad9d9c9-5aca-4586-a29e-f2169ea30062"
+ "985f65cb-71d7-44e5-8402-e5c7167ba912"
],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "e033a969-770b-42fc-bf6e-d48d9f8f6199"
+ "e14575b8-add2-4d64-997a-304e9b226d05"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T045519Z:e033a969-770b-42fc-bf6e-d48d9f8f6199"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T132526Z:e14575b8-add2-4d64-997a-304e9b226d05"
],
"Date": [
- "Mon, 31 Aug 2020 04:55:18 GMT"
+ "Tue, 10 Nov 2020 13:25:26 GMT"
],
"Content-Length": [
"243"
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobsActionsTests/TestListCredentials.json b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobsActionsTests/TestListCredentials.json
index 1418730aef01a..982ade00fbf76 100644
--- a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobsActionsTests/TestListCredentials.json
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/JobsActionsTests/TestListCredentials.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/bvttoolrg6/providers/Microsoft.DataBox/jobs/TJ-636646322037905056/listCredentials?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL2J2dHRvb2xyZzYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhQm94L2pvYnMvVEotNjM2NjQ2MzIyMDM3OTA1MDU2L2xpc3RDcmVkZW50aWFscz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/bvttoolrg6/providers/Microsoft.DataBox/jobs/TJ-636646322037905056/listCredentials?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL2J2dHRvb2xyZzYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhQm94L2pvYnMvVEotNjM2NjQ2MzIyMDM3OTA1MDU2L2xpc3RDcmVkZW50aWFscz9hcGktdmVyc2lvbj0yMDIwLTExLTAx",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8dafba46-93a6-4b74-8e89-f77644d2733c"
+ "13710661-4d4c-442d-94bb-f991dd414ba9"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -26,32 +26,32 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1195"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "f31006c5-455f-4a05-82a6-2a0f7963350c"
+ "d975e975-a736-4c8e-b19f-ccef88012394"
],
"x-ms-client-request-id": [
- "8dafba46-93a6-4b74-8e89-f77644d2733c"
+ "13710661-4d4c-442d-94bb-f991dd414ba9"
],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "f31006c5-455f-4a05-82a6-2a0f7963350c"
+ "d975e975-a736-4c8e-b19f-ccef88012394"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T045528Z:f31006c5-455f-4a05-82a6-2a0f7963350c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T132528Z:d975e975-a736-4c8e-b19f-ccef88012394"
],
"Date": [
- "Mon, 31 Aug 2020 04:55:27 GMT"
+ "Tue, 10 Nov 2020 13:25:28 GMT"
],
"Content-Length": [
"2569"
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/OperationsTests/TestOperationsAPI.json b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/OperationsTests/TestOperationsAPI.json
index 650afba551c1d..92de893ecbee1 100644
--- a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/OperationsTests/TestOperationsAPI.json
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/OperationsTests/TestOperationsAPI.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/providers/Microsoft.DataBox/operations?api-version=2020-04-01",
- "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/providers/Microsoft.DataBox/operations?api-version=2020-11-01",
+ "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "f15d7932-5bae-4dc5-bc82-db38505b453a"
+ "e61571e9-e855-47aa-a1bc-1cb03180d7ff"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
]
},
"ResponseHeaders": {
@@ -26,35 +26,35 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-tenant-reads": [
+ "11999"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "2b14865f-971d-4486-ab5f-d44a94c11287"
+ "58263985-68a0-4592-8377-b5cd80d34ba4"
],
"x-ms-client-request-id": [
- "f15d7932-5bae-4dc5-bc82-db38505b453a"
+ "e61571e9-e855-47aa-a1bc-1cb03180d7ff"
],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-tenant-reads": [
- "11999"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "2b14865f-971d-4486-ab5f-d44a94c11287"
+ "58263985-68a0-4592-8377-b5cd80d34ba4"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T045514Z:2b14865f-971d-4486-ab5f-d44a94c11287"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T132516Z:58263985-68a0-4592-8377-b5cd80d34ba4"
],
"Date": [
- "Mon, 31 Aug 2020 04:55:14 GMT"
+ "Tue, 10 Nov 2020 13:25:16 GMT"
],
"Content-Length": [
- "5884"
+ "6383"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -63,7 +63,7 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Microsoft.DataBox/locations/operationResults/read\",\r\n \"display\": {\r\n \"provider\": \"Azure Data Box\",\r\n \"resource\": \"Operation Results\",\r\n \"operation\": \"List Operation Results\",\r\n \"description\": \"List or get the Operation Results\"\r\n },\r\n \"properties\": {},\r\n \"origin\": \"user\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBox/jobs/cancel/action\",\r\n \"display\": {\r\n \"provider\": \"Azure Data Box\",\r\n \"resource\": \"Orders\",\r\n \"operation\": \"Cancel\",\r\n \"description\": \"Cancels an order in progress.\"\r\n },\r\n \"properties\": {},\r\n \"origin\": \"user\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBox/jobs/bookShipmentPickUp/action\",\r\n \"display\": {\r\n \"provider\": \"Azure Data Box\",\r\n \"resource\": \"Orders\",\r\n \"operation\": \"Book Shipment Pick Up\",\r\n \"description\": \"Allows to book a pick up for return shipments.\"\r\n },\r\n \"properties\": {},\r\n \"origin\": \"user\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBox/jobs/read\",\r\n \"display\": {\r\n \"provider\": \"Azure Data Box\",\r\n \"resource\": \"Orders\",\r\n \"operation\": \"List Orders\",\r\n \"description\": \"List or get the Orders\"\r\n },\r\n \"properties\": {},\r\n \"origin\": \"user\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBox/jobs/delete\",\r\n \"display\": {\r\n \"provider\": \"Azure Data Box\",\r\n \"resource\": \"Orders\",\r\n \"operation\": \"Delete Orders\",\r\n \"description\": \"Delete the Orders\"\r\n },\r\n \"properties\": {},\r\n \"origin\": \"user\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBox/jobs/write\",\r\n \"display\": {\r\n \"provider\": \"Azure Data Box\",\r\n \"resource\": \"Orders\",\r\n \"operation\": \"Create or Update Orders\",\r\n \"description\": \"Create or update the Orders\"\r\n },\r\n \"properties\": {},\r\n \"origin\": \"user\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBox/jobs/listCredentials/action\",\r\n \"display\": {\r\n \"provider\": \"Azure Data Box\",\r\n \"resource\": \"Orders\",\r\n \"operation\": \"List Credentials\",\r\n \"description\": \"Lists the unencrypted credentials related to the order.\"\r\n },\r\n \"properties\": {},\r\n \"origin\": \"user\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBox/locations/validateInputs/action\",\r\n \"display\": {\r\n \"provider\": \"Azure Data Box\",\r\n \"resource\": \"Validate Inputs\",\r\n \"operation\": \"Validate Inputs\",\r\n \"description\": \"This method does all type of validations.\"\r\n },\r\n \"properties\": {},\r\n \"origin\": \"user\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBox/locations/validateAddress/action\",\r\n \"display\": {\r\n \"provider\": \"Azure Data Box\",\r\n \"resource\": \"Validate Address\",\r\n \"operation\": \"Validate Address\",\r\n \"description\": \"Validates the shipping address and provides alternate addresses if any.\"\r\n },\r\n \"properties\": {},\r\n \"origin\": \"user\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBox/subscriptions/resourceGroups/moveResources/action\",\r\n \"display\": {\r\n \"provider\": \"Azure Data Box\",\r\n \"resource\": \"Move Resource\",\r\n \"operation\": \"Move Resource\",\r\n \"description\": \"This method performs the resource move.\"\r\n },\r\n \"properties\": {},\r\n \"origin\": \"user\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBox/subscriptions/resourceGroups/validateMoveResources/action\",\r\n \"display\": {\r\n \"provider\": \"Azure Data Box\",\r\n \"resource\": \"Move Resource\",\r\n \"operation\": \"Validate Move Resource Request\",\r\n \"description\": \"This method validates whether resource move is allowed or not.\"\r\n },\r\n \"properties\": {},\r\n \"origin\": \"user\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBox/locations/availableSkus/action\",\r\n \"display\": {\r\n \"provider\": \"Azure Data Box\",\r\n \"resource\": \"Available Skus\",\r\n \"operation\": \"Availabe Skus\",\r\n \"description\": \"This method returns the list of available skus.\"\r\n },\r\n \"properties\": {},\r\n \"origin\": \"user\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBox/locations/regionConfiguration/action\",\r\n \"display\": {\r\n \"provider\": \"Azure Data Box\",\r\n \"resource\": \"Region Configuration\",\r\n \"operation\": \"Region Configuration\",\r\n \"description\": \"This method returns the configurations for the region.\"\r\n },\r\n \"properties\": {},\r\n \"origin\": \"user\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBox/locations/availableSkus/read\",\r\n \"display\": {\r\n \"provider\": \"Azure Data Box\",\r\n \"resource\": \"Available Skus\",\r\n \"operation\": \"List Available Skus\",\r\n \"description\": \"List or get the Available Skus\"\r\n },\r\n \"properties\": {},\r\n \"origin\": \"user\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBox/register/action\",\r\n \"display\": {\r\n \"provider\": \"Azure Data Box\",\r\n \"resource\": \"Register Microsoft.Databox\",\r\n \"operation\": \"Register Microsoft.Databox\",\r\n \"description\": \"Register Provider Microsoft.Databox\"\r\n },\r\n \"properties\": {},\r\n \"origin\": \"user\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBox/unregister/action\",\r\n \"display\": {\r\n \"provider\": \"Azure Data Box\",\r\n \"resource\": \"Register Microsoft.Databox\",\r\n \"operation\": \"Un-Register Microsoft.Databox\",\r\n \"description\": \"Un-Register Provider Microsoft.Databox\"\r\n },\r\n \"properties\": {},\r\n \"origin\": \"user\"\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBox/operations/read\",\r\n \"display\": {\r\n \"provider\": \"Azure Data Box\",\r\n \"resource\": \"Operations\",\r\n \"operation\": \"List Operations\",\r\n \"description\": \"List or get the Operations\"\r\n },\r\n \"properties\": {},\r\n \"origin\": \"user\"\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Microsoft.DataBox/jobs/cancel/action\",\r\n \"display\": {\r\n \"provider\": \"Azure Data Box\",\r\n \"resource\": \"Orders\",\r\n \"operation\": \"Cancel\",\r\n \"description\": \"Cancels an order in progress.\"\r\n },\r\n \"properties\": {},\r\n \"origin\": \"user\",\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBox/jobs/bookShipmentPickUp/action\",\r\n \"display\": {\r\n \"provider\": \"Azure Data Box\",\r\n \"resource\": \"Orders\",\r\n \"operation\": \"Book Shipment Pick Up\",\r\n \"description\": \"Allows to book a pick up for return shipments.\"\r\n },\r\n \"properties\": {},\r\n \"origin\": \"user\",\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBox/jobs/read\",\r\n \"display\": {\r\n \"provider\": \"Azure Data Box\",\r\n \"resource\": \"Orders\",\r\n \"operation\": \"List Orders\",\r\n \"description\": \"List or get the Orders\"\r\n },\r\n \"properties\": {},\r\n \"origin\": \"user\",\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBox/jobs/delete\",\r\n \"display\": {\r\n \"provider\": \"Azure Data Box\",\r\n \"resource\": \"Orders\",\r\n \"operation\": \"Delete Orders\",\r\n \"description\": \"Delete the Orders\"\r\n },\r\n \"properties\": {},\r\n \"origin\": \"user\",\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBox/jobs/write\",\r\n \"display\": {\r\n \"provider\": \"Azure Data Box\",\r\n \"resource\": \"Orders\",\r\n \"operation\": \"Create or Update Orders\",\r\n \"description\": \"Create or update the Orders\"\r\n },\r\n \"properties\": {},\r\n \"origin\": \"user\",\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBox/jobs/listCredentials/action\",\r\n \"display\": {\r\n \"provider\": \"Azure Data Box\",\r\n \"resource\": \"Orders\",\r\n \"operation\": \"List Credentials\",\r\n \"description\": \"Lists the unencrypted credentials related to the order.\"\r\n },\r\n \"properties\": {},\r\n \"origin\": \"user\",\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBox/locations/operationResults/read\",\r\n \"display\": {\r\n \"provider\": \"Azure Data Box\",\r\n \"resource\": \"Operation Results\",\r\n \"operation\": \"List Operation Results\",\r\n \"description\": \"List or get the Operation Results\"\r\n },\r\n \"properties\": {},\r\n \"origin\": \"user\",\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBox/operations/read\",\r\n \"display\": {\r\n \"provider\": \"Azure Data Box\",\r\n \"resource\": \"Operations\",\r\n \"operation\": \"List Operations\",\r\n \"description\": \"List or get the Operations\"\r\n },\r\n \"properties\": {},\r\n \"origin\": \"user\",\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBox/locations/validateInputs/action\",\r\n \"display\": {\r\n \"provider\": \"Azure Data Box\",\r\n \"resource\": \"Validate Inputs\",\r\n \"operation\": \"Validate Inputs\",\r\n \"description\": \"This method does all type of validations.\"\r\n },\r\n \"properties\": {},\r\n \"origin\": \"user\",\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBox/locations/validateAddress/action\",\r\n \"display\": {\r\n \"provider\": \"Azure Data Box\",\r\n \"resource\": \"Validate Address\",\r\n \"operation\": \"Validate Address\",\r\n \"description\": \"Validates the shipping address and provides alternate addresses if any.\"\r\n },\r\n \"properties\": {},\r\n \"origin\": \"user\",\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBox/subscriptions/resourceGroups/moveResources/action\",\r\n \"display\": {\r\n \"provider\": \"Azure Data Box\",\r\n \"resource\": \"Move Resource\",\r\n \"operation\": \"Move Resource\",\r\n \"description\": \"This method performs the resource move.\"\r\n },\r\n \"properties\": {},\r\n \"origin\": \"user\",\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBox/subscriptions/resourceGroups/validateMoveResources/action\",\r\n \"display\": {\r\n \"provider\": \"Azure Data Box\",\r\n \"resource\": \"Move Resource\",\r\n \"operation\": \"Validate Move Resource Request\",\r\n \"description\": \"This method validates whether resource move is allowed or not.\"\r\n },\r\n \"properties\": {},\r\n \"origin\": \"user\",\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBox/locations/availableSkus/action\",\r\n \"display\": {\r\n \"provider\": \"Azure Data Box\",\r\n \"resource\": \"Available Skus\",\r\n \"operation\": \"Availabe Skus\",\r\n \"description\": \"This method returns the list of available skus.\"\r\n },\r\n \"properties\": {},\r\n \"origin\": \"user\",\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBox/locations/regionConfiguration/action\",\r\n \"display\": {\r\n \"provider\": \"Azure Data Box\",\r\n \"resource\": \"Region Configuration\",\r\n \"operation\": \"Region Configuration\",\r\n \"description\": \"This method returns the configurations for the region.\"\r\n },\r\n \"properties\": {},\r\n \"origin\": \"user\",\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBox/locations/availableSkus/read\",\r\n \"display\": {\r\n \"provider\": \"Azure Data Box\",\r\n \"resource\": \"Available Skus\",\r\n \"operation\": \"List Available Skus\",\r\n \"description\": \"List or get the Available Skus\"\r\n },\r\n \"properties\": {},\r\n \"origin\": \"user\",\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBox/register/action\",\r\n \"display\": {\r\n \"provider\": \"Azure Data Box\",\r\n \"resource\": \"Register Microsoft.Databox\",\r\n \"operation\": \"Register Microsoft.Databox\",\r\n \"description\": \"Register Provider Microsoft.Databox\"\r\n },\r\n \"properties\": {},\r\n \"origin\": \"user\",\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.DataBox/unregister/action\",\r\n \"display\": {\r\n \"provider\": \"Azure Data Box\",\r\n \"resource\": \"Register Microsoft.Databox\",\r\n \"operation\": \"Un-Register Microsoft.Databox\",\r\n \"description\": \"Un-Register Provider Microsoft.Databox\"\r\n },\r\n \"properties\": {},\r\n \"origin\": \"user\",\r\n \"isDataAction\": true\r\n }\r\n ]\r\n}",
"StatusCode": 200
}
],
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/ServiceOperationTests/TestAvailableSkus.json b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/ServiceOperationTests/TestAvailableSkus.json
index a221904fd519b..49f79265f016a 100644
--- a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/ServiceOperationTests/TestAvailableSkus.json
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/ServiceOperationTests/TestAvailableSkus.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/bvttoolrg6/providers/Microsoft.DataBox/locations/westus/availableSkus?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL2J2dHRvb2xyZzYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhQm94L2xvY2F0aW9ucy93ZXN0dXMvYXZhaWxhYmxlU2t1cz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/bvttoolrg6/providers/Microsoft.DataBox/locations/westus/availableSkus?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL2J2dHRvb2xyZzYvcHJvdmlkZXJzL01pY3Jvc29mdC5EYXRhQm94L2xvY2F0aW9ucy93ZXN0dXMvYXZhaWxhYmxlU2t1cz9hcGktdmVyc2lvbj0yMDIwLTExLTAx",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"transferType\": \"ImportToAzure\",\r\n \"country\": \"US\",\r\n \"location\": \"westus\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "dae6ec05-368a-4a2b-90ee-2a95fa15b534"
+ "b24918eb-fc7e-4504-8d9a-3c1f2f913161"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -32,32 +32,32 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "42f0ae63-0783-4a53-91cc-8d19d4caed54"
+ "d701e404-7652-4f7d-b0f2-f9fe4764c43b"
],
"x-ms-client-request-id": [
- "dae6ec05-368a-4a2b-90ee-2a95fa15b534"
+ "b24918eb-fc7e-4504-8d9a-3c1f2f913161"
],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "42f0ae63-0783-4a53-91cc-8d19d4caed54"
+ "d701e404-7652-4f7d-b0f2-f9fe4764c43b"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T045543Z:42f0ae63-0783-4a53-91cc-8d19d4caed54"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T132447Z:d701e404-7652-4f7d-b0f2-f9fe4764c43b"
],
"Date": [
- "Mon, 31 Aug 2020 04:55:42 GMT"
+ "Tue, 10 Nov 2020 13:24:47 GMT"
],
"Content-Length": [
"6743"
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/ServiceOperationTests/TestRegionConfiguration.json b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/ServiceOperationTests/TestRegionConfiguration.json
index 6dcda7efe43a1..9a6f2dc2195ff 100644
--- a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/ServiceOperationTests/TestRegionConfiguration.json
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/ServiceOperationTests/TestRegionConfiguration.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/regionConfiguration?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL3JlZ2lvbkNvbmZpZ3VyYXRpb24/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/regionConfiguration?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL3JlZ2lvbkNvbmZpZ3VyYXRpb24/YXBpLXZlcnNpb249MjAyMC0xMS0wMQ==",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"transportAvailabilityRequest\": {\r\n \"skuName\": \"DataBox\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "02bed6a4-deb4-443b-9d76-281b5d4e951d"
+ "bafa0c42-5837-4b0a-84a6-b3c29f4a5af4"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -32,32 +32,32 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "72c88e6d-be6d-4893-8dee-14133c847988"
+ "56b0c448-be68-4fd4-9e76-087a0db10deb"
],
"x-ms-client-request-id": [
- "02bed6a4-deb4-443b-9d76-281b5d4e951d"
+ "bafa0c42-5837-4b0a-84a6-b3c29f4a5af4"
],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "72c88e6d-be6d-4893-8dee-14133c847988"
+ "56b0c448-be68-4fd4-9e76-087a0db10deb"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T045556Z:72c88e6d-be6d-4893-8dee-14133c847988"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T132503Z:56b0c448-be68-4fd4-9e76-087a0db10deb"
],
"Date": [
- "Mon, 31 Aug 2020 04:55:56 GMT"
+ "Tue, 10 Nov 2020 13:25:02 GMT"
],
"Content-Length": [
"217"
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/ServiceOperationTests/TestRegionConfigurationByResourceGroup.json b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/ServiceOperationTests/TestRegionConfigurationByResourceGroup.json
index fbcf902b03f31..98cad1c4ae68c 100644
--- a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/ServiceOperationTests/TestRegionConfigurationByResourceGroup.json
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/ServiceOperationTests/TestRegionConfigurationByResourceGroup.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg9394/providers/Microsoft.DataBox/locations/westus/regionConfiguration?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnOTM5NC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvbG9jYXRpb25zL3dlc3R1cy9yZWdpb25Db25maWd1cmF0aW9uP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg4195/providers/Microsoft.DataBox/locations/westus/regionConfiguration?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnNDE5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvbG9jYXRpb25zL3dlc3R1cy9yZWdpb25Db25maWd1cmF0aW9uP2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"transportAvailabilityRequest\": {\r\n \"skuName\": \"DataBox\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5cb8fe62-6417-4835-befc-d47a9e040b01"
+ "3a19a0b8-6e5c-43cb-bc61-e655efee8df4"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -32,32 +32,32 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "0885a2c0-61f5-4832-ab21-bc79edae59ec"
+ "acc48165-f2e1-43bd-82bb-3c4109cc8088"
],
"x-ms-client-request-id": [
- "5cb8fe62-6417-4835-befc-d47a9e040b01"
+ "3a19a0b8-6e5c-43cb-bc61-e655efee8df4"
],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "0885a2c0-61f5-4832-ab21-bc79edae59ec"
+ "acc48165-f2e1-43bd-82bb-3c4109cc8088"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T045553Z:0885a2c0-61f5-4832-ab21-bc79edae59ec"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T132500Z:acc48165-f2e1-43bd-82bb-3c4109cc8088"
],
"Date": [
- "Mon, 31 Aug 2020 04:55:53 GMT"
+ "Tue, 10 Nov 2020 13:25:00 GMT"
],
"Content-Length": [
"217"
@@ -75,7 +75,7 @@
],
"Names": {
"TestRegionConfigurationByResourceGroup": [
- "SdkRg9394"
+ "SdkRg4195"
]
},
"Variables": {
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/ServiceOperationTests/TestValidateAddress.json b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/ServiceOperationTests/TestValidateAddress.json
index 497e03657c272..8c2968c3f3cee 100644
--- a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/ServiceOperationTests/TestValidateAddress.json
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/ServiceOperationTests/TestValidateAddress.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/validateAddress?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL3ZhbGlkYXRlQWRkcmVzcz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/validateAddress?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL3ZhbGlkYXRlQWRkcmVzcz9hcGktdmVyc2lvbj0yMDIwLTExLTAx",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"validationType\": \"ValidateAddress\",\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deviceType\": \"DataBox\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a7dda3a4-243c-4b2f-af60-f74ae9222fc4"
+ "86336371-407f-49bd-9bfd-df64c14ae33b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -32,32 +32,32 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "c99a5f94-5529-4131-9e22-e032f5969fdc"
+ "d17058c0-bb38-4dcc-9ab5-a05b179a8b8a"
],
"x-ms-client-request-id": [
- "a7dda3a4-243c-4b2f-af60-f74ae9222fc4"
+ "86336371-407f-49bd-9bfd-df64c14ae33b"
],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "c99a5f94-5529-4131-9e22-e032f5969fdc"
+ "d17058c0-bb38-4dcc-9ab5-a05b179a8b8a"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T045540Z:c99a5f94-5529-4131-9e22-e032f5969fdc"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T132444Z:d17058c0-bb38-4dcc-9ab5-a05b179a8b8a"
],
"Date": [
- "Mon, 31 Aug 2020 04:55:40 GMT"
+ "Tue, 10 Nov 2020 13:24:44 GMT"
],
"Content-Length": [
"428"
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/ServiceOperationTests/TestValidateInputs.json b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/ServiceOperationTests/TestValidateInputs.json
index f94b9ec6ba472..e5ea774f90eeb 100644
--- a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/ServiceOperationTests/TestValidateInputs.json
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/ServiceOperationTests/TestValidateInputs.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/validateInputs?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL3ZhbGlkYXRlSW5wdXRzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/validateInputs?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL3ZhbGlkYXRlSW5wdXRzP2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"validationCategory\": \"JobCreationValidation\",\r\n \"individualRequestDetails\": [\r\n {\r\n \"validationType\": \"ValidateDataTransferDetails\",\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\"\r\n }\r\n }\r\n ],\r\n \"deviceType\": \"DataBox\",\r\n \"transferType\": \"ImportToAzure\"\r\n },\r\n {\r\n \"validationType\": \"ValidateAddress\",\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deviceType\": \"DataBox\",\r\n \"transportPreferences\": {\r\n \"preferredShipmentType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n {\r\n \"validationType\": \"ValidateSubscriptionIsAllowedToCreateJob\"\r\n },\r\n {\r\n \"validationType\": \"ValidateSkuAvailability\",\r\n \"deviceType\": \"DataBox\",\r\n \"transferType\": \"ImportToAzure\",\r\n \"country\": \"US\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"validationType\": \"ValidateCreateOrderLimit\",\r\n \"deviceType\": \"DataBox\"\r\n },\r\n {\r\n \"validationType\": \"ValidatePreferences\",\r\n \"preference\": {\r\n \"transportPreferences\": {\r\n \"preferredShipmentType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"deviceType\": \"DataBox\"\r\n }\r\n ]\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "5e9214ed-16d7-4d5f-bd75-5623b6fd43e6"
+ "71a6bb43-fcd3-40db-a8e9-39d1f91e7b16"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -32,32 +32,32 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "e5a638d8-13f7-410f-b89b-690da55f2e51"
+ "de1a778f-a9f2-4c3a-b337-487f248ae8b9"
],
"x-ms-client-request-id": [
- "5e9214ed-16d7-4d5f-bd75-5623b6fd43e6"
+ "71a6bb43-fcd3-40db-a8e9-39d1f91e7b16"
],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "e5a638d8-13f7-410f-b89b-690da55f2e51"
+ "de1a778f-a9f2-4c3a-b337-487f248ae8b9"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T045537Z:e5a638d8-13f7-410f-b89b-690da55f2e51"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T132437Z:de1a778f-a9f2-4c3a-b337-487f248ae8b9"
],
"Date": [
- "Mon, 31 Aug 2020 04:55:36 GMT"
+ "Tue, 10 Nov 2020 13:24:36 GMT"
],
"Content-Length": [
"2065"
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/ServiceOperationTests/TestValidateInputsByResourceGroup.json b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/ServiceOperationTests/TestValidateInputsByResourceGroup.json
index d7fdd20b81977..bfead9e2a87fc 100644
--- a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/ServiceOperationTests/TestValidateInputsByResourceGroup.json
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/ServiceOperationTests/TestValidateInputsByResourceGroup.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg7904/providers/Microsoft.DataBox/locations/westus/validateInputs?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnNzkwNC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvbG9jYXRpb25zL3dlc3R1cy92YWxpZGF0ZUlucHV0cz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg8910/providers/Microsoft.DataBox/locations/westus/validateInputs?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnODkxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvbG9jYXRpb25zL3dlc3R1cy92YWxpZGF0ZUlucHV0cz9hcGktdmVyc2lvbj0yMDIwLTExLTAx",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"validationCategory\": \"JobCreationValidation\",\r\n \"individualRequestDetails\": [\r\n {\r\n \"validationType\": \"ValidateDataTransferDetails\",\r\n \"dataImportDetails\": [\r\n {\r\n \"accountDetails\": {\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourcegroups/databoxbvt/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount\"\r\n }\r\n }\r\n ],\r\n \"deviceType\": \"DataBox\",\r\n \"transferType\": \"ImportToAzure\"\r\n },\r\n {\r\n \"validationType\": \"ValidateAddress\",\r\n \"shippingAddress\": {\r\n \"streetAddress1\": \"16 TOWNSEND ST\",\r\n \"streetAddress2\": \"Unit 1\",\r\n \"city\": \"San Francisco\",\r\n \"stateOrProvince\": \"CA\",\r\n \"country\": \"US\",\r\n \"postalCode\": \"94107\",\r\n \"companyName\": \"Microsoft\",\r\n \"addressType\": \"Commercial\"\r\n },\r\n \"deviceType\": \"DataBox\",\r\n \"transportPreferences\": {\r\n \"preferredShipmentType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n {\r\n \"validationType\": \"ValidateSubscriptionIsAllowedToCreateJob\"\r\n },\r\n {\r\n \"validationType\": \"ValidateSkuAvailability\",\r\n \"deviceType\": \"DataBox\",\r\n \"transferType\": \"ImportToAzure\",\r\n \"country\": \"US\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"validationType\": \"ValidateCreateOrderLimit\",\r\n \"deviceType\": \"DataBox\"\r\n },\r\n {\r\n \"validationType\": \"ValidatePreferences\",\r\n \"preference\": {\r\n \"transportPreferences\": {\r\n \"preferredShipmentType\": \"MicrosoftManaged\"\r\n }\r\n },\r\n \"deviceType\": \"DataBox\"\r\n }\r\n ]\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d5d9c7ec-7dc8-4e1e-9364-3cb24cc0822f"
+ "2ed17fb4-31f7-4e48-8189-1fbae62c116b"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -32,32 +32,32 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "48316698-3f86-4305-a9f3-4968a7ca5d60"
+ "dfcf9a3a-3208-45b8-90f2-8a92b8039fb8"
],
"x-ms-client-request-id": [
- "d5d9c7ec-7dc8-4e1e-9364-3cb24cc0822f"
+ "2ed17fb4-31f7-4e48-8189-1fbae62c116b"
],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "48316698-3f86-4305-a9f3-4968a7ca5d60"
+ "dfcf9a3a-3208-45b8-90f2-8a92b8039fb8"
],
"x-ms-routing-request-id": [
- "SOUTHINDIA:20200831T045602Z:48316698-3f86-4305-a9f3-4968a7ca5d60"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T132507Z:dfcf9a3a-3208-45b8-90f2-8a92b8039fb8"
],
"Date": [
- "Mon, 31 Aug 2020 04:56:01 GMT"
+ "Tue, 10 Nov 2020 13:25:07 GMT"
],
"Content-Length": [
"2065"
@@ -75,7 +75,7 @@
],
"Names": {
"TestValidateInputsByResourceGroup": [
- "SdkRg7904"
+ "SdkRg8910"
]
},
"Variables": {
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/ServiceOperationTests/TestValidateInputsSpecificToExport.json b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/ServiceOperationTests/TestValidateInputsSpecificToExport.json
index 2f86bf4144d06..899ca3cccea85 100644
--- a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/ServiceOperationTests/TestValidateInputsSpecificToExport.json
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/ServiceOperationTests/TestValidateInputsSpecificToExport.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/validateInputs?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL3ZhbGlkYXRlSW5wdXRzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/providers/Microsoft.DataBox/locations/westus/validateInputs?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL3ZhbGlkYXRlSW5wdXRzP2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"validationCategory\": \"JobCreationValidation\",\r\n \"individualRequestDetails\": [\r\n {\r\n \"validationType\": \"ValidateDataTransferDetails\",\r\n \"dataExportDetails\": [\r\n {\r\n \"transferConfiguration\": {\r\n \"transferConfigurationType\": \"TransferAll\",\r\n \"transferAllDetails\": {\r\n \"include\": {\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"transferAllBlobs\": true,\r\n \"transferAllFiles\": true\r\n }\r\n }\r\n },\r\n \"accountDetails\": {\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.Storage/storageAccounts/aaaaaa2\"\r\n }\r\n }\r\n ],\r\n \"deviceType\": \"DataBox\",\r\n \"transferType\": \"ExportFromAzure\"\r\n },\r\n {\r\n \"validationType\": \"ValidateSkuAvailability\",\r\n \"deviceType\": \"DataBox\",\r\n \"transferType\": \"ExportFromAzure\",\r\n \"country\": \"US\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e1d22a0e-0348-4687-9771-aac7463e9466"
+ "42234cc6-bc4e-4372-b897-1e417bc07d07"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -32,32 +32,32 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "33ae996a-431d-4158-be88-baa4e85ee771"
+ "659757c5-0142-42b3-baa6-32f75ba85e00"
],
"x-ms-client-request-id": [
- "e1d22a0e-0348-4687-9771-aac7463e9466"
+ "42234cc6-bc4e-4372-b897-1e417bc07d07"
],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "33ae996a-431d-4158-be88-baa4e85ee771"
+ "659757c5-0142-42b3-baa6-32f75ba85e00"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T045549Z:33ae996a-431d-4158-be88-baa4e85ee771"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T132450Z:659757c5-0142-42b3-baa6-32f75ba85e00"
],
"Date": [
- "Mon, 31 Aug 2020 04:55:48 GMT"
+ "Tue, 10 Nov 2020 13:24:50 GMT"
],
"Content-Length": [
"632"
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/ServiceOperationTests/TestValidateInputsSpecificToExportByResourceGroup.json b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/ServiceOperationTests/TestValidateInputsSpecificToExportByResourceGroup.json
index 1e6c5cdb94f50..2a16336d8b816 100644
--- a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/ServiceOperationTests/TestValidateInputsSpecificToExportByResourceGroup.json
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/SessionRecords/ServiceOperationTests/TestValidateInputsSpecificToExportByResourceGroup.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg6076/providers/Microsoft.DataBox/locations/westus/validateInputs?api-version=2020-04-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnNjA3Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkRhdGFCb3gvbG9jYXRpb25zL3dlc3R1cy92YWxpZGF0ZUlucHV0cz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx",
+ "RequestUri": "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/SdkRg257/providers/Microsoft.DataBox/locations/westus/validateInputs?api-version=2020-11-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZmE2ODA4MmYtOGZmNy00YTI1LTk1YzctY2U5ZGE1NDEyNDJmL3Jlc291cmNlR3JvdXBzL1Nka1JnMjU3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRGF0YUJveC9sb2NhdGlvbnMvd2VzdHVzL3ZhbGlkYXRlSW5wdXRzP2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"validationCategory\": \"JobCreationValidation\",\r\n \"individualRequestDetails\": [\r\n {\r\n \"validationType\": \"ValidateDataTransferDetails\",\r\n \"dataExportDetails\": [\r\n {\r\n \"transferConfiguration\": {\r\n \"transferConfigurationType\": \"TransferAll\",\r\n \"transferAllDetails\": {\r\n \"include\": {\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"transferAllBlobs\": true,\r\n \"transferAllFiles\": true\r\n }\r\n }\r\n },\r\n \"accountDetails\": {\r\n \"dataAccountType\": \"StorageAccount\",\r\n \"storageAccountId\": \"/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.Storage/storageAccounts/aaaaaa2\"\r\n }\r\n }\r\n ],\r\n \"deviceType\": \"DataBox\",\r\n \"transferType\": \"ExportFromAzure\"\r\n },\r\n {\r\n \"validationType\": \"ValidateSkuAvailability\",\r\n \"deviceType\": \"DataBox\",\r\n \"transferType\": \"ExportFromAzure\",\r\n \"country\": \"US\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "10224cda-25b8-4bb3-9fa3-c17221bba47d"
+ "cf698a5f-df82-4bd4-ac9f-f49745befc97"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.29130.01",
+ "FxVersion/4.6.29321.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.19041.",
- "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.1.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.DataBox.DataBoxManagementClient/1.2.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -32,32 +32,32 @@
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"X-Content-Type-Options": [
"nosniff"
],
"x-ms-request-id": [
- "d95db945-bf01-46bd-884c-c161234b6cdb"
+ "25d60c17-885f-40ca-9481-898ed0fa411a"
],
"x-ms-client-request-id": [
- "10224cda-25b8-4bb3-9fa3-c17221bba47d"
+ "cf698a5f-df82-4bd4-ac9f-f49745befc97"
],
- "X-Powered-By": [
- "ASP.NET"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "Server": [
+ "Kestrel"
],
"x-ms-correlation-request-id": [
- "d95db945-bf01-46bd-884c-c161234b6cdb"
+ "25d60c17-885f-40ca-9481-898ed0fa411a"
],
"x-ms-routing-request-id": [
- "CENTRALINDIA:20200831T045552Z:d95db945-bf01-46bd-884c-c161234b6cdb"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "CENTRALUSEUAP:20201110T132454Z:25d60c17-885f-40ca-9481-898ed0fa411a"
],
"Date": [
- "Mon, 31 Aug 2020 04:55:51 GMT"
+ "Tue, 10 Nov 2020 13:24:54 GMT"
],
"Content-Length": [
"632"
@@ -75,7 +75,7 @@
],
"Names": {
"TestValidateInputsSpecificToExportByResourceGroup": [
- "SdkRg6076"
+ "SdkRg257"
]
},
"Variables": {
diff --git a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/Tests/JobCRUDTests.cs b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/Tests/JobCRUDTests.cs
index 055745dd28c91..d8f745f621638 100644
--- a/sdk/databox/Microsoft.Azure.Management.DataBox/tests/Tests/JobCRUDTests.cs
+++ b/sdk/databox/Microsoft.Azure.Management.DataBox/tests/Tests/JobCRUDTests.cs
@@ -6,6 +6,7 @@
using Microsoft.Rest.ClientRuntime.Azure.TestFramework;
using System;
using System.Collections.Generic;
+using System.Globalization;
using System.Linq;
using Xunit;
using Xunit.Abstractions;
@@ -415,6 +416,282 @@ public void CmkEnablementTest()
Assert.Equal(StageName.DeviceOrdered, updateJob.Status);
Assert.Equal(KekType.CustomerManaged, getJob.Details.KeyEncryptionKey.KekType);
}
+
+ [Fact]
+ public void DoubleEncryptionTest()
+ {
+ var resourceGroupName = TestUtilities.GenerateName("SdkRg");
+ var jobName = TestUtilities.GenerateName("SdkJob");
+ ContactDetails contactDetails = GetDefaultContactDetails();
+ ShippingAddress shippingAddress = GetDefaultShippingAddress();
+ Preferences preferences = new Preferences
+ {
+ EncryptionPreferences = new EncryptionPreferences
+ {
+ DoubleEncryption = DoubleEncryption.Enabled
+ }
+ };
+ Sku sku = GetDefaultSku();
+ var destinationAccountsList = GetDestinationAccountsList();
+ JobDetails jobDetails = new DataBoxJobDetails
+ {
+ ContactDetails = contactDetails,
+ ShippingAddress = shippingAddress,
+ Preferences=preferences
+ };
+ jobDetails.DataImportDetails = new List();
+ jobDetails.DataImportDetails.Add(new DataImportDetails(destinationAccountsList.FirstOrDefault()));
+
+ var jobResource = new JobResource
+ {
+ Sku = sku,
+ Location = TestConstants.DefaultResourceLocation,
+ Details = jobDetails
+ };
+
+
+ this.RMClient.ResourceGroups.CreateOrUpdate(
+ resourceGroupName,
+ new ResourceGroup
+ {
+ Location = TestConstants.DefaultResourceLocation
+ });
+
+ var job = this.Client.Jobs.Create(resourceGroupName, jobName, jobResource);
+ ValidateJobWithoutDetails(jobName, sku, job);
+ Assert.Equal(StageName.DeviceOrdered, job.Status);
+
+ var getJob = this.Client.Jobs.Get(resourceGroupName, jobName, TestConstants.Details);
+ ValidateJobWithoutDetails(jobName, sku, getJob);
+ ValidateJobDetails(contactDetails, shippingAddress, getJob, JobDeliveryType.NonScheduled);
+ Assert.Equal(StageName.DeviceOrdered, job.Status);
+ Assert.Equal(DoubleEncryption.Enabled, getJob.Details.Preferences.EncryptionPreferences.DoubleEncryption);
+
+ contactDetails.ContactName = "Update Job";
+ getJob.Details.ContactDetails = contactDetails;
+
+ var Details = new UpdateJobDetails
+ {
+ ContactDetails = getJob.Details.ContactDetails,
+ ShippingAddress = getJob.Details.ShippingAddress
+ };
+
+ var updateParams = new JobResourceUpdateParameter
+ {
+ Details = Details
+ };
+ var updateJob = this.Client.Jobs.Update(resourceGroupName, jobName, updateParams);
+ ValidateJobWithoutDetails(jobName, sku, updateJob);
+ Assert.Equal(StageName.DeviceOrdered, updateJob.Status);
+
+ getJob = this.Client.Jobs.Get(resourceGroupName, jobName, TestConstants.Details);
+ ValidateJobWithoutDetails(jobName, sku, getJob);
+ ValidateJobDetails(contactDetails, shippingAddress, getJob, JobDeliveryType.NonScheduled);
+ Assert.Equal(StageName.DeviceOrdered, getJob.Status);
+
+ var jobList = this.Client.Jobs.List();
+ Assert.NotNull(jobList);
+
+ jobList = this.Client.Jobs.ListByResourceGroup(resourceGroupName);
+ Assert.NotNull(jobList);
+
+ this.Client.Jobs.Cancel(resourceGroupName, jobName, "CancelTest");
+ getJob = this.Client.Jobs.Get(resourceGroupName, jobName, TestConstants.Details);
+ Assert.Equal(StageName.Cancelled, getJob.Status);
+
+ while (!string.IsNullOrWhiteSpace(getJob.Details.ContactDetails.ContactName))
+ {
+ Wait(TimeSpan.FromMinutes(5));
+ getJob = this.Client.Jobs.Get(resourceGroupName, jobName, TestConstants.Details);
+ }
+ this.Client.Jobs.Delete(resourceGroupName, jobName);
+ }
+
+ [Fact]
+ public void CreateJobWithUserAssignedIdentity()
+ {
+ var resourceGroupName = TestUtilities.GenerateName("SdkRg");
+ var jobName = TestUtilities.GenerateName("SdkJob");
+ //var jobName = "SdkJob5929";
+ ContactDetails contactDetails = GetDefaultContactDetails();
+ ShippingAddress shippingAddress = GetDefaultShippingAddress();
+ Sku sku = GetDefaultSku();
+ var destinationAccountsList = new List
+ {
+ new StorageAccountDetails
+ {
+ StorageAccountId = "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/databoxbvt1/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount2"
+ }
+ };
+
+ var uaiId = "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sdkIdentity";
+ var kekDetails = new KeyEncryptionKey(KekType.CustomerManaged)
+ {
+ KekType = KekType.CustomerManaged,
+ KekUrl = @"https://sdkkeyvault.vault.azure.net/keys/SSDKEY/",
+ KekVaultResourceID =
+ "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.KeyVault/vaults/SDKKeyVault",
+ IdentityProperties = new IdentityProperties
+ {
+ Type = "UserAssigned",
+ UserAssigned = new UserAssignedProperties { ResourceId = uaiId }
+ }
+ };
+ JobDetails jobDetails = new DataBoxJobDetails(contactDetails,
+ default(IList),shippingAddress, default(PackageShippingDetails),
+ default(PackageShippingDetails), default(IList),
+ default(IList),default(Preferences),
+ default(IList),default(string),default(string),
+ kekDetails);
+
+ jobDetails.DataImportDetails = new List();
+ jobDetails.DataImportDetails.Add(new DataImportDetails(destinationAccountsList.FirstOrDefault()));
+
+ var jobResource = new JobResource
+ {
+ Sku = sku,
+ Location = TestConstants.DefaultResourceLocation,
+ Details = jobDetails,
+ };
+
+
+ UserAssignedIdentity uid = new UserAssignedIdentity();
+ var identity = new ResourceIdentity//ResourceIdentity checked by auto mapper
+ {
+ Type = "UserAssigned",
+ UserAssignedIdentities = new Dictionary
+ {
+ { uaiId, uid }
+ },
+ };
+
+ jobResource.Identity = identity;
+
+ this.RMClient.ResourceGroups.CreateOrUpdate(
+ resourceGroupName,
+ new ResourceGroup
+ {
+ Location = TestConstants.DefaultResourceLocation
+ });
+
+ var job = this.Client.Jobs.Create(resourceGroupName, jobName, jobResource);
+ ValidateJobWithoutDetails(jobName, sku, job);
+ Assert.Equal(StageName.DeviceOrdered, job.Status);
+ String iden ="UserAssigned";
+ Assert.Equal(iden, job.Identity.Type);
+ var getJob = this.Client.Jobs.Get(resourceGroupName, jobName, TestConstants.Details);
+ ValidateJobWithoutDetails(jobName, sku, getJob);
+ ValidateJobDetails(contactDetails, shippingAddress, getJob, JobDeliveryType.NonScheduled);
+ Assert.Equal(StageName.DeviceOrdered, getJob.Status);
+ Assert.True(!string.IsNullOrEmpty(getJob.Identity.UserAssignedIdentities[uaiId].ClientId));
+ Assert.True(!string.IsNullOrEmpty(getJob.Identity.UserAssignedIdentities[uaiId].PrincipalId));
+
+ }
+
+ [Fact]
+ public void UpdateSystemAssignedToUserAssigned()
+ {
+ var resourceGroupName = TestUtilities.GenerateName("SdkRg");
+ var jobName = TestUtilities.GenerateName("SdkJob");
+ //var jobName = "SdkJob5929";
+ ContactDetails contactDetails = GetDefaultContactDetails();
+ ShippingAddress shippingAddress = GetDefaultShippingAddress();
+ Sku sku = GetDefaultSku();
+ var destinationAccountsList = new List
+ {
+ new StorageAccountDetails
+ {
+ StorageAccountId = "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/databoxbvt1/providers/Microsoft.Storage/storageAccounts/databoxbvttestaccount2"
+ }
+ };
+ JobDetails jobDetails = new DataBoxJobDetails
+ {
+ ContactDetails = contactDetails,
+ ShippingAddress = shippingAddress
+ };
+ jobDetails.DataImportDetails = new List();
+ jobDetails.DataImportDetails.Add(new DataImportDetails(destinationAccountsList.FirstOrDefault()));
+
+ var jobResource = new JobResource
+ {
+ Sku = sku,
+ Location = TestConstants.DefaultResourceLocation,
+ Details = jobDetails,
+ };
+
+ this.RMClient.ResourceGroups.CreateOrUpdate(
+ resourceGroupName,
+ new ResourceGroup
+ {
+ Location = TestConstants.DefaultResourceLocation
+ });
+
+ var job = this.Client.Jobs.Create(resourceGroupName, jobName, jobResource);
+ ValidateJobWithoutDetails(jobName, sku, job);
+ Assert.Equal(StageName.DeviceOrdered, job.Status);
+
+ // Set Msi details.
+ string tenantId = "72f988bf-86f1-41af-91ab-2d7cd011db47";
+ string identityType = "SystemAssigned";
+ var identity = new ResourceIdentity(identityType, Guid.NewGuid().ToString(), tenantId);
+ var updateParams = new JobResourceUpdateParameter
+ {
+ Identity = identity
+ };
+
+ var updateJob = this.Client.Jobs.Update(resourceGroupName, jobName, updateParams);
+ ValidateJobWithoutDetails(jobName, sku, updateJob);
+
+ var getJob = this.Client.Jobs.Get(resourceGroupName, jobName, TestConstants.Details);
+ ValidateJobWithoutDetails(jobName, sku, job);
+ ValidateJobDetails(contactDetails, shippingAddress, getJob, JobDeliveryType.NonScheduled);
+
+ Assert.Equal(StageName.DeviceOrdered, updateJob.Status);
+ Assert.Equal(identityType, updateJob.Identity.Type);
+
+ //Updating to User Assigned
+ var uaiId = "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sdkIdentity";
+ var keyEncryptionKey = new KeyEncryptionKey(KekType.CustomerManaged)
+ {
+ KekUrl = @"https://sdkkeyvault.vault.azure.net/keys/SSDKEY/",
+ KekVaultResourceID =
+ "/subscriptions/fa68082f-8ff7-4a25-95c7-ce9da541242f/resourceGroups/akvenkat/providers/Microsoft.KeyVault/vaults/SDKKeyVault",
+ IdentityProperties = new IdentityProperties
+ {
+ Type = "UserAssigned",
+ UserAssigned = new UserAssignedProperties { ResourceId = uaiId }
+ }
+ };
+
+ UserAssignedIdentity uid = new UserAssignedIdentity();
+ identity = new ResourceIdentity//ResourceIdentity checked by auto mapper
+ {
+ Type = "SystemAssigned,UserAssigned",
+ UserAssignedIdentities = new Dictionary
+ {
+ { uaiId, uid }
+ },
+ };
+
+ var details = new UpdateJobDetails
+ {
+ KeyEncryptionKey = keyEncryptionKey
+ };
+
+ updateParams = new JobResourceUpdateParameter
+ {
+ Details = details,
+ Identity = identity
+ };
+
+ updateJob = this.Client.Jobs.Update(resourceGroupName, jobName, updateParams);
+ ValidateJobWithoutDetails(jobName, sku, updateJob);
+ getJob = this.Client.Jobs.Get(resourceGroupName, jobName, TestConstants.Details);
+ ValidateJobDetails(contactDetails, shippingAddress, getJob, JobDeliveryType.NonScheduled);
+ Assert.Equal(StageName.DeviceOrdered, getJob.Status);
+ Assert.True(!string.IsNullOrEmpty(getJob.Identity.UserAssignedIdentities[uaiId].ClientId));
+ Assert.True(!string.IsNullOrEmpty(getJob.Identity.UserAssignedIdentities[uaiId].PrincipalId));
+ }
}
}